<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: background color of the header</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on background color of the header</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10176</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10176</guid>
        	        	<description><![CDATA[<p>Mark,</p>
<p>Thanks. I see this. Will be fixed.</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sat, 26 Sep 2009 00:53:56 +0300</pubDate>
        </item>
        <item>
        	<title>markw65 on background color of the header</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10152</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10152</guid>
        	        	<description><![CDATA[<p>Tony</p>
</p>
<p>Just a note - setLabel has a bug: If you change the column label, it blows away the content of the div which includes the sort icons.</p>
</p>
<p>Mark</p>
]]></description>
        	        	<pubDate>Fri, 25 Sep 2009 09:07:10 +0300</pubDate>
        </item>
        <item>
        	<title>tony on background color of the header</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10136</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10136</guid>
        	        	<description><![CDATA[<p>Use setLabel method</p>
]]></description>
        	        	<pubDate>Fri, 25 Sep 2009 05:09:53 +0300</pubDate>
        </item>
        <item>
        	<title>kfoerste on background color of the header</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10056</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/background-color-of-the-header#p10056</guid>
        	        	<description><![CDATA[<p>Hi all,</p>
</p>
<p>How can I set the background color of the header in the following code?</p>
</p>
<p>Thanks in advance.</p>
<p>best regards</p>
<p>K.</p>
</p>
<p>&#60;script type="text/javascript"&#62;</p>
<p>...</p>
<p>jQuery(document).ready(function(){ <br />&#160;&#160;&#160; var colWidth = calcWidth("#travel",new Array(55, 80, 300, 150, 100, 150, 150), new Array(true, true, false, true, true, true, true));&#160;&#160;&#160; <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; jQuery("#travel").jqGrid({ <br />&#160;&#160;&#160; &#160;&#160;&#160; url:&#39;&#60;%=request.getContextPath()%&#62;/GetWorklistTravelServlet?sapUserId=&#60;%=UserUtil.getSAPUserId(renderRequest, renderResponse,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; portletConfig.getPortletContext())%&#62;&#38;sapSSOTicket=&#60;%=SAPConnectionManager.getSSOTicket(renderRequest)%&#62;&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; datatype: "json", <br />&#160;&#160;&#160; &#160;&#160;&#160; height: "100%",<br />&#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;Type&#39;, &#39;No.&#39;, &#39;Description&#39;, &#39;Reason&#39;, &#39;Created on&#39;, &#39;Status&#39;, &#39;Substitute&#39;], <br />&#160;&#160;&#160; &#160;&#160;&#160; colModel:[ <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;type&#39;,index:&#39;type&#39;, align:"center", sorttype:"string", width:colWidth[0]},<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;itemNo&#39;,index:&#39;itemNo&#39;, sorttype:"string", width:colWidth[1]},<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;description&#39;,index:&#39;description&#39;, sortable:false, width:colWidth[2], formatter:travelFormatter},<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;reason&#39;,index:&#39;reason&#39;, sortable:false, width:colWidth[3]}, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;creationDate&#39;,index:&#39;creationDate&#39;, sorttype:"date", formatter:&#39;date&#39;, formatoptions:{srcformat: &#39;Y-m-d&#39;, newformat: &#39;M d, Y&#39;}, width:colWidth[4]}, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;status&#39;,index:&#39;status&#39;, sortable:false, width:colWidth[5]}, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;substitute&#39;,index:&#39;substitute&#39;, sorttype:"string", width:colWidth[6]} ],<br />&#160;&#160;&#160; &#160;&#160;&#160; width: 1100,<br />&#160;&#160;&#160; &#160;&#160;&#160; viewsortcols: [true,&#39;vertical&#39;,true],<br />&#160;&#160;&#160; &#160;&#160;&#160; autowidth: true, <br />&#160;&#160;&#160; &#160;&#160;&#160; forceFit: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; shrinkToFit: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; rowNum: 10,<br />&#160;&#160;&#160; &#160;&#160;&#160; loadComplete: function(id){ <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; if (removeReturnFromDetailMessage) {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery(&#39;#returnFromDetailMessage&#39;).hide();<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; } else {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; removeReturnFromDetailMessage = true;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160; &#160;&#160;&#160; },<br />&#160;&#160;&#160; &#160;&#160;&#160; altRows: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; pager: &#39;#travel_pager&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; hoverrows: false<br />&#160;&#160;&#160; });<br />&#160;&#160;&#160; jQuery("#travel").navGrid(&#39;#travel_pager&#39;,{edit:false,add:false,del:false,search:false,refresh:true,refreshtext:"Refresh"});</p>
<p>});<br />&#60;/script&#62;</p>
]]></description>
        	        	<pubDate>Wed, 23 Sep 2009 16:07:48 +0300</pubDate>
        </item>
</channel>
</rss>