<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JQuery Plugin: imPagePopulate</title>
	<atom:link href="http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/feed/" rel="self" type="application/rss+xml" />
	<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/</link>
	<description>Ajax and Ajax Frameworks</description>
	<lastBuildDate>Fri, 17 Feb 2012 21:45:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Top 10 jQuery Database Plugins &#124; jQuery4u</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-1853</link>
		<dc:creator>Top 10 jQuery Database Plugins &#124; jQuery4u</dc:creator>
		<pubDate>Sun, 02 Oct 2011 09:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-1853</guid>
		<description>[...]   [...]</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>[...]   [...]<br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-1698</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Wed, 26 Jan 2011 05:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-1698</guid>
		<description>It&#039;s a nice idea, but the hassle of filling out those &quot;maps&quot; is almost as big a pain as just manually selecting the elements you want and setting the value. Not seeing any really great advantage here.

When I want something to auto populate, I don&#039;t want to have to think about the structure or the mapping of the names of the fields IF I don&#039;t have to. (e.g if the db field names and form field names are the same) 

Ultimately, I want to shove some json into an element with a single line of code like $(&#039;#myform&#039;).autopopulate(json) and be done with it.</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>It&#8217;s a nice idea, but the hassle of filling out those &#8220;maps&#8221; is almost as big a pain as just manually selecting the elements you want and setting the value. Not seeing any really great advantage here.</p>
<p>When I want something to auto populate, I don&#8217;t want to have to think about the structure or the mapping of the names of the fields IF I don&#8217;t have to. (e.g if the db field names and form field names are the same) </p>
<p>Ultimately, I want to shove some json into an element with a single line of code like $(&#8216;#myform&#8217;).autopopulate(json) and be done with it.<br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fajar</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-59</link>
		<dc:creator>Fajar</dc:creator>
		<pubDate>Sat, 11 Apr 2009 04:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-59</guid>
		<description>Hi,

Just continue sharing.

When you have problem in checkbox value form post because it override by previous action value that couldn&#039;t simply reset by just click or call form reset using javascript, you can consider using this code for override my previous code post

&lt;code&gt;
$(&quot;:checkbox[name=&quot; + itm.name +&quot;]&quot;, $this).each(function() {

var cb = $(this).val();
if(cb == fieldVal){
   $(this).attr(&quot;checked&quot;, &quot;checked&quot;);

}

fieldVal = cb; // reset checkbox value so like the original form value setting
});

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>Hi,</p>
<p>Just continue sharing.</p>
<p>When you have problem in checkbox value form post because it override by previous action value that couldn&#8217;t simply reset by just click or call form reset using javascript, you can consider using this code for override my previous code post</p>
<p><code><br />
$(":checkbox[name=" + itm.name +"]", $this).each(function() {</p>
<p>var cb = $(this).val();<br />
if(cb == fieldVal){<br />
   $(this).attr("checked", "checked");</p>
<p>}</p>
<p>fieldVal = cb; // reset checkbox value so like the original form value setting<br />
});</p>
<p></code><br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fajar</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-50</link>
		<dc:creator>Fajar</dc:creator>
		<pubDate>Wed, 08 Apr 2009 08:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-50</guid>
		<description>Hi,

Just suggestion, in function populatePage(data, db_map)
add approx on line 113
&lt;code&gt;
$(&quot;:checkbox[name=&quot; + itm.name +&quot;]&quot;, $this).each(function() {

	if ($(this).val() == fieldVal) {

		$(this).attr(&quot;checked&quot;, &quot;checked&quot;);

	}

});

&lt;/code&gt;
it use for populate checkbox that not build by db using sub_map, I just found this because I need to populate checkbox but always fail until I read the script for find what make that not like my expect.

Thanks again for make this plugin available :)</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>Hi,</p>
<p>Just suggestion, in function populatePage(data, db_map)<br />
add approx on line 113<br />
<code><br />
$(":checkbox[name=" + itm.name +"]", $this).each(function() {</p>
<p>	if ($(this).val() == fieldVal) {</p>
<p>		$(this).attr("checked", "checked");</p>
<p>	}</p>
<p>});</p>
<p></code><br />
it use for populate checkbox that not build by db using sub_map, I just found this because I need to populate checkbox but always fail until I read the script for find what make that not like my expect.</p>
<p>Thanks again for make this plugin available <img src='http://grasshopperpebbles.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fajar</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-47</link>
		<dc:creator>Fajar</dc:creator>
		<pubDate>Wed, 01 Apr 2009 02:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-47</guid>
		<description>Now I can find where is the wrong in my code for JSON data feed, it&#039;s awsome, thank you for the help and make this plugin available :)</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>Now I can find where is the wrong in my code for JSON data feed, it&#8217;s awsome, thank you for the help and make this plugin available <img src='http://grasshopperpebbles.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-46</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 31 Mar 2009 02:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-46</guid>
		<description>Fajar,
I placed a new download on Google Code. This file contains the imPopulatePage plugin and the geData.php file that I used in the demo. If you have problems after using the getData.php file, I will look at your code. Les.

&lt;a href=&quot;http://code.google.com/p/impagepopulate/&quot; rel=&quot;nofollow&quot;&gt;</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>Fajar,<br />
I placed a new download on Google Code. This file contains the imPopulatePage plugin and the geData.php file that I used in the demo. If you have problems after using the getData.php file, I will look at your code. Les.</p>
<p><a href="http://code.google.com/p/impagepopulate/" rel="nofollow"><br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end --><br />
</a></p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fajar</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-45</link>
		<dc:creator>Fajar</dc:creator>
		<pubDate>Tue, 31 Mar 2009 01:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-45</guid>
		<description>May get help from you to examine my testing file especially for data feed because although I have use and make my code like your example page (http://grasshopperpebbles.com/demos/jquery_plugins/imPagePopulate/basic.html) as trial in my localhost I still can&#039;t have result like the expect, hope I don&#039;t bother you about this, Where I can sent the file if you don&#039;t mind? I just wondering where is my fault.

Best regard,</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>May get help from you to examine my testing file especially for data feed because although I have use and make my code like your example page (<a href="http://grasshopperpebbles.com/demos/jquery_plugins/imPagePopulate/basic.html" rel="nofollow">http://grasshopperpebbles.com/demos/jquery_plugins/imPagePopulate/basic.html</a>) as trial in my localhost I still can&#8217;t have result like the expect, hope I don&#8217;t bother you about this, Where I can sent the file if you don&#8217;t mind? I just wondering where is my fault.</p>
<p>Best regard,<br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-44</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 30 Mar 2009 12:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-44</guid>
		<description>Fajar,
The &lt;a href=&quot;http://grasshopperpebbles.com/demos/&quot; rel=&quot;nofollow&quot;&gt;demo&lt;/a&gt; section shows examples of all my plugins. The demos for imPagePopulate display the result set for each example.</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>Fajar,<br />
The <a href="http://grasshopperpebbles.com/demos/" rel="nofollow">demo</a> section shows examples of all my plugins. The demos for imPagePopulate display the result set for each example.<br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fajar</title>
		<link>http://grasshopperpebbles.com/ajax/jquery-plugin-impagepopulate/#comment-43</link>
		<dc:creator>Fajar</dc:creator>
		<pubDate>Mon, 30 Mar 2009 08:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://grasshopperpebbles.com/?p=71#comment-43</guid>
		<description>Hi..

I think this is nice plugin and I am need it as entry way to go more deep to learn about using jquery and it&#039;s available plugin.

I have a question as newbie because a still confuse and still failure to use this plugin. Can you give me simple example code for get_data.php file that will be need for feed to the form (data_url: &#039;get_data.php&#039;)

Thankyou in advanced.</description>
		<content:encoded><![CDATA[<div class="KonaBody">
<!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>Hi..</p>
<p>I think this is nice plugin and I am need it as entry way to go more deep to learn about using jquery and it&#8217;s available plugin.</p>
<p>I have a question as newbie because a still confuse and still failure to use this plugin. Can you give me simple example code for get_data.php file that will be need for feed to the form (data_url: &#8216;get_data.php&#8217;)</p>
<p>Thankyou in advanced.<br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end -->
</p>
</div>
<p> <!-- KonaBody --></p>
]]></content:encoded>
	</item>
</channel>
</rss>

