<?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: asp.net grid errors</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/asp-net-grid-errors</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/asp-net-grid-errors/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>mrCad on asp.net grid errors</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/asp-net-grid-errors#p25093</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/asp-net-grid-errors#p25093</guid>
        	        	<description><![CDATA[<p>I have searched for 2 days and still am having issues using jqgrid with asp.net and a webservice, below is my code and markup:</p>
</p>
<p>aspx:&#160;</p>
<p>&#60;head id="Head1&#8243; runat="server"&#62;</p>
<p>&#60;link href="~/Shared/Styles/Site.css" rel="stylesheet" type="text/css" /&#62;</p>
<p>&#60;script src="Shared/Scripts/jquery-1.6.2.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="Shared/Scripts/jason2.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script type="text/javascript" src="Shared/Scripts/i18n/grid.locale-en.js"&#62;&#60;/script&#62;</p>
<p>&#60;script type="text/javascript" src="Shared/scripts/ParagonMTIJQueryScripts.js"&#62;&#60;/script&#62;</p>
<p>&#60;script src="Shared/Scripts/jquery.jqGrid.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
</p>
<p>My jquery script:</p>
<p>function loadglAcctEditCriteria() {</p>
</p>
<p>$("#glAccountSelGrid").jqGrid({</p>
<p>datatype: function (pdata) { getStartData(pdata); },</p>
<p>colNames: [&#39;ID&#39;, &#39;Account&#39;, &#39;Description&#39;, &#39;Posting Y/N&#39;, &#39;Lvl of Detail&#39;, &#39;Posting Status&#39;],</p>
<p>colModel: [</p>
<p>{ name: &#39;id&#39;, width: 1, sortable: false, hidden: true},</p>
<p>{ name: &#39;Account&#39;, width: 100, sortable: false },</p>
<p>{ name: &#39;Descprition&#39;, width: 400, align: &#39;left&#39;, sortable: false },</p>
<p>{ name: &#39;Posting&#39;, width: 120, align: &#39;center&#39;, sortable: false },</p>
<p>{ name: &#39;PostingStatus&#39;, width: 120, align: &#39;center&#39;, sortable: false },</p>
<p>{ name: &#39;LOD&#39;, width: 150, align: &#39;center&#39;, sortable: false}],</p>
<p>pager: jQuery(&#39;#pager&#39;),</p>
<p>gridComplete: doWhenGridFullyLoaded,</p>
<p>ondblClickRow: function(rowid) {</p>
<p>jQuery(this).jqGrid(&#39;editGridRow&#39;, rowid);</p>
<p>}</p>
<p>});</p>
<p>}</p>
<p>function getStartData(pData){</p>
<p>var myDTO = {};</p>
<p>var toPass = JSON.stringify(myDTO);</p>
<p>$.ajax({</p>
<p>type: &#39;POST&#39;,</p>
<p>contentType: "application/json; charset=utf-8&#8243;,</p>
<p>dataType: "json",</p>
<p>url: "gl_account_edit.aspx/testJQGrid",</p>
<p>data: toPass,</p>
<p>success: function (data, textStatus) {</p>
<p>if (textStatus == "success")</p>
<p>ReceivedClientData(JSON.parse(getMain(data)).rows);</p>
<p>},</p>
<p>error: function (data, textStatus) { alert(&#39;An error has occured retrieving data!&#39;); }</p>
<p>});</p>
<p>}</p>
</p>
<p>&#160;Here is the returning data:</p>
<p>{"d":"{"total":2,"page":1,"records":12,"rows":[{"id":"d2e68652-06e3-10e1-b7fd-94e54724019b","Account":"1000","Descprition":"Cash","Posting":false,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-11e1-b7fd-94e54724019b","Account":"1001","Descprition":"Petty Cash","Posting":true,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-12e1-b7fd-94e54724019b","Account":"1000","Descprition":"Cashin Farmers Bank and Trust","Posting":true,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-13e1-b7fd-94e54724019b","Account":"1100","Descprition":"Investments","Posting":false,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-14e1-b7fd-94e54724019b","Account":"1101","Descprition":"Merrel Lynch","Posting":true,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-15e1-b7fd-94e54724019b","Account":"1200","Descprition":"Inventories Raw Materials-All Departments","Posting":false,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-16e1-b7fd-94e54724019b","Account":"1201","Descprition":"Notes Reciveables Officers","Posting":true,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-17e1-b7fd-94e54724019b","Account":"1202","Descprition":"Notes Reciveables Employees","Posting":true,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-18e1-b7fd-94e54724019b","Account":"1300","Descprition":"Inventories","Posting":false,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-19e1-b7fd-94e54724019b","Account":"1301","Descprition":"Inventories Raw Dept1","Posting":true,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-20e1-b7fd-94e54724019b","Account":"1302","Descprition":"Inventories Raw Dept2","Posting":true,"PostingStatus":true,"LOD":"LOD 1"},{"id":"d2e68652-06e3-21e1-b7fd-94e54724019b","Account":"1303","Descprition":"Inventories Raw Dept3","Posting":true,"PostingStatus"</p>
</p>
<p>The problems I am having is that first the loading message stays up and never leaves,&#160; I get all the rows and they exceed the container and hence no paging available since it is now hidden.&#160;&#160; The html being rendered is below.&#160; I am sure I am just missing something somewhat simple but I have stared at this so long I have no idea, any ideas or help would be greatly appreciated.</p>
<p>&#60;div id="glAcctInfo"&#62;</p>
<p>&#60;div id="glAcctInfoHdr"&#62;</p>
<p>Selection Criteria</p>
<p>&#60;/div&#62;</p>
<p>&#60;div id="glAcctInfoContent"&#62;</p>
<p>&#60;div id="glAcctCol1"&#62;</p>
<p>View: &#60;select name="acctView" size="1" id="glAcctView"&#62;</p>
<p>&#60;option value="0"&#62;All Accounts&#60;/option&#62;</p>
<p>&#60;option value="1"&#62;Active accounts only&#60;/option&#62;</p>
<p>&#60;option value="2"&#62;Inactive accounts only&#60;/option&#62;</p>
<p>&#60;/select&#62;&#60;br&#62;</p>
<p>Account: &#60;input id="glAcctEditAccount" type="text"&#62;&#60;br&#62;</p>
<p>&#60;/div&#62;</p>
<p>&#60;div id="glAcctCol2"&#62;</p>
<p>Description: &#60;input id="glAcctEditDescrp" type="text"&#62;&#60;br&#62;</p>
<p>&#60;/div&#62;</p>
<p>&#60;/div&#62;</p>
<p>&#60;/div&#62;</p>
<p>&#60;div id="glAccountSelectGrid"&#62;</p>
<p>&#60;div style="width: 915px;" dir="ltr" id="gbox_glAccountSelGrid" class="ui-jqgrid ui-widget ui-widget-content ui-corner-all"&#62;&#60;div class="ui-widget-overlay jqgrid-overlay" id="lui_glAccountSelGrid"&#62;&#60;/div&#62;&#60;div class="loading ui-state-default ui-state-active" id="load_glAccountSelGrid"&#62;Loading...&#60;/div&#62;&#60;div style="width: 915px;" id="gview_glAccountSelGrid" class="ui-jqgrid-view"&#62;&#60;div style="display: none;" class="ui-jqgrid-titlebar ui-widget-header ui-corner-top ui-helper-clearfix"&#62;&#60;a style="right: 0px;" class="ui-jqgrid-titlebar-close HeaderButton" role="link" href="javascript:void(0)"&#62;&#60;span class="ui-icon ui-icon-circle-triangle-n"&#62;&#60;/span&#62;&#60;/a&#62;&#60;span class="ui-jqgrid-title"&#62;&#60;/span&#62;&#60;/div&#62;&#60;div class="ui-state-default ui-jqgrid-hdiv" style="width: 915px;"&#62;&#60;div class="ui-jqgrid-hbox"&#62;&#60;table class="ui-jqgrid-htable" style="width: 897px;" role="grid" aria-labelledby="gbox_glAccountSelGrid" border="0" cellpadding="0" cellspacing="0"&#62;&#60;thead&#62;&#60;tr class="ui-jqgrid-labels" role="rowheader"&#62;&#60;th style="width: 1px; display: none;" id="glAccountSelGrid_id" role="columnheader" class="ui-state-default ui-th-column ui-th-ltr"&#62;&#60;span style="cursor: col-resize;" class="ui-jqgrid-resize ui-jqgrid-resize-ltr"&#62;&#38;nbsp;&#60;/span&#62;&#60;div class="ui-jqgrid-sortable" id="jqgh_glAccountSelGrid_id"&#62;ID&#60;span class="s-ico" style="display:none"&#62;&#60;span sort="asc" class="ui-grid-ico-sort ui-icon-asc ui-state-disabled ui-icon ui-icon-triangle-1-n ui-sort-ltr"&#62;&#60;/span&#62;&#60;span sort="desc" class="ui-grid-ico-sort ui-icon-desc ui-state-disabled ui-icon ui-icon-triangle-1-s ui-sort-ltr"&#62;&#60;/span&#62;&#60;/span&#62;&#60;/div&#62;&#60;/th&#62;&#60;th style="width: 98px;" id="glAccountSelGrid_Account" role="columnheader" class="ui-state-default ui-th-column ui-th-ltr"&#62;&#60;span style="cursor: col-resize;" class="ui-jqgrid-resize ui-jqgrid-resize-ltr"&#62;&#38;nbsp;&#60;/span&#62;&#60;div class="ui-jqgrid-sortable" id="jqgh_glAccountSelGrid_Account"&#62;Account&#60;span class="s-ico" style="display:none"&#62;&#60;span sort="asc" class="ui-grid-ico-sort ui-icon-asc ui-state-disabled ui-icon ui-icon-triangle-1-n ui-sort-ltr"&#62;&#60;/span&#62;&#60;span sort="desc" class="ui-grid-ico-sort ui-icon-desc ui-state-disabled ui-icon ui-icon-triangle-1-s ui-sort-ltr"&#62;&#60;/span&#62;&#60;/span&#62;&#60;/div&#62;&#60;/th&#62;&#60;th style="width: 392px;" id="glAccountSelGrid_Descprition" role="columnheader" class="ui-state-default ui-th-column ui-th-ltr"&#62;&#60;span style="cursor: col-resize;" class="ui-jqgrid-resize ui-jqgrid-resize-ltr"&#62;&#38;nbsp;&#60;/span&#62;&#60;div class="ui-jqgrid-sortable" id="jqgh_glAccountSelGrid_Descprition"&#62;Description&#60;span class="s-ico" style="display:none"&#62;&#60;span sort="asc" class="ui-grid-ico-sort ui-icon-asc ui-state-disabled ui-icon ui-icon-triangle-1-n ui-sort-ltr"&#62;&#60;/span&#62;&#60;span sort="desc" class="ui-grid-ico-sort ui-icon-desc ui-state-disabled ui-icon ui-icon-triangle-1-s ui-sort-ltr"&#62;&#60;/span&#62;&#60;/span&#62;&#60;/div&#62;&#60;/th&#62;&#60;th style="width: 118px;" id="glAccountSelGrid_Posting" role="columnheader" class="ui-state-default ui-th-column ui-th-ltr"&#62;&#60;span style="cursor: col-resize;" class="ui-jqgrid-resize ui-jqgrid-resize-ltr"&#62;&#38;nbsp;&#60;/span&#62;&#60;div class="ui-jqgrid-sortable" id="jqgh_glAccountSelGrid_Posting"&#62;Posting Y/N&#60;span class="s-ico" style="display:none"&#62;&#60;span sort="asc" class="ui-grid-ico-sort ui-icon-asc ui-state-disabled ui-icon ui-icon-triangle-1-n ui-sort-ltr"&#62;&#60;/span&#62;&#60;span sort="desc" class="ui-grid-ico-sort ui-icon-desc ui-state-disabled ui-icon ui-icon-triangle-1-s ui-sort-ltr"&#62;&#60;/span&#62;&#60;/span&#62;&#60;/div&#62;&#60;/th&#62;&#60;th style="width: 118px;" id="glAccountSelGrid_PostingStatus" role="columnheader" class="ui-state-default ui-th-column ui-th-ltr"&#62;&#60;span style="cursor: col-resize;" class="ui-jqgrid-resize ui-jqgrid-resize-ltr"&#62;&#38;nbsp;&#60;/span&#62;&#60;div class="ui-jqgrid-sortable" id="jqgh_glAccountSelGrid_PostingStatus"&#62;Lvl of Detail&#60;span class="s-ico" style="display:none"&#62;&#60;span sort="asc" class="ui-grid-ico-sort ui-icon-asc ui-state-disabled ui-icon ui-icon-triangle-1-n ui-sort-ltr"&#62;&#60;/span&#62;&#60;span sort="desc" class="ui-grid-ico-sort ui-icon-desc ui-state-disabled ui-icon ui-icon-triangle-1-s ui-sort-ltr"&#62;&#60;/span&#62;&#60;/span&#62;&#60;/div&#62;&#60;/th&#62;&#60;th style="width: 146px;" id="glAccountSelGrid_LOD" role="columnheader" class="ui-state-default ui-th-column ui-th-ltr"&#62;&#60;span style="cursor: col-resize;" class="ui-jqgrid-resize ui-jqgrid-resize-ltr"&#62;&#38;nbsp;&#60;/span&#62;&#60;div class="ui-jqgrid-sortable" id="jqgh_glAccountSelGrid_LOD"&#62;Posting Status&#60;span class="s-ico" style="display:none"&#62;&#60;span sort="asc" class="ui-grid-ico-sort ui-icon-asc ui-state-disabled ui-icon ui-icon-triangle-1-n ui-sort-ltr"&#62;&#60;/span&#62;&#60;span sort="desc" class="ui-grid-ico-sort ui-icon-desc ui-state-disabled ui-icon ui-icon-triangle-1-s ui-sort-ltr"&#62;&#60;/span&#62;&#60;/span&#62;&#60;/div&#62;&#60;/th&#62;&#60;/tr&#62;&#60;/thead&#62;&#60;/table&#62;&#60;/div&#62;&#60;/div&#62;&#60;div style="height: 150px; width: 915px;" class="ui-jqgrid-bdiv"&#62;&#60;div style="position: relative;"&#62;&#60;div&#62;&#60;/div&#62;&#60;table style="width: 897px;" class="ui-jqgrid-btable" aria-labelledby="gbox_glAccountSelGrid" aria-multiselectable="false" role="grid" tabindex="1" id="glAccountSelGrid" border="0" cellpadding="0" cellspacing="0"&#62;&#60;tbody&#62;&#60;tr class="jqgfirstrow" role="row" style="height: auto;"&#62;&#60;td role="gridcell" style="height: 0px; width: 1px; display: none;"&#62;&#60;/td&#62;&#60;td role="gridcell" style="height: 0px; width: 98px;"&#62;&#60;/td&#62;&#60;td role="gridcell" style="height: 0px; width: 392px;"&#62;&#60;/td&#62;&#60;td role="gridcell" style="height: 0px; width: 118px;"&#62;&#60;/td&#62;&#60;td role="gridcell" style="height: 0px; width: 118px;"&#62;&#60;/td&#62;&#60;td role="gridcell" style="height: 0px; width: 146px;"&#62;&#60;/td&#62;&#60;/tr&#62;&#60;tr id="1" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-10e1-b7fd-94e54724019b"&#62;d2e68652-06e3-10e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1000"&#62;1000&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Cash"&#62;Cash&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="false"&#62;false&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="2" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-11e1-b7fd-94e54724019b"&#62;d2e68652-06e3-11e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1001"&#62;1001&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Petty Cash"&#62;Petty Cash&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="3" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-12e1-b7fd-94e54724019b"&#62;d2e68652-06e3-12e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1000"&#62;1000&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Cashin Farmers Bank and Trust"&#62;Cashin Farmers Bank and Trust&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="4" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-13e1-b7fd-94e54724019b"&#62;d2e68652-06e3-13e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1100"&#62;1100&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Investments"&#62;Investments&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="false"&#62;false&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="5" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-14e1-b7fd-94e54724019b"&#62;d2e68652-06e3-14e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1101"&#62;1101&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Merrel Lynch"&#62;Merrel Lynch&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="6" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr "&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-15e1-b7fd-94e54724019b"&#62;d2e68652-06e3-15e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1200"&#62;1200&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Inventories Raw Materials-All Departments"&#62;Inventories Raw Materials-All Departments&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="false"&#62;false&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="7" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr "&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-16e1-b7fd-94e54724019b"&#62;d2e68652-06e3-16e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1201"&#62;1201&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Notes Reciveables Officers"&#62;Notes Reciveables Officers&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="8" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr "&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-17e1-b7fd-94e54724019b"&#62;d2e68652-06e3-17e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1202"&#62;1202&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Notes Reciveables Employees"&#62;Notes Reciveables Employees&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="9" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr "&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-18e1-b7fd-94e54724019b"&#62;d2e68652-06e3-18e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1300"&#62;1300&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Inventories"&#62;Inventories&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="false"&#62;false&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="10" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-19e1-b7fd-94e54724019b"&#62;d2e68652-06e3-19e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1301"&#62;1301&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Inventories Raw Dept1"&#62;Inventories Raw Dept1&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="11" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-20e1-b7fd-94e54724019b"&#62;d2e68652-06e3-20e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1302"&#62;1302&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Inventories Raw Dept2"&#62;Inventories Raw Dept2&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;tr id="12" role="row" tabindex="-1" class="ui-widget-content jqgrow ui-row-ltr"&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_id" style="display:none;" title="d2e68652-06e3-21e1-b7fd-94e54724019b"&#62;d2e68652-06e3-21e1-b7fd-94e54724019b&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Account" style="" title="1303"&#62;1303&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Descprition" style="text-align:left;" title="Inventories Raw Dept3"&#62;Inventories Raw Dept3&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_Posting" style="text-align:center;" title="true"&#62;true&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_PostingStatus" style="text-align:center;" title="false"&#62;false&#60;/td&#62;&#60;td role="gridcell" aria-describedby="glAccountSelGrid_LOD" style="text-align:center;" title="LOD 1"&#62;LOD 1&#60;/td&#62;&#60;/tr&#62;&#60;/tbody&#62;&#60;/table&#62;&#60;/div&#62;&#60;/div&#62;&#60;/div&#62;&#60;div class="ui-jqgrid-resize-mark" id="rs_mglAccountSelGrid"&#62;&#38;nbsp;&#60;/div&#62;&#60;div dir="ltr" class="ui-state-default ui-jqgrid-pager ui-corner-bottom" style="width: 915px;" id="pager"&#62;&#60;div id="pg_pager" class="ui-pager-control" role="group"&#62;&#60;table class="ui-pg-table" style="width: 100%; table-layout: fixed; height: 100%;" role="row" border="0" cellpadding="0" cellspacing="0"&#62;&#60;tbody&#62;&#60;tr&#62;&#60;td id="pager_left" align="left"&#62;&#60;/td&#62;&#60;td id="pager_center" style="white-space: pre; width: 218px;" align="center"&#62;&#60;table style="table-layout:auto;" class="ui-pg-table" border="0" cellpadding="0" cellspacing="0"&#62;&#60;tbody&#62;&#60;tr&#62;&#60;td id="first_pager" class="ui-pg-button ui-corner-all ui-state-disabled"&#62;&#60;span class="ui-icon ui-icon-seek-first"&#62;&#60;/span&#62;&#60;/td&#62;&#60;td id="prev_pager" class="ui-pg-button ui-corner-all ui-state-disabled"&#62;&#60;span class="ui-icon ui-icon-seek-prev"&#62;&#60;/span&#62;&#60;/td&#62;&#60;td class="ui-pg-button ui-state-disabled" style="width:4px;"&#62;&#60;span class="ui-separator"&#62;&#60;/span&#62;&#60;/td&#62;&#60;td dir="ltr"&#62;Page &#60;input class="ui-pg-input" size="2" maxlength="7" value="0" role="textbox" type="text"&#62; of &#60;span id="sp_1_pager"&#62;0&#60;/span&#62;&#60;/td&#62;&#60;td class="ui-pg-button ui-state-disabled" style="width:4px;"&#62;&#60;span class="ui-separator"&#62;&#60;/span&#62;&#60;/td&#62;&#60;td id="next_pager" class="ui-pg-button ui-corner-all"&#62;&#60;span class="ui-icon ui-icon-seek-next"&#62;&#60;/span&#62;&#60;/td&#62;&#60;td id="last_pager" class="ui-pg-button ui-corner-all"&#62;&#60;span class="ui-icon ui-icon-seek-end"&#62;&#60;/span&#62;&#60;/td&#62;&#60;/tr&#62;&#60;/tbody&#62;&#60;/table&#62;&#60;/td&#62;&#60;td id="pager_right" align="right"&#62;&#60;/td&#62;&#60;/tr&#62;&#60;/tbody&#62;&#60;/table&#62;&#60;/div&#62;&#60;/div&#62;&#60;/div&#62;</p>
</p>
<p>&#60;/div&#62;</p>
]]></description>
        	        	<pubDate>Mon, 07 Nov 2011 17:16:26 +0200</pubDate>
        </item>
</channel>
</rss>