<?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: Light Bulb "ON" after playing with MSDN sample books.xml</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/light-bulb-on-after-playing-with-msdn-sample-books-xml</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/light-bulb-on-after-playing-with-msdn-sample-books-xml/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Energetic Pixels on Light Bulb "ON" after playing with MSDN sample books.xml</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/light-bulb-on-after-playing-with-msdn-sample-books-xml#p16728</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/light-bulb-on-after-playing-with-msdn-sample-books-xml#p16728</guid>
        	        	<description><![CDATA[<p>Tony,</p>
</p>
<p>&#160;&#160; I played with it over the weekend here.&#160; Finally figured it out.&#160; What a headache!&#160; Thanks for the tip.</p>
</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 26 Apr 2010 22:15:10 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Light Bulb "ON" after playing with MSDN sample books.xml</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/light-bulb-on-after-playing-with-msdn-sample-books-xml#p16693</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/light-bulb-on-after-playing-with-msdn-sample-books-xml#p16693</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>In your example repeatitems is set to true. In order to work set it to false and set the id to be attribute:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1013' value='Select Code' data-codeid='sfcode1013' /></p>
<div class='sfcode' id='sfcode1013'>
<p>xmlReader: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;root : "catalog",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;row: "book",<br />&#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;cell:"invcell",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;id:"[numbr]"<br />},</p>
</div>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 26 Apr 2010 14:36:39 +0300</pubDate>
        </item>
        <item>
        	<title>Energetic Pixels on Light Bulb "ON" after playing with MSDN sample books.xml</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/light-bulb-on-after-playing-with-msdn-sample-books-xml#p16629</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/light-bulb-on-after-playing-with-msdn-sample-books-xml#p16629</guid>
        	        	<description><![CDATA[</p>
<p>I finally was able to put into reality what the documentation is saying about xmlReader&#39;s repeatitems option.&#160;</p>
</p>
<p>If you have the repeatitems set to true, this takes over the presentation of data &#8211; no matter what you have stated in the colModel.&#160; See my sample code below.&#160; If you have repeatitems set to true, you MUST include the cell option in xmlReader, otherwise there is no data rendered.</p>
</p>
<p>This all came about while trying to get my own static xml file to render in jqGrid.&#160; Nothing was working.&#160; So I went back and started trail/error testing with a sample xml file (MSDN).</p>
</p>
<p>Here is my jqGrid script:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1810' value='Select Code' data-codeid='sfcode1810' /></p>
<div class='sfcode' id='sfcode1810'>$(&#39;#searchResults&#39;).jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;weaponLib/booksSampleXML_work.xml&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#39;xml&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames:[&#34;Author&#34;,&#34;Title&#34;, &#34;Price&#34;, &#34;Description&#34;],<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel:[<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#34;Author&#34;,index:&#34;Author&#34;, width:90, xmlmap:&#34;author&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#34;Title&#34;,index:&#34;Title&#34;, width:120,xmlmap:&#34;title&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#34;Price&#34;,index:&#34;Price&#34;, width:65, align:&#34;right&#34;,xmlmap:&#34;price&#34;, sorttype:&#34;float&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#34;Description&#34;,index:&#34;Description&#34;, width:100, align:&#34;left&#34;,xmlmap:&#34;description&#34;}<br />&#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;height:250,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;width: 750,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rowNum:10,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rowList:[10,20,30],<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;loadonce: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;xmlReader: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;root : &#34;catalog&#34;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;row: &#34;book&#34;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;repeatitems: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;cell:&#34;invcell&#34;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;id:&#34;numbr&#34;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;caption: &#34;Chemical Weapon Results&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#gridNavBar&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</div>
<p>here is the sample xml file:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9148' value='Select Code' data-codeid='sfcode9148' /></p>
<div class='sfcode' id='sfcode9148'>&#60;catalog&#62;<br />&#160;&#160; &#60;book numbr=&#39;1&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Gambardella, Matthew&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;XML Developer&#39;s Guide&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Computer&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;44.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Wrox&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-10-01&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;An in-depth look at creating applications <br />&#160;&#160;&#160;&#160;&#160; with XML.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;2&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Ralls, Kim&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Midnight Rain&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Fantasy&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;5.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;PackIt&#60;/name&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;publish_date&#62;2000-12-16&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;A former architect battles corporate zombies, <br />&#160;&#160;&#160;&#160;&#160; an evil sorceress, and her own childhood to become queen <br />&#160;&#160;&#160;&#160;&#160; of the world.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;3&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Corets, Eva&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Maeve Ascendant&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Fantasy&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;5.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;PackIt&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-11-17&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;After the collapse of a nanotechnology <br />&#160;&#160;&#160;&#160;&#160; society in England, the young survivors lay the <br />&#160;&#160;&#160;&#160;&#160; foundation for a new society.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;4&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Corets, Eva&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Oberon&#39;s Legacy&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Fantasy&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;5.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Wrox&#60;/name&#62;<br />&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2001-03-10&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;In post-apocalypse England, the mysterious <br />&#160;&#160;&#160;&#160;&#160; agent known only as Oberon helps to create a new life <br />&#160;&#160;&#160;&#160;&#160; for the inhabitants of London. Sequel to Maeve <br />&#160;&#160;&#160;&#160;&#160; Ascendant.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;5&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Corets, Eva&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;The Sundered Grail&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Fantasy&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;5.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Focal Press&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2001-09-10&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;The two daughters of Maeve, half-sisters, <br />&#160;&#160;&#160;&#160;&#160; battle one another for control of England. Sequel to <br />&#160;&#160;&#160;&#160;&#160; Oberon&#39;s Legacy.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;6&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Randall, Cynthia&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Lover Birds&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Romance&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;4.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Sybex&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-09-02&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;When Carla meets Paul at an ornithology <br />&#160;&#160;&#160;&#160;&#160; conference, tempers fly as feathers get ruffled.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;7&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Thurman, Paula&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Splish Splash&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Romance&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;4.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Wrox&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-11-02&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;A deep sea diver finds true love twenty <br />&#160;&#160;&#160;&#160;&#160; thousand leagues beneath the sea.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;8&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Knorr, Stefan&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Creepy Crawlies&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Horror&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;4.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;PackIt&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-12-06&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;An anthology of horror stories about roaches,<br />&#160;&#160;&#160;&#160;&#160; centipedes, scorpions&#160; and other insects.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;9&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Kress, Peter&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Paradox Lost&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Science Fiction&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;6.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Focal Press&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-11-02&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;After an inadvertant trip through a Heisenberg<br />&#160;&#160;&#160;&#160;&#160; Uncertainty Device, James Salway discovers the problems <br />&#160;&#160;&#160;&#160;&#160; of being quantum.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;10&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;O&#39;Brien, Tim&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Microsoft .NET: The Programming Bible&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Computer&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;36.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Focal Press&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-11-02&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;Microsoft&#39;s .NET initiative is explored in <br />&#160;&#160;&#160;&#160;&#160; detail in this deep programmer&#39;s reference.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;11&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;O&#39;Brien, Tim&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;MSXML3: A Comprehensive Guide&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Computer&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;36.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Focal Press&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-11-02&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;The Microsoft MSXML3 parser is covered in <br />&#160;&#160;&#160;&#160;&#160; detail, with attention to XML DOM interfaces, XSLT processing, <br />&#160;&#160;&#160;&#160;&#160; SAX and more.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#160;&#160; &#60;book numbr=&#39;12&#39;&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;author&#62;Galos, Mike&#60;/author&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;title&#62;Visual Studio 7: A Comprehensive Guide&#60;/title&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;genre&#62;Computer&#60;/genre&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;price&#62;49.95&#60;/price&#62;<br />&#160;&#160; &#160;&#60;publisher&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;name&#62;Sybex&#60;/name&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;publish_date&#62;2000-11-02&#60;/publish_date&#62;<br />&#160;&#160; &#160;&#60;/publisher&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;1&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;2&#60;/invcell&#62;<br />&#160;&#160; &#160;&#60;invcell&#62;3&#60;/invcell&#62;<br />&#160;&#160;&#160;&#160; &#160;<br />&#160;&#160;&#160;&#160;&#160; &#60;description&#62;Microsoft Visual Studio 7 is explored in depth,<br />&#160;&#160;&#160;&#160;&#160; looking at how Visual Basic, Visual C++, C#, and ASP+ are <br />&#160;&#160;&#160;&#160;&#160; integrated into a comprehensive development <br />&#160;&#160;&#160;&#160;&#160; environment.&#60;/description&#62;<br />&#160;&#160; &#60;/book&#62;<br />&#60;/catalog&#62;</div></p>
]]></description>
        	        	<pubDate>Fri, 23 Apr 2010 17:15:19 +0300</pubDate>
        </item>
</channel>
</rss>