<?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: datepicker imageButton not appearing </title>
	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing</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/datepicker-imagebutton-not-appearing/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>DavidT on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p16546</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p16546</guid>
        	        	<description><![CDATA[<p>Was this properly sorted?</p>
<p>I&#39;m trying to do the same thing now and my jqGrid code includes:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5535' value='Select Code' data-codeid='sfcode5535' /></p>
<div class='sfcode' id='sfcode5535'>&#160;&#160;&#160;&#160;&#160; {name:&#39;InvID&#39;, xmlmap:&#34;EntryAttributes&#62;InvID&#34;, index:&#39;InvID&#39;, hidden:true}, <br />&#160;&#160;&#160;&#160;&#160; {name:&#39;InvDate&#39;, xmlmap:&#34;EntryAttributes&#62;InvDate&#34;, index:&#39;InvDate&#39;, width:90, sorttype:&#39;date&#39;, datefmt:&#39;d-m-Y&#39;,editable:true,editoptions:{size:10, dataInit:function(el){ jQuery(el).datepicker({dateFormat:&#39;dd/mm/yy&#39;, buttonImage: &#39;/images/calendar.png&#39;, buttonImageOnly: true, autoPopUp: &#39;button&#39;}); }, defaultValue: function(){ var currentTime = new Date(); var month = parseInt(currentTime.getMonth() + 1); month = month &#60;= 9 ? &#34;0&#34;+month : month; var day = currentTime.getDate(); day = day &#60;= 9 ? &#34;0&#34;+day : day; var year = currentTime.getFullYear(); return year+&#34;-&#34;+month + &#34;-&#34;+day; } }, formoptions:{ rowpos:1, elmprefix:&#34;&#34;,elmsuffix:&#34;&#34; }, editrules:{required:true} },</div>
<p>Adding "showOn" just stops it from working at all.</p>
<p>Thanks</p>
]]></description>
        	        	<pubDate>Mon, 19 Apr 2010 22:11:08 +0300</pubDate>
        </item>
        <item>
        	<title>DRHansen on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10094</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10094</guid>
        	        	<description><![CDATA[<p>Tim,</p>
<p>I never could get the datepicker to work using <strong>afterEditCell</strong>.&#160; However, I did get the functionallity I wanted using <strong>beforeShowForm</strong> in the navGrid() edit and add sections.</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5088' value='Select Code' data-codeid='sfcode5088' /></p>
<div class='sfcode' id='sfcode5088'>.navGrid(&#39;#MPSS_pager&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { edit: true, add: true, del: true, refresh: true,&#160; search: true, view: true },<br /> /* edit */&#160;&#160;&#160;&#160; { top: 0, left: 100, width: 450,&#160; savekey: [true, 13], closeOnEscape: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; beforeShowForm: function( formId) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &#160; $(&#39;.MPSS-Date&#39;)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &#160; .datepicker({ duration: &#39;&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; changeMonth: true, changeYear: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; closeText: &#39;Cancel&#39;, currentText: &#39;Today&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; yearRange: &#39;-3:+5&#39;, dateFormat: &#39;mm-dd-y&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; showButtonPanel: true, showOn: &#39;button&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; buttonImage: &#39;Images/calendar-icon.jpg&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; buttonImageOnly: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; onClose: function( sDate, dpInstance) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(this).focus();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },</div>
</p>
<p>I added the MPSS-Date class to the date form element after your example and used your CSS manipulation of the calendar icon (nice idea, thanks).</p>
<p>I&#39;m not sure this is the best way to get the job done, but it worked.</p>
<p>Thanks again,</p>
<p>DRH</p>
]]></description>
        	        	<pubDate>Thu, 24 Sep 2009 15:05:21 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10089</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10089</guid>
        	        	<description><![CDATA[<p>* note &#8211; I only used&#160; the &#8220;<code>.embed"</code> to put the calendar image into the input box rather than aside it.</p>
<p>you don&#39;t require this.</p>
<p>* the onClose function just resets focus on the input box so that users can hit enter to save and move on.</p>
<p>if you need help let me know <img class="wp-smiley" src="/blog/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
]]></description>
        	        	<pubDate>Thu, 24 Sep 2009 12:03:58 +0300</pubDate>
        </item>
        <item>
        	<title>DRHansen on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10084</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10084</guid>
        	        	<description><![CDATA[<blockquote>
<p>tim said:</p>
<p>I&#39;ve left the working example up so that others can benefit (includes re-setting the focus).</p>
<p><a rel="nofollow" href="http://www.blackstag.com/json-example" target="_blank">http://www.blackstag.com/json-example</a></p>
<p>tim</p>
</p>
</blockquote>
<hr />
<p>Tim,</p>
<p>Had a little difficulty finding the example source.&#160; I didn&#39;t expect it in something called json.js. <img class="spSmiley" style="margin:0" title="Surprised" src="/blog/wp-content/forum-smileys/sf-surprised.gif" alt="Surprised" />&#160;&#160; Anyway, the source for the technique can be found in the json.js file using Firebug.&#160;</p>
<p>FWIW &#8211; this was  copied from Firebug&#39;s Net &#8211; Response tab (and formatted just a wee bit):</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2578' value='Select Code' data-codeid='sfcode2578' /></p>
<div class='sfcode' id='sfcode2578'><code>...</code><code><br />colNames: ["NAMES","DATE"],<br /></code><code> colModel: [{name: &#39;thing&#39;, index: &#39;thing&#39;, width: 220, hidden: false, sortable: false},<br /></code><code> {name: &#39;myDate&#39;, index: &#39;myDate&#39;, width: 120, sortable:true, datefmt:"m/d/Y", editrules</code><code>:{minValue:0, date:true},<br /></code><code> editable:true, sorttype:"date", editoptions:{class: &#39;embed&#39;}}],<br /></code><code> height: 300,<br /></code><code> width:  400,<br /></code><code> </code><code>afterEditCell: function (id, name, value, iRow, iCol) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;#&#39;+iRow+&#39;_&#39;+&#39;myDate&#39;)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .datepicker( { dateFormat:&#39;mm/dd/yy&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; showOn:&#39;button&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; buttonImage:&#39;/css/images/calendar.gif&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; buttonImageOnly:true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; onClose: function(d,e) { $(this).focus(); }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; );<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },</code><br />&#8230;</div>
<p>And maybe this from the example HTML</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2994' value='Select Code' data-codeid='sfcode2994' /></p>
<div class='sfcode' id='sfcode2994'><code>&#60;style type="text/css"&#62;<br />&#160; .ui-datepicker{ z-index:1200; }<br /></code><code>&#160; .embed + img { position: relative;  left: -20px; top: 3px;  z-index:1200;  }<br />&#60;/style&#62;<br /></code></div>
<p>Thanks for sharing the technique.  Now, to see if I can get it to work for me &#8230;</p>
<p>DRH</p>
]]></description>
        	        	<pubDate>Thu, 24 Sep 2009 10:22:40 +0300</pubDate>
        </item>
        <item>
        	<title>AdytmRO on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10069</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing/page-2#p10069</guid>
        	        	<description><![CDATA[<p>my yahoo messenger id is adytmro_wbc, if you want to instant talk with me.</p>
]]></description>
        	        	<pubDate>Thu, 24 Sep 2009 03:17:06 +0300</pubDate>
        </item>
        <item>
        	<title>AdytmRO on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10068</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10068</guid>
        	        	<description><![CDATA[<p>Sorry for not beying able to do the grid.</p>
<p>I;ve got lot of work to do ...</p>
<p>I have to do something like your grid today at work, but without date button (only date).</p>
<p>If i will do it .. i will try to implement the date button to see if it works.</p>
<p>I will post the code after i will do it.</p>
]]></description>
        	        	<pubDate>Thu, 24 Sep 2009 03:16:26 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10063</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10063</guid>
        	        	<description><![CDATA[<p>I&#39;ve left the working example up so that others can benefit (includes re-setting the focus).</p>
<p><a href="http://www.blackstag.com/json-example" rel="nofollow" target="_blank">http://www.blackstag.com/json-example</a></p>
<p>tim</p></p>
]]></description>
        	        	<pubDate>Wed, 23 Sep 2009 19:12:50 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10025</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10025</guid>
        	        	<description><![CDATA[<p>Thanks for helping.</p>
<p>I hope we can get this to work</p>
<p>tim<img class="spSmiley" style="margin:0" title="Laugh" src="/blog/wp-content/forum-smileys/sf-laugh.gif" alt="Laugh" /></p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 19:30:49 +0300</pubDate>
        </item>
        <item>
        	<title>AdytmRO on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10019</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10019</guid>
        	        	<description><![CDATA[<p>i will try to code a grid with datepicker and buton in the morning.</p>
<p>i will let you know if i managed to succesfully complete it.</p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 17:19:47 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10014</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10014</guid>
        	        	<description><![CDATA[<pre><code>* "{$(myDate)</code><code>.datepicker({dateFormat:&#39;dd/mm/yy&#39;,... "<br /> </code><br /><code>does not add the button image.</code><br /><code><br />* Removing "showOn" does not add the button image.<br /><br />None of these work...<br /><br /></code>"&#62; when set showOn in datepicker it does not work.."<br /><br />Are you saying there is no way to get this to work ?<br /><br />tim<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /></pre>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 13:44:19 +0300</pubDate>
        </item>
        <item>
        	<title>tony on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10011</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10011</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>when set showOn in datepicker it does not work. If you remove this option it will work. The problem is that the element is not inserted in the dom and datepicker does not know what to do - ie. where to put a image. Follow the solution of AdytmRO</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 13:07:25 +0300</pubDate>
        </item>
        <item>
        	<title>AdytmRO on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10010</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10010</guid>
        	        	<description><![CDATA[<pre><code>try this 😀<br /><br />{$(myDate)</code><code>.datepicker({dateFormat:&#39;dd/mm/yy&#39;, showOn:&#39;button&#39;, <br />buttonImage:&#39;css/images/calendar.gif&#39;, buttonImageOnly</code><code>:true})</code></pre>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 13:03:50 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10008</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10008</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<pre>&#62; "Please befor posting this youi chack all the docs and you your code is error free"</pre>
<p>I am trying to.</p>
</p>
<p>I removed "#list", but I did have it that way once before - and it&#39;s worse.</p>
<p>Now without "#list" -&#160; the editbox does not even open.</p>
<p>tim</p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 12:19:04 +0300</pubDate>
        </item>
        <item>
        	<title>tony on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10003</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10003</guid>
        	        	<description><![CDATA[<p>You do:</p>
<pre>$(&#39;#list&#39;,elem).datepicker(<br />Should be<br />$(elem).datepicker(...<br /><br />Please befor posting this youi chack all the docs and you your code is error free<br />Regards<br />Tony</pre>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 12:06:45 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10002</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10002</guid>
        	        	<description><![CDATA[<p>I have removed the last ",".</p>
<p>Still no image.</p>
<p>tim</p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 11:50:33 +0300</pubDate>
        </item>
        <item>
        	<title>tony on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10001</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10001</guid>
        	        	<description><![CDATA[<p>Adain</p>
<pre>....<br />&#160;width:  400,<br /> imgpath: &#39;css/sunny/images&#39;, <br /> caption: &#39;My Things!&#39;,  &#60;---ERROR HERE<br />});<br /><br /><br /></pre>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 11:47:08 +0300</pubDate>
        </item>
        <item>
        	<title>tony on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10000</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p10000</guid>
        	        	<description><![CDATA[<p>Sorry It seems that posting sometime code is difficult</p>
<p>Check your code You have at last line</p>
</p>
<pre>$(document).ready(function(){<br />    jQuery("#list").jqGrid({<br />	url: &#39;tree-json&#39;, <br />    datatype:&#39;json&#39;,<br />    forceFit:true,<br />    cellEdit:true,<br />    cellsubmit:&#39;remote&#39;,<br />    cellurl: &#39;budget-handler&#39;,<br />    treeGrid: true,<br />    ExpandColumn:&#39;thing&#39;,<br />    colNames: ["NAMES","DATE"],<br />    colModel: [{name: &#39;thing&#39;, index: &#39;thing&#39;, width: 220, hidden: false, sortable: false},<br />               {name: &#39;myDate&#39;, index: &#39;myDate&#39;, width: 120, sortable:true, datefmt:"d/m/Y", editrules:{minValue:0, date:true},<br />                editable:true, sorttype:"date", editoptions:{size:8, dataInit:function(elem){$(&#39;#list&#39;,elem).datepicker({dateFormat:&#39;dd/mm/yy&#39;, showOn:&#39;button&#39;, buttonImage:&#39;css/images/calendar.gif&#39;, buttonImageOnly:true});}}}<br />              ],<br />    height: 300,<br />    width:  400,<br />    imgpath: &#39;css/sunny/images&#39;, <br />    caption: &#39;My Things!&#39;, <strong>&#60;---- ERROR</strong><br />   });<br />});<br /></pre>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 11:46:20 +0300</pubDate>
        </item>
        <item>
        	<title>tony on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p9999</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p9999</guid>
        	        	<description><![CDATA[<p>Hello</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2168' value='Select Code' data-codeid='sfcode2168' /></p>
<div class='sfcode' id='sfcode2168'>
<pre>$(document).ready(function(){<br />    jQuery("#list").jqGrid({<br />	url: &#39;tree-json&#39;, <br />    datatype:&#39;json&#39;,<br />    forceFit:true,<br />    cellEdit:true,<br />    cellsubmit:&#39;remote&#39;,<br />    cellurl: &#39;budget-handler&#39;,<br />    treeGrid: true,<br />    ExpandColumn:&#39;thing&#39;,<br />    colNames: ["NAMES","DATE"],<br />    colModel: [{name: &#39;thing&#39;, index: &#39;thing&#39;, width: 220, hidden: false, sortable: false},<br />               {name: &#39;myDate&#39;, index: &#39;myDate&#39;, width: 120, sortable:true, datefmt:"d/m/Y", editrules:{minValue:0, date:true},<br />                editable:true, sorttype:"date", editoptions:{size:8, dataInit:function(elem){$(&#39;#list&#39;,elem).datepicker({dateFormat:&#39;dd/mm/yy&#39;, showOn:&#39;button&#39;, buttonImage:&#39;css/images/calendar.gif&#39;, buttonImageOnly:true});}}}<br />              ],<br />    height: 300,<br />    width:  400,<br />    imgpath: &#39;css/sunny/images&#39;, <br />    caption: &#39;My Things!&#39;, &#60;-------------- ERROR HERE<br />   });<br /></pre>
</div>
<p>});</p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 11:45:15 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p9996</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p9996</guid>
        	        	<description><![CDATA[<p>I created another example with just the datepicker using the same js files and it works.</p>
<p><a href="http://www.blackstag.com/example.html" rel="nofollow" target="_blank">http://www.blackstag.com/example.html</a></p>
<p>The only thing different is JqGrid, so It must be a problem with jqGrid.</p>
<p>Tony ? Any ideas ?</p>
<p>thanks,</p>
<p>tim</p></p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 11:11:14 +0300</pubDate>
        </item>
        <item>
        	<title>tim on datepicker imageButton not appearing </title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p9994</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/datepicker-imagebutton-not-appearing#p9994</guid>
        	        	<description><![CDATA[<p>I removed the dateFormat &#38; size on my local copy of that example and it didn&#39;t change anything.</p>
<p>Thanks,</p>
<p>tim</p>
]]></description>
        	        	<pubDate>Tue, 22 Sep 2009 10:44:47 +0300</pubDate>
        </item>
</channel>
</rss>