<?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: How to make the entire row bold?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold</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/how-to-make-the-entire-row-bold/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>phamtranquocviet on How to make the entire row bold?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16720</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16720</guid>
        	        	<description><![CDATA[<p>Tony,</p>
<p>That worked like a charm. Thanks for always finding time to reply. I really appreciate it. I think that has a lot to do with the success of the grid. Thanks again.</p>
]]></description>
        	        	<pubDate>Mon, 26 Apr 2010 18:44:21 +0300</pubDate>
        </item>
        <item>
        	<title>tony on How to make the entire row bold?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16660</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16660</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Sorry, forgot some things related to jQuery UI. In order to work this do the following:</p>
<p>1. Define in the style section the following:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2204' value='Select Code' data-codeid='sfcode2204' /></p>
<div class='sfcode' id='sfcode2204'>
<p>&#60;style&#62;</p>
<p>.mybold td {font-weight : bold !important}</p>
<p>&#60;/style&#62;</p>
</div>
<p>Note the word important</p>
<p>Then in order to work this call setRowData this way:</p>
<p>$(this).jqGrid(&#39;setRowData&#39;, rowId, false, &#39;mybold&#39;);</p>
</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 26 Apr 2010 11:58:59 +0300</pubDate>
        </item>
        <item>
        	<title>phamtranquocviet on How to make the entire row bold?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16542</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16542</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>$(this).jqGrid(&#39;setRowData&#39;, rowId, false, {&#39;font-weight&#39;:&#39;bold&#39;});</p>
<p>still does not make the entire row bold.</p>
<p>Thanks for your reply.</p>
]]></description>
        	        	<pubDate>Mon, 19 Apr 2010 18:25:46 +0300</pubDate>
        </item>
        <item>
        	<title>tony on How to make the entire row bold?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16527</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16527</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>It will not work. Try this</p>
</p>
<p>$(this).jqGrid(&#39;setRowData&#39;, rowId, false, {&#39;font-weight&#39;:&#39;bold&#39;});</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 19 Apr 2010 13:42:27 +0300</pubDate>
        </item>
        <item>
        	<title>phamtranquocviet on How to make the entire row bold?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16483</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-make-the-entire-row-bold#p16483</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>This codes does not make the entire row bold? What am I missing? Thanks.</p>
<p>$(&#39;#communication&#39;).jqGrid</p>
<p>{</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ....</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; afterInsertRow: function(rowId, aData)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {&#160; &#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(aData.Status == &#39;Unread&#39;)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(this).jqGrid(&#39;setRowData&#39;, rowId, false, &#39;font-weight:bold&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [...]</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [...]</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ...</p>
<p>}</p>
]]></description>
        	        	<pubDate>Fri, 16 Apr 2010 21:50:36 +0300</pubDate>
        </item>
</channel>
</rss>