<?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: Ajaxed PHP Datagrid: Eyesis Data Grid Control</title>
	<atom:link href="http://www.webresourcesdepot.com/ajaxed-php-datagrid-eyesis-data-grid-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webresourcesdepot.com/ajaxed-php-datagrid-eyesis-data-grid-control/</link>
	<description>Free Web Resources</description>
	<lastBuildDate>Sun, 12 Feb 2012 08:29:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: unu</title>
		<link>http://www.webresourcesdepot.com/ajaxed-php-datagrid-eyesis-data-grid-control/comment-page-1/#comment-427343</link>
		<dc:creator>unu</dc:creator>
		<pubDate>Tue, 08 Nov 2011 00:50:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=672#comment-427343</guid>
		<description>use where condition for example

$x-&gt;setQuery(&quot;*&quot;, &quot;people&quot;, &#039;Id&#039;,&quot;Id &gt; 1&quot;);</description>
		<content:encoded><![CDATA[<p>use where condition for example</p>
<p>$x-&gt;setQuery(&#8220;*&#8221;, &#8220;people&#8221;, &#8216;Id&#8217;,&#8221;Id &gt; 1&#8243;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damon</title>
		<link>http://www.webresourcesdepot.com/ajaxed-php-datagrid-eyesis-data-grid-control/comment-page-1/#comment-396111</link>
		<dc:creator>Damon</dc:creator>
		<pubDate>Wed, 14 Sep 2011 06:24:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=672#comment-396111</guid>
		<description>I cant get this to work... ideas?

http://localhost/index.php?tbl=table1

$tbl = $_GET[&quot;tbl&quot;];
$x-&gt;setQuery(&quot;*&quot;, &quot;$tbl&quot;);

tried with and without the quotes etc.</description>
		<content:encoded><![CDATA[<p>I cant get this to work&#8230; ideas?</p>
<p><a href="http://localhost/index.php?tbl=table1" rel="nofollow">http://localhost/index.php?tbl=table1</a></p>
<p>$tbl = $_GET["tbl"];<br />
$x-&gt;setQuery(&#8220;*&#8221;, &#8220;$tbl&#8221;);</p>
<p>tried with and without the quotes etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damon</title>
		<link>http://www.webresourcesdepot.com/ajaxed-php-datagrid-eyesis-data-grid-control/comment-page-1/#comment-396094</link>
		<dc:creator>Damon</dc:creator>
		<pubDate>Wed, 14 Sep 2011 05:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=672#comment-396094</guid>
		<description>This snippet will expand filtering options:

file: class.eyedatagrid.inc.php 

if ($this-&gt;allow_filters and $this-&gt;filter)
                {
                        if (strstr($this-&gt;filter[&#039;Value&#039;], &#039;%&#039;)) {
                                $filter_value = &#039;&#039; . $this-&gt;filter[&#039;Value&#039;] . &#039;&#039;;
                                $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` LIKE &#039;&quot; . $filter_value . &quot;&#039;)&quot;;

                        } elseif (strstr($this-&gt;filter[&#039;Value&#039;], &#039;filter[&#039;Value&#039;] . &#039;&#039;;
                                $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` &quot; . $filter_value . &quot;)&quot;;

                        } elseif (strstr($this-&gt;filter[&#039;Value&#039;], &#039;&gt; &#039;)) {
                                $filter_value = &#039;&#039; . $this-&gt;filter[&#039;Value&#039;] . &#039;&#039;;
                                $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` &quot; . $filter_value . &quot;)&quot;;

                        } elseif (strstr($this-&gt;filter[&#039;Value&#039;], &#039;=&gt;&#039;)) { 
                                $filter_value = &#039;&#039; . str_replace(&#039;=&gt;&#039;,&#039;&gt;=&#039;, $this-&gt;filter[&#039;Value&#039;]) . &#039;&#039;;
                                $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` &quot; . $filter_value . &quot;)&quot;;

                        } elseif (strstr($this-&gt;filter[&#039;Value&#039;], &#039;=&lt;&#039;)) {
                                $filter_value = &#039;&#039; . str_replace(&#039;=&lt;&#039;,&#039;filter[&#039;Value&#039;]) . &#039;&#039;;
                                $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` &quot; . $filter_value . &quot;)&quot;;

                        } elseif (strstr($this-&gt;filter[&#039;Value&#039;], &#039;filter[&#039;Value&#039;] . &#039;&#039;;
                                $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` &quot; . $filter_value . &quot;)&quot;;

                        } elseif (strstr($this-&gt;filter[&#039;Value&#039;], &#039;&gt;=&#039;)) {
                                $filter_value = &#039;&#039; . $this-&gt;filter[&#039;Value&#039;] . &#039;&#039;;
                                $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` &quot; . $filter_value . &quot;)&quot;;

                        } else {
                                 $filter_value = &#039;&#039; . $this-&gt;filter[&#039;Value&#039;] . &#039;&#039;;
                                 $filter_query .= &quot;(`&quot; . $this-&gt;filter[&#039;Column&#039;] . &quot;` = &#039;&quot; . $filter_value . &quot;&#039;)&quot;;
                        }


                        if ($this-&gt;select_where)
                                $filter_query = $filter_query . &quot; AND &quot;;

                }</description>
		<content:encoded><![CDATA[<p>This snippet will expand filtering options:</p>
<p>file: class.eyedatagrid.inc.php </p>
<p>if ($this-&gt;allow_filters and $this-&gt;filter)<br />
                {<br />
                        if (strstr($this-&gt;filter['Value'], &#8216;%&#8217;)) {<br />
                                $filter_value = &#8221; . $this-&gt;filter['Value'] . &#8221;;<br />
                                $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` LIKE &#8216;&#8221; . $filter_value . &#8220;&#8216;)&#8221;;</p>
<p>                        } elseif (strstr($this-&gt;filter['Value'], &#8216;filter['Value'] . &#8221;;<br />
                                $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` &#8221; . $filter_value . &#8220;)&#8221;;</p>
<p>                        } elseif (strstr($this-&gt;filter['Value'], &#8216;&gt; &#8216;)) {<br />
                                $filter_value = &#8221; . $this-&gt;filter['Value'] . &#8221;;<br />
                                $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` &#8221; . $filter_value . &#8220;)&#8221;;</p>
<p>                        } elseif (strstr($this-&gt;filter['Value'], &#8216;=&gt;&#8217;)) {<br />
                                $filter_value = &#8221; . str_replace(&#8216;=&gt;&#8217;,'&gt;=&#8217;, $this-&gt;filter['Value']) . &#8221;;<br />
                                $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` &#8221; . $filter_value . &#8220;)&#8221;;</p>
<p>                        } elseif (strstr($this-&gt;filter['Value'], &#8216;=&lt;&#039;)) {<br />
                                $filter_value = &#039;&#039; . str_replace(&#039;=&lt;&#039;,&#039;filter['Value']) . &#8221;;<br />
                                $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` &#8221; . $filter_value . &#8220;)&#8221;;</p>
<p>                        } elseif (strstr($this-&gt;filter['Value'], &#8216;filter['Value'] . &#8221;;<br />
                                $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` &#8221; . $filter_value . &#8220;)&#8221;;</p>
<p>                        } elseif (strstr($this-&gt;filter['Value'], &#8216;&gt;=&#8217;)) {<br />
                                $filter_value = &#8221; . $this-&gt;filter['Value'] . &#8221;;<br />
                                $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` &#8221; . $filter_value . &#8220;)&#8221;;</p>
<p>                        } else {<br />
                                 $filter_value = &#8221; . $this-&gt;filter['Value'] . &#8221;;<br />
                                 $filter_query .= &#8220;(`&#8221; . $this-&gt;filter['Column'] . &#8220;` = &#8216;&#8221; . $filter_value . &#8220;&#8216;)&#8221;;<br />
                        }</p>
<p>                        if ($this-&gt;select_where)<br />
                                $filter_query = $filter_query . &#8221; AND &#8220;;</p>
<p>                }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stawl</title>
		<link>http://www.webresourcesdepot.com/ajaxed-php-datagrid-eyesis-data-grid-control/comment-page-1/#comment-174514</link>
		<dc:creator>Stawl</dc:creator>
		<pubDate>Fri, 16 Jul 2010 14:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=672#comment-174514</guid>
		<description>It&#039;s an amazing tool, sadly doesn&#039;t seem to read á à ê ô etc... If anyone has a clue on how to read them please tell me.</description>
		<content:encoded><![CDATA[<p>It&#8217;s an amazing tool, sadly doesn&#8217;t seem to read á à ê ô etc&#8230; If anyone has a clue on how to read them please tell me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using wincache
Page Caching using wincache (User agent is rejected)
Database Caching using wincache

Served from: www.webresourcesdepot.com @ 2012-02-13 03:39:30 -->
