<?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 - Forum: Feature Request</title>
	<link>http://www.trirand.com/blog/?page_id=393/feature-request</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/feature-request/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>admin on jqGrid Forum is moved</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-forum-is-moved#p31463</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-forum-is-moved#p31463</guid>
        	        	<description><![CDATA[<p>Hello All,</p>
<p>Â </p>
<p>We have a lot of changes inside Trirand. You may need to read this <a href="http://www.trirand.com/blog/?p=1438" target="_blank">post</a></p>
<p>The forum is moved to another place.. All the existing users and forum posts are moved successfully in our new side <a href="http://guriddo.net/?page_id=4" target="_blank">guriddo.net </a></p>
<p>In the future, please post your questions and problems in the new place.</p>
<p>The existing forum will stay and willÂ  be in read-only mode.</p>
<p>Â </p>
<p>Kind Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 15 Dec 2014 15:42:40 +0200</pubDate>
        </item>
        <item>
        	<title>krisreddy on Responsive tables</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/responsive-tables#p31456</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/responsive-tables#p31456</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>Is it possible to make jqgrid responsive like flip scroll in the demo below</p>
<p><a href="http://dbushell.com/demos/tables/rt_05-01-12.html" rel="nofollow" target="_blank"><a href="http://dbushell.com/demos/tabl" rel="nofollow">http://dbushell.com/demos/tabl</a>.....01-12.html</a></p>
<p>Love jqgrid. Thanks for all the effort!</p>
<p>Kris</p>
]]></description>
        	        	<pubDate>Fri, 12 Dec 2014 20:32:07 +0200</pubDate>
        </item>
        <item>
        	<title>George on Ignore case for search form</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/ignore-case-for-search-form#p31404</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/ignore-case-for-search-form#p31404</guid>
        	        	<description><![CDATA[<p>Can you add ignoreCase for search form?<br />
And is there a way to set default search rule to "Contains" in search form?</p>
]]></description>
        	        	<pubDate>Mon, 24 Nov 2014 14:39:43 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on allow to use strings as values of cellattr and rowattr</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/allow-to-use-strings-as-values-of-cellattr-and-rowattr#p31359</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/allow-to-use-strings-as-values-of-cellattr-and-rowattr#p31359</guid>
        	        	<description><![CDATA[<p>Hello Tony,</p>
<p>I suggest to allow to use string values forÂ <strong>cellattr</strong> andÂ <strong>rowattr</strong> in the same way like one can now to use strings as the value for <strong>template</strong> (see <a href="https://github.com/tonytomov/jqGrid/pull/631" target="_blank">the pull request</a>):</p>
<div class="sfcode">
<pre class="brush-javascript syntax">$.extend($.jgrid,{
    cellattr: {
        someCellAttrValue: function (rowId, val, rawObject) {
            ...
        }
    },
    rowattr: {
        someRowAttrValue: function (rd) {
            ...
        }
    }
});</pre></div><p>The corresponding changes in jqGrid code are very easy. To allow the usage string values forÂ <strong>cellattr</strong>Â one need to change <a href="https://github.com/tonytomov/jqGrid/blob/v4.6.0/js/grid.base.js#L1086" target="_blank">the line</a></p>
<div class="sfcode">
<pre class="brush-javascript syntax">var cm = ts.p.colModel[pos],</pre></div><p>to</p>
<div class="sfcode">
<pre class="brush-javascript syntax">var cm = ts.p.colModel[pos], cellAttrFunc,</pre></div><p>and <a href="https://github.com/tonytomov/jqGrid/blob/v4.6.0/js/grid.base.js#L1092-L1094" target="_blank">the lines</a></p>
<div class="sfcode">
<pre class="brush-javascript syntax">} <span class="k">else</span> <span class="k">if</span> (cm.cellattr <span class="o">&#38;&#38;</span> $.isFunction(cm.cellattr))
{
    celp <span class="o">=</span> cm.cellattr.<span class="nf">call</span>(ts, rowId, tv, rawObject, cm, rdata);</pre></div><p>to the following</p>
<div class="sfcode">
<pre class="brush-javascript syntax">} else if ($.isFunction(cm.cellattr) &#124;&#124; (typeof cm.cellattr === "string" &#38;&#38; $.jgrid.cellattr != null &#38;&#38; $.isFunction($.jgrid.cellattr[cm.cellattr]))) {
    cellAttrFunc = $.isFunction(cm.cellattr) ? cm.cellattr : $.jgrid.cellattr[cm.cellattr];
    celp = cellAttrFunc.call(ts, rowId, tv, rawObject, cm, rdata);</pre></div><p>In the same way to allows the usage of string as the value of <strong>rowattr</strong> one need to change <a href="https://github.com/tonytomov/jqGrid/blob/v4.6.0/js/grid.base.js#L1219" target="_blank">the line</a>Â </p>
<div class="sfcode">
<pre class="brush-javascript syntax">rowAttrObj <span class="o">=</span> $.isFunction(ts.p.rowattr) <span class="o">?</span> ts.p.rowattr.<span class="nf">call</span>(ts, rd, cur, id) <span class="o">:</span>{};</pre></div><p>to the lines</p>
<div class="sfcode">
<pre class="brush-javascript syntax">rowAttrObj = $.isFunction(ts.p.rowattr) ? ts.p.rowattr.call(ts, rd, cur, id) :
    (typeof ts.p.rowattr === "string" &#38;&#38; $.jgrid.rowattr != null &#38;&#38; $.isFunction($.jgrid.rowattr[ts.p.rowattr]) ?
        $.jgrid.rowattr[ts.p.rowattr].call(ts, rd, cur, id) : {});</pre></div><p>One can modify the code more to allow to use <strong>cellattr</strong> andÂ <strong>rowattr</strong> as comma-separated string with the values <strong>$.jgrid.cellattr</strong> and <strong>$.jgrid.rowattr</strong>. In the way one could allow applying of multiple callback functionsÂ (the stack) at once. In general such extension could have sense for <strong>formatter</strong>Â andÂ <strong>template</strong> values too.</p>
<p><a href="http://www.ok-soft-gmbh.com/jqGrid/cellattrAndRowAttrAsString.htm" target="_blank">The demo</a>Â demonstrates the changes working.</p>
<p>Best regards<br />
Oleg</p>
]]></description>
        	        	<pubDate>Sun, 09 Nov 2014 15:02:42 +0200</pubDate>
        </item>
        <item>
        	<title>JuanPC on Custom cell tooltips used 'title' property of colModel as the function</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/custom-cell-tooltips-used-title-property-of-colmodel-as-the-function#p31281</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/custom-cell-tooltips-used-title-property-of-colmodel-as-the-function#p31281</guid>
        	        	<description><![CDATA[<p>HelloÂ </p>
<p>I haveÂ an issue with theÂ colmodelÂ <strong><em>cellattr</em></strong> attribute. I use it to set a title/tooltip for each cell in the grid, the tooltipÂ text is a concatenated of 2 other grid's columns.Â </p>
<p>In the code of theÂ <em><strong>formatCol()</strong></em> function, there is a split of the result value:</p>
<div class="sfcode">
<pre class="brush-javascript syntax">celp.split(/[^-]style/)</pre></div><p>, based on the text: 'style', and i have some rows which have the word 'style' as part of the textÂ used in the tooltip/title, then the data is not displayed in the grid.</p>
<p>IÂ am currently using the version 4.5.2. I have applied some ofÂ the changes to the code suggested by OlegK in a previous reply on this post.Â Then I can set theÂ <strong><em>title</em></strong> attribute of a column <em>as a function</em>, then the text value for the title is not 'treated' in the formatcol function anymore, so the issue does not happen.</p>
<p>I would like to have your advise about this approach, is thisÂ advisableÂ or there could be a better way ?.. maybe in recent versions (4.6.x) this issue is not present, the code of formatCol was already changed</p>
<p>Please advise.</p>
<p>Thanks</p>
<p>Juan PCÂ </p>
]]></description>
        	        	<pubDate>Thu, 23 Oct 2014 19:20:34 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqgrid base on anjular.js</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-base-on-anjular-js#p31262</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-base-on-anjular-js#p31262</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>I'm not sure that angular.js will replace jQuery. They have different type of applications.</p>
<p>Â </p>
<p>Kind Regards</p>
]]></description>
        	        	<pubDate>Tue, 21 Oct 2014 17:47:38 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Add support for bootstrap + dynamic resizing</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/add-support-for-bootstrap-dynamic-resizing#p31246</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/add-support-for-bootstrap-dynamic-resizing#p31246</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>Thanks for feedback.</p>
<p>Â </p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Tue, 21 Oct 2014 15:46:52 +0300</pubDate>
        </item>
        <item>
        	<title>NJDave71@gmail.com on Add support for bootstrap + dynamic resizing</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/add-support-for-bootstrap-dynamic-resizing#p31218</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/add-support-for-bootstrap-dynamic-resizing#p31218</guid>
        	        	<description><![CDATA[<p>Works great with Bootstrap 3.Â </p>
<p>Â </p>
<p>Â Â Â  // Set grid width to .jumbotron<br />
 Â Â Â  $("#jqGrid01").jqGrid('setGridWidth', $(".jumbotron").width(), true);</p>
<p>Â Â  // when the browser size changes so does the grid<br />
 Â Â Â  $(window).resize(function () {<br />
 Â Â Â Â Â Â Â Â  $("#jqGrid01").jqGrid('setGridWidth', $(".jumbotron").width(), true);<br />
 Â Â Â Â  });</p>
<p>Good luck</p>
<p>next step remove remap JQuery UI and Icons to use bootstrap and Font files.</p>
]]></description>
        	        	<pubDate>Fri, 10 Oct 2014 20:13:28 +0300</pubDate>
        </item>
        <item>
        	<title>shilo.k on jqgrid base on anjular.js</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-base-on-anjular-js#p31202</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-base-on-anjular-js#p31202</guid>
        	        	<description><![CDATA[<p>More and more moving for use in Angular instead Jquery.js<br />
Are have your any plans to create a version of JQGRID based on ANGULAR instead Jquery ?</p>
]]></description>
        	        	<pubDate>Mon, 06 Oct 2014 10:04:29 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Jqgrid Toolbar dropdown clear search button &#091;x icon&#093;</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-toolbar-dropdown-clear-search-button-x-icon#p31184</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-toolbar-dropdown-clear-search-button-x-icon#p31184</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>You can use defaultValue search option - see docs.</p>
<p>Â </p>
<p>Kind Regards</p>
]]></description>
        	        	<pubDate>Fri, 03 Oct 2014 12:55:26 +0300</pubDate>
        </item>
        <item>
        	<title>tony on 2 Issues in grid with subgrid in jqgrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/2-issues-in-grid-with-subgrid-in-jqgrid#p31180</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/2-issues-in-grid-with-subgrid-in-jqgrid#p31180</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>You may search this forum for answer.</p>
<p>Without showingÂ  your code nobody will try to help.</p>
<p>Kind Regards</p>
]]></description>
        	        	<pubDate>Fri, 03 Oct 2014 11:51:15 +0300</pubDate>
        </item>
        <item>
        	<title>shibin on 2 Issues in grid with subgrid in jqgrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/2-issues-in-grid-with-subgrid-in-jqgrid#p31152</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/2-issues-in-grid-with-subgrid-in-jqgrid#p31152</guid>
        	        	<description><![CDATA[<p>Hi all</p>
<p>I am Created a gridÂ and subgridÂ with jqgrid</p>
<p>but facing 2 issues</p>
<p>1,Â insert firstÂ row to the empty grid insertion successful but not highlight it.</p>
<p>2, after insert theÂ first row. I am insert the second row inserted successfully. but</p>
<p>Â Â  id column is empty. why..?</p>
<p>I will check the column id. get resultÂ row count. notÂ a row id.Â it change automatically row id to row count..?Â Â </p>
<p>insert aÂ row to the subgrid not valid because master grid id column is empty and id isÂ row count instead of row id</p>
<p>anybody can help me</p>
]]></description>
        	        	<pubDate>Mon, 22 Sep 2014 13:48:46 +0300</pubDate>
        </item>
        <item>
        	<title>info.siva on Jqgrid Toolbar dropdown clear search button &#091;x icon&#093;</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-toolbar-dropdown-clear-search-button-x-icon#p31147</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/jqgrid-toolbar-dropdown-clear-search-button-x-icon#p31147</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I've implemented the drop downs on the Jqgrid tool bar with the clear button for each fields but I've found some of the drop down fields not resetting to 0 when IÂ clicked clear button.</p>
<p>can some help on this please if there any specific settings do i have make for each of the fields.</p>
<p>thanks</p>
<p>Siva</p>
]]></description>
        	        	<pubDate>Thu, 18 Sep 2014 11:48:04 +0300</pubDate>
        </item>
        <item>
        	<title>tony on setting searchOperators of filterToolbar for column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/setting-searchoperators-of-filtertoolbar-for-column#p31141</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/setting-searchoperators-of-filtertoolbar-for-column#p31141</guid>
        	        	<description><![CDATA[<p>Hello Oleg,</p>
<p>Â </p>
<p>Thanks.</p>
<p>I do not think that the first requirement should be added as option (you know too many options) in grid.</p>
<p>As per second - I see it and have just merged the request.</p>
<p>Thanks again</p>
<p>Â </p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 17 Sep 2014 09:56:11 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on setting searchOperators of filterToolbar for column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/setting-searchoperators-of-filtertoolbar-for-column#p31134</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/setting-searchoperators-of-filtertoolbar-for-column#p31134</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>it seems to me that the CSS rules</p>
<div class="sfcode">
<pre class="brush-css syntax">.ui-search-menu.ui-menu .ui-menu-item { list-style-image: none; padding-right: 0; padding-left: 0; }
.ui-search-menu.ui-menu .ui-menu-item a { display: block; }
.ui-search-menu.ui-menu .ui-menu-item a.g-menu-item:hover { margin: -1px; font-weight: normal; }</pre></div><p>can fix the jQuery UI compatibility problems which I described in the previous post.</p>
<p>Best regards<br />
 Oleg</p>
<p>P.S. <a href="https://github.com/tonytomov/jqGrid/pull/637" target="_blank">The pull request</a>Â contains the changes.</p>
]]></description>
        	        	<pubDate>Mon, 15 Sep 2014 17:02:49 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on setting searchOperators of filterToolbar for column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/setting-searchoperators-of-filtertoolbar-for-column#p31132</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/setting-searchoperators-of-filtertoolbar-for-column#p31132</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>the current implementation ofÂ <strong>filterToolbar</strong> allows to set column operation only on all columns or on no columns usingÂ <strong>searchOperators</strong> parameter.</p>
<p>On the other side it have no sense for the operationÂ on the column where noÂ <strong>searchoptions.sopt</strong> is defined. The current implementation just add operation fromÂ <strong>defaultSearch</strong> in the column and the corresponding context menu don't allows to choose another operation, so the search operator just get some place from searching toolbar:</p>
<p><a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations0.png"><img src="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations0.png" width="100"  class="sfimageleft spUserImage" alt="" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class="sfimageleft sfmouseleft" alt="Image Enlarger" /></a></p>
<p><a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations0.htm" target="_blank">The demo</a>Â can be used to reproduce the problem. It would be practical toÂ be able to specifyÂ <strong>searchOperators</strong> property for the column like in case ofÂ <strong>clearSearch</strong>. <a href="http://stackoverflow.com/a/25503452/315935" target="_blank">The answer</a>Â provide a workaround (see <a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations.htm" target="_blank">the demo</a>), but it would be fine to have the feature out of the box.</p>
<p><span style="text-decoration: underline"><strong>Another problem</strong></span>: there are <strong><span style="text-decoration: underline">bug</span></strong>/compatibility problem in contextmenu forÂ choosing of searching operation. It works incorrectly in jQuery UI 1.11.0/1.11.0. See <a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations1.htm" target="_blank">the demo</a>Â which reproduces the problem. Just opens the demo and try to choose another operation for Tax column for example. You will see the problem immediately. The menu looks like</p>
<p><a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations1.png"><img src="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations1.png" width="100"  class="sfimageleft spUserImage" alt="" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class="sfimageleft sfmouseleft" alt="Image Enlarger" /></a></p>
<p>instead of</p>
<p><a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations1_.png"><img src="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations1_.png" width="100"  class="sfimageleft spUserImage" alt="" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class="sfimageleft sfmouseleft" alt="Image Enlarger" /></a></p>
<p>By the way, I personally find the vertical distance between items in menu too high event in case of "correct" context menu. The context menu from the same demo, but using jQuery UIÂ 1.9.2 (see <a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations0_.htm" target="_blank">the demo</a>) looks much better:</p>
<p><a href="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations0_.png"><img src="http://www.ok-soft-gmbh.com/jqGrid/SelectiveSearchOperations0_.png" width="100"  class="sfimageleft spUserImage" alt="" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class="sfimageleft sfmouseleft" alt="Image Enlarger" /></a></p>
<p>Best regards<br />
 Oleg</p>
<p>P.S. Sorry, but editing of code/pictures in the forum is really difficult. ItÂ unclear how to write more readable post. <img src="http://www.trirand.com/blog/wp-includes/images/smilies/icon_sad.gif" alt=":-(" class="spWPSmiley" style="max-height:1em;margin:0"  /> </p>
]]></description>
        	        	<pubDate>Mon, 15 Sep 2014 11:42:38 +0300</pubDate>
        </item>
        <item>
        	<title>tony on issue for select list item name in edit dialog jqgrid with php</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/issue-for-select-list-item-name-in-edit-dialog-jqgrid-with-php#p31081</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/issue-for-select-list-item-name-in-edit-dialog-jqgrid-with-php#p31081</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>I'm not sure that this is a jqGrid issue.</p>
<p>Please, check your server side code.</p>
<p>Â </p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Mon, 08 Sep 2014 13:58:01 +0300</pubDate>
        </item>
        <item>
        	<title>shibin on issue for select list item name in edit dialog jqgrid with php</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/issue-for-select-list-item-name-in-edit-dialog-jqgrid-with-php#p31077</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/issue-for-select-list-item-name-in-edit-dialog-jqgrid-with-php#p31077</guid>
        	        	<description><![CDATA[<p>hi all</p>
<p>I am used a select list item in jqgrid editing dialog</p>
<p>I want toÂ insert / update item name to MySQL databaseÂ from selectlist's selected itemÂ name</p>
<p>showÂ item name is correctly in selectlistÂ but whenÂ insert / update data to database only saved item id why?</p>
<p>any body can help with detailedÂ example code</p>
<p>with best regards</p>
]]></description>
        	        	<pubDate>Mon, 08 Sep 2014 03:09:33 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Loading data while scrolling + Grouping</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/loading-data-while-scrolling-grouping#p31029</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/loading-data-while-scrolling-grouping#p31029</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>Yes this is true. Grouping requires a lot of calculations and this will slow down the process.</p>
<p>More over the nature of the scrolling make this very difficult to do.</p>
<p>Â </p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Fri, 29 Aug 2014 11:14:41 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Client side table sorting, filtering but server side pagination</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/client-side-table-sorting-filtering-but-server-side-pagination#p31024</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/client-side-table-sorting-filtering-but-server-side-pagination#p31024</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Humm - it seems that I tell you this is wrong way.</p>
<p>Try with</p>
<p>loadonce: true</p>
<p>and do not use</p>
<p>gridComplete to put the data type local - i.e disable this event.</p>
<p>The trick should be that if loadonce is true - it put automatically datatype local after loading the data.</p>
<p>The other code do not need to be changed.</p>
<p>Also it is a good idea to use key:true in one column of colModel.</p>
<p>Â </p>
<p>Please let me know on the result. If this does not help I will try to prepare a example.</p>
<p>Â </p>
<p>Kind Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 29 Aug 2014 10:39:57 +0300</pubDate>
        </item>
</channel>
</rss>