<?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: Unable to get paging working.</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working</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/unable-to-get-paging-working/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Unable to get paging working.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16409</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16409</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Just copy paste your example in my demo and it works just fine.</p>
<p>The reason for</p>
<p>fmt = $.jgrid.formatter.integer &#124;&#124; {}; is undefined is:</p>
<p>You do not have loaded the language file correct (grid.locale-en.js)</p>
<p>1. Ensure that this file is loaded</p>
<p>2. Ensure that it is loaded before jqGrid js file.</p>
</p>
<p>Best Regards</p>
<p>Tony</p>
</p>
<p>Edit: It seems like this</p>
<p><input type='button' class='sfcodeselect' name='sfselectit6453' value='Select Code' data-codeid='sfcode6453' /></p>
<div class='sfcode' id='sfcode6453'>
<p align="left">&#60;script src="jQuery/grid.locale-en.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p align="left">
</div>
<p align="left">does not load the lang file.</p>
]]></description>
        	        	<pubDate>Wed, 14 Apr 2010 21:08:22 +0300</pubDate>
        </item>
        <item>
        	<title>dash on Unable to get paging working.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16363</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16363</guid>
        	        	<description><![CDATA[<p>hi tony,</p>
</p>
<p>thanks for your response.&#160; i did add the pagination data in the response xml last week, but the pagination still wasn&#39;t working properly.&#160; the weird thing was i kept getting " &#39;$.jgrid.formatter.integer&#39; is null or not an object" error from updatepager  in grid.base.js in the dev version once i enabled the pager.&#160; the offending line is.</p>
<p>if(pgboxes) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;fmt = $.jgrid.formatter.integer &#124;&#124; {};</p>
</p>
<p>In the min version, i&#39;d to make the following change to suppress the js error in order to work on other features such as add, edit, etc. as well as the pager.</p>
<p>from: if(o){r=b.jgrid.formatter.integer&#124;&#124;{};</p>
<p>to: if(o){r=b.fmatter&#124;&#124;{};</p>
</p>
<p>After modifying the code in the min version and setting the &#39;loadonce&#39; to false, the row list drop down did make an ajax call to the server; however, record text, page text still didn&#39;t show up.&#160; i really don&#39;t know what the side effect might be by blindly changing the core code.&#160; i shouldn&#39;t need to modify the core library for the pager to work properly, should i?</p>
</p>
<p>i&#39;ve been stuck on this feature for almost a week.&#160; any help will be greatly appreciate.&#160; please see the latest code below.</p>
</p>
<p>thanks again for your help,</p>
<p>dash</p>
<p>p.s. how&#39;s life in sofia? i was there couple weeks, working with folks at sciant, an outsourcing dev firm, in 03/04.&#160; you might even know some guys working there back then.&#160; sciant was acquired by vmware a few years back.&#160; i&#39;m sure sofia also has got a complete facelift since then...</p>
<p>
$(document).ready(function () {</p>
<p>&#160;&#160; &#160;&#160;&#160; &#160;$("#groupsGrid").jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;url: &#39;getGroups.do&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;datatype: "xml",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;colNames:["Name", "Description", "Default"],<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;colModel:[<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:"Name", index:"Name", width:150, align:"center", xmlmap:"name", editable:true, editoptions:{size:20}},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:"Description", index:"Description", width:150, align:"center", xmlmap:"description", editable:true, editoptions:{size:30}},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:"IsDefault", index:"IsDefault", width:40, align:"center", formatter:yesNoFormatter, xmlmap:"isDefault", editable:true, edittype:"checkbox", editoptions:{value:"Yes:No"}}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;],<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;pager: $(&#39;#groupsGridPager&#39;),<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;pginput: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;rowNum: 5,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;rowList: [5,10,15],<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;sortorder: "asc",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;sortname: "Name",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;autowidth: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;height: "auto",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;altRows: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;loadonce: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;multiselect: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;loadtext: &#39;Loading groups...&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;xmlReader: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;root : "groups",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;row: "group",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;repeatitems: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;page: "groups&#62;page",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; total: "groups&#62;total",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; records:"groups&#62;records",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;id: "[id]"<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;});</p>
</p>
<p>// xml</p>
<p>&#60;?xml version="1.0" encoding="utf-8"?&#62;</p>
<p>&#60;groups&#62;<br />&#160; &#60;page&#62;1&#60;/page&#62;<br />&#160; &#60;total&#62;3&#60;/total&#62;<br />&#160; &#60;records&#62;12&#60;/records&#62;<br />&#160; &#60;group id="1"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Accounting&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Accounting Department&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;1&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="2"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Dev&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="3"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Finance&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Finance Department&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="4"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Group4&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="5"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Group5&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;</p>
<p>&#60;/groups&#62;</p>
]]></description>
        	        	<pubDate>Mon, 12 Apr 2010 17:37:03 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Unable to get paging working.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16355</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16355</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Where and how you try to add the additional parameters like page and etc.</p>
<p>Note the if you define them below the groups tag, the xmlReader should cnow this.</p>
<p>Suppose you have</p>
<p>...</p>
<p>&#60;groups&#62;</p>
<p>&#60;total&#62;1&#60;/total&#62;</p>
<p>...</p>
<p>&#60;/grops&#62;</p>
</p>
<p>The the xmlReader should look like this</p>
</p>
<p>xmlReader :{</p>
<p>...</p>
<p>total: "groups&#62;total",</p>
<p>..</p>
<p>}</p>
</p>
<p>Hope you got the point.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 12 Apr 2010 10:13:14 +0300</pubDate>
        </item>
        <item>
        	<title>dash on Unable to get paging working.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16285</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/unable-to-get-paging-working#p16285</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I add paging to books sample and it works just fine without the &#39;page&#39;,&#160;&#39;total&#39;, and &#39;records&#39; parameters.&#160;</p>
</p>
<p>&#60;table id=<em>"booksGrid"&#62;&#60;/table&#62;</em></p>
<p align="left"><em>&#60;div id=</em><em>"booksPager"&#62;&#60;/div&#62;</em></p>
<p>jQuery("#booksGrid").jqGrid({</p>
<p>url: &#39;BooksGrid&#39;,</p>
<p>datatype: "xml",</p>
<p>colNames:["Author","Title", "Price", "Published Date"],</p>
<p>colModel:[</p>
<p>{name:"Author",index:"Author", width:120, xmlmap:"ItemAttributes&#62;Author"},</p>
<p>{name:"Title",index:"Title", width:180,xmlmap:"ItemAttributes&#62;Title"},</p>
<p>{name:"Price",index:"Manufacturer", width:100, align:"right",xmlmap:"ItemAttributes&#62;Price", sorttype:"float"},</p>
<p>{name:"DatePub",index:"ProductGroup", width:130,xmlmap:"ItemAttributes&#62;DatePub",sorttype:"date"}</p>
<p>],</p>
<p>height:250,</p>
<p>rowNum:10,</p>
<p>rowList:[10,20,30, 40],</p>
<p>viewrecords: true,</p>
<p>loadonce: true,</p>
<p>pager: &#39;#booksPager&#39;,</p>
<p>multiselect: true,</p>
<p>xmlReader: {</p>
<p>root : "Items",</p>
<p>row: "Item",</p>
<p>repeatitems: false,</p>
<p>id: "ASIN"</p>
<p>}</p>
<p>});</p>
</p>
<p>// even though the data contains only 2&#160;items, the paging works&#160;ok.&#160;</p>
<p>&#60;?xml version="1.0" encoding="UTF-8"?&#62;&#60;Books&#62; &#60;Items&#62; &#60;Request&#62; &#60;IsValid&#62;True&#60;/IsValid&#62; &#60;ItemSearchRequest&#62; &#60;SearchIndex&#62;Books&#60;/SearchIndex&#62; &#60;/ItemSearchRequest&#62; &#60;/Request&#62; &#60;Item&#62; &#60;DetailPageURL&#62;&#60;/DetailPageURL&#62; &#60;ItemAttributes&#62; &#60;Author&#62;John Grisham&#60;/Author&#62; &#60;Title&#62;A Time to Kill&#60;/Title&#62; &#60;Price&#62;12.99&#60;/Price&#62; &#60;DatePub&#62;1998-05-01&#60;/DatePub&#62; &#60;ASIN&#62;0446351230&#60;/ASIN&#62; &#60;/ItemAttributes&#62; &#60;/Item&#62; &#60;Item&#62; &#60;DetailPageURL&#62;&#60;/DetailPageURL&#62; &#60;ItemAttributes&#62; &#60;Author&#62;Stephen King&#60;/Author&#62; &#60;Title&#62;Blood and Smoke&#60;/Title&#62; &#60;Price&#62;24.00&#60;/Price&#62; &#60;DatePub&#62;2000-01-01&#60;/DatePub&#62; &#60;ASIN&#62;0446355453&#60;/ASIN&#62; &#60;/ItemAttributes&#62; &#60;/Item&#62; &#60;/Items&#62;&#60;/Books&#62;</p>
</p>
<p>But,&#160;I can&#39;t get paging working on the&#160;similar code below.&#160; I get&#160;&#39;b.jgrid.formatter.integer&#39; is null or not an object error.&#160; I also tried adding page, total, and records, that mentioned in other help topics, but the same error occurs.&#160; Any help&#160;is&#160;greatly appreciated.</p>
</p>
<p>// js includes</p>
<p align="left"><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#60;link</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">rel=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"stylesheet"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">type=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"text/css"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">media=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"screen"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">href=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"jQuery/themes/redmond/ui.all.css"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">/&#62;</span></span></p>
<p><span style="font-size: x-small;"></span></p>
<p align="left">&#160;</p>
</p>
<p align="left"><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#60;link</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">rel=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"stylesheet"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">type=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"text/css"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">media=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"screen"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">href=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"/jQuery/themes/jqGrid/ui.jqgrid.css"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">/&#62;</span></span></p>
<p><span style="font-size: x-small;"></span></p>
<p align="left">&#160;</p>
<p align="left">&#160;</p>
</p>
<p align="left"><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#60;script</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">src=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"jQuery/jquery-1.4.2.min.js"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">type=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"text/javascript"</span></span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#62;&#60;/script&#62;</span></span></p>
<p><span style="font-size: x-small;"></span></p>
<p align="left">&#160;</p>
</p>
<p align="left"><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#60;script</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">src=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"jQuery/grid.locale-en.js"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">type=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"text/javascript"</span></span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#62;&#60;/script&#62;</span></span></p>
<p align="left"><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#60;script</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">src=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"jqGrid-3.6.4/jquery.jqGrid.min.js"</span></span><span style="font-size: x-small;"> </span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">type=</span></span><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">"text/javascript"</span></span><span style="color: #000080; font-size: x-small;"><span style="color: #000080; font-size: x-small;">&#62;&#60;/script&#62;</span></span></span></span></p>
</p>
<p>// jqGrid code</p>
<p align="left">&#60;table id="groupsGrid"&#62;&#60;/table&#62;</p>
<p align="left">&#60;div id="groupsGridPager"&#62;&#60;/div&#62;</p>
</p>
<p>$(document).ready(function () {</p>
<p>$("#groupsGrid").jqGrid({</p>
<p>url: &#39;getGroups.do&#39;,</p>
<p>datatype: "xml",</p>
<p>colNames:["Name", "Description", "Default", "Modify", "Delete"],</p>
<p>colModel:[</p>
<p>{name:"Name", index:"Name", width:150, align:"center", xmlmap:"name"},</p>
<p>{name:"Description", index:"Description", width:150, align:"center", xmlmap:"description"},</p>
<p>{name:"IsDefault", index:"IsDefault", width:40, align:"center", formatter:yesNoFormatter, xmlmap:"isDefault"},</p>
<p>{name:"EditImage", index:"EditImage", width:110, align:"center", formatter:editImageFormatter},</p>
<p>{name:"DeleteImage", index:"DeleteImage", width:110, align:"center", formatter:deleteImageFormatter}</p>
<p>],</p>
<p>rowNum: 10,</p>
<p>rowList:[10,20,30],</p>
<p>viewrecords: true,</p>
<p>autowidth: true,</p>
<p>height: "auto",</p>
<p>altRows: true,</p>
<p>loadonce: true,</p>
<p>pager: &#39;#groupsGridPager&#39;,</p>
<p>multiselect: true,</p>
<p>loadtext: &#39;Loading groups...&#39;,</p>
<p>xmlReader: {</p>
<p>root : "groups",</p>
<p>row: "group",</p>
<p>repeatitems: false,</p>
<p>id: "[id]"</p>
<p>}</p>
<p>});</p>
<p>});</p>
<p align="left">&#160;</p>
<p align="left">// data</p>
<p align="left">&#60;?xml version="1.0" encoding="utf-8"?&#62;<br />&#60;groups&#62;<br />&#160; &#60;group id="1"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Accounting&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Accounting Department&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;1&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="2"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Dev&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="3"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Finance&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Finance Department&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="4"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Group3&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="5"&#62;<br />&#160;&#160;&#160; &#60;name&#62;Group4&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="6"&#62;<br />&#160;&#160;&#160; &#60;name&#62;HR&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="7"&#62;<br />&#160;&#160;&#160; &#60;name&#62;aa&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#160; &#60;group id="8"&#62;<br />&#160;&#160;&#160; &#60;name&#62;abc&#60;/name&#62;<br />&#160;&#160;&#160; &#60;description&#62;Created to test the createGroup feature&#60;/description&#62;<br />&#160;&#160;&#160; &#60;isDefault&#62;0&#60;/isDefault&#62;<br />&#160; &#60;/group&#62;<br />&#60;/groups&#62;</p>
]]></description>
        	        	<pubDate>Thu, 08 Apr 2010 01:42:49 +0300</pubDate>
        </item>
</channel>
</rss>