<?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: Version 0.6</title>
	<atom:link href="http://zfdatagrid.com/2010/02/04/version-0-6/feed/" rel="self" type="application/rss+xml" />
	<link>http://zfdatagrid.com/2010/02/04/version-0-6/</link>
	<description></description>
	<lastBuildDate>Mon, 09 Jan 2012 23:40:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: altivec</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-128</link>
		<dc:creator>altivec</dc:creator>
		<pubDate>Fri, 05 Mar 2010 19:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-128</guid>
		<description>I just sent you the email</description>
		<content:encoded><![CDATA[<p>I just sent you the email</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-127</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Fri, 05 Mar 2010 18:49:40 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-127</guid>
		<description>Hi,

Yes, I would really appreciate it.

You can send that to  geral[that symbol]petala-azul.com

Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Yes, I would really appreciate it.</p>
<p>You can send that to  geral[that symbol]petala-azul.com</p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: altivec</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-126</link>
		<dc:creator>altivec</dc:creator>
		<pubDate>Fri, 05 Mar 2010 18:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-126</guid>
		<description>Hi, yes, the sample project works as it.
I had to change some things to apply to my zend website because of zend layout, and module way.

What is strange is that I can&#039;t even get some code result, nothing, only blank page...
I can show you my code and the website if you want.

Thanks,

Aurélien.</description>
		<content:encoded><![CDATA[<p>Hi, yes, the sample project works as it.<br />
I had to change some things to apply to my zend website because of zend layout, and module way.</p>
<p>What is strange is that I can&#8217;t even get some code result, nothing, only blank page&#8230;<br />
I can show you my code and the website if you want.</p>
<p>Thanks,</p>
<p>Aurélien.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-125</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Fri, 05 Mar 2010 18:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-125</guid>
		<description>Hi,

I don&#039;t know any method to change element type.

Element is built based on table definition. If it is a text, smalltext, medium text or longtext the input will be an textarea

You can manually ovverride this beahavior by removeing the element and then add it again as textarea.


Will be something like this:

[CODE]
    function crudAction ()
    {
        $grid = $this-&gt;grid();
        $grid-&gt;query(new Bugs());
        $form = new Bvb_Grid_Form();
        $form-&gt;setAdd(1)-&gt;setEdit(1)-&gt;setDelete(1)-&gt;setAddButton(1);
        $grid-&gt;setForm($form);
        $grid-&gt;getForm()-&gt;removeElement(&#039;date&#039;);       
        $grid-&gt;getForm()-&gt; addElement(&#039;textarea&#039;,&#039;date&#039;,array( &#039;decorators&#039;=&gt;$form-&gt;getElementDecorator(), &#039;order&#039;=&gt;5));
        $this-&gt;view-&gt;pages = $grid-&gt;deploy();
        $this-&gt;render(&#039;index&#039;);
    }
[/CODE]

Please remember to add any validation to the element. Also change the value of order to stay in touch with what you want...

Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I don&#8217;t know any method to change element type.</p>
<p>Element is built based on table definition. If it is a text, smalltext, medium text or longtext the input will be an textarea</p>
<p>You can manually ovverride this beahavior by removeing the element and then add it again as textarea.</p>
<p>Will be something like this:</p>
<p>[CODE]<br />
    function crudAction ()<br />
    {<br />
        $grid = $this->grid();<br />
        $grid->query(new Bugs());<br />
        $form = new Bvb_Grid_Form();<br />
        $form->setAdd(1)->setEdit(1)->setDelete(1)->setAddButton(1);<br />
        $grid->setForm($form);<br />
        $grid->getForm()->removeElement(&#8216;date&#8217;);<br />
        $grid->getForm()-> addElement(&#8216;textarea&#8217;,'date&#8217;,array( &#8216;decorators&#8217;=>$form->getElementDecorator(), &#8216;order&#8217;=>5));<br />
        $this->view->pages = $grid->deploy();<br />
        $this->render(&#8216;index&#8217;);<br />
    }<br />
[/CODE]</p>
<p>Please remember to add any validation to the element. Also change the value of order to stay in touch with what you want&#8230;</p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-124</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-124</guid>
		<description>Hi,

Have you download the sample project? It works?

Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Have you download the sample project? It works?</p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: altivec</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-123</link>
		<dc:creator>altivec</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:56:56 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-123</guid>
		<description>Hi, I display errors, I try the catch exceptions too on the controler dispatch, but nothing...
When using die(&#039;toto&#039;); I get display of toto before calling the BVB class, not after...</description>
		<content:encoded><![CDATA[<p>Hi, I display errors, I try the catch exceptions too on the controler dispatch, but nothing&#8230;<br />
When using die(&#8216;toto&#8217;); I get display of toto before calling the BVB class, not after&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: altivec</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-122</link>
		<dc:creator>altivec</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-122</guid>
		<description>Is there a way to display large results in textarea instead of input ???</description>
		<content:encoded><![CDATA[<p>Is there a way to display large results in textarea instead of input ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-121</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-121</guid>
		<description>Hi,

You get a blank page because your are not displaying errors.

Please paste this code in your index.php file

ini_set(&#039;display_errors&#039;,1);
error_reporting(-1);

And let me know the result.

Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You get a blank page because your are not displaying errors.</p>
<p>Please paste this code in your index.php file</p>
<p>ini_set(&#8216;display_errors&#8217;,1);<br />
error_reporting(-1);</p>
<p>And let me know the result.</p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: altivec</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-120</link>
		<dc:creator>altivec</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-120</guid>
		<description>Hi!
I installed successfully the 0.5 &amp; 0.6 as a new site without problem.
But I can&#039;t get it work with my configuration.
We use module and multi-language and layout display, with url like this : 

http://www.test.com/fr/grid

We can&#039;t get any error message by trying to catch any exception...
In fact, the error occurs when trying to launch any BVB class...

Any idea ?

All what I get is a white page...

Thanks for your help!

Regards,

Aurélien.</description>
		<content:encoded><![CDATA[<p>Hi!<br />
I installed successfully the 0.5 &amp; 0.6 as a new site without problem.<br />
But I can&#8217;t get it work with my configuration.<br />
We use module and multi-language and layout display, with url like this : </p>
<p><a href="http://www.test.com/fr/grid" rel="nofollow">http://www.test.com/fr/grid</a></p>
<p>We can&#8217;t get any error message by trying to catch any exception&#8230;<br />
In fact, the error occurs when trying to launch any BVB class&#8230;</p>
<p>Any idea ?</p>
<p>All what I get is a white page&#8230;</p>
<p>Thanks for your help!</p>
<p>Regards,</p>
<p>Aurélien.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-119</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Tue, 23 Feb 2010 14:50:36 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-119</guid>
		<description>Hi,

The new documentation will be released at the same time of software. Just a few more days...

Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>The new documentation will be released at the same time of software. Just a few more days&#8230;</p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eureka</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-118</link>
		<dc:creator>eureka</dc:creator>
		<pubDate>Tue, 23 Feb 2010 10:24:43 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-118</guid>
		<description>Is there a documentation to get a well-understanding of new functionalities, to facilitate tests without asking the team some questions ?</description>
		<content:encoded><![CDATA[<p>Is there a documentation to get a well-understanding of new functionalities, to facilitate tests without asking the team some questions ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-117</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Thu, 11 Feb 2010 17:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-117</guid>
		<description>Hi eureka,

With the new version, is always the output that is specified. No more &#039;c.id_rdo&#039; or &#039;id_rdo as final&#039;.

Its always the field output that matters. 

Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi eureka,</p>
<p>With the new version, is always the output that is specified. No more &#8216;c.id_rdo&#8217; or &#8216;id_rdo as final&#8217;.</p>
<p>Its always the field output that matters. </p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eureka</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-116</link>
		<dc:creator>eureka</dc:creator>
		<pubDate>Thu, 11 Feb 2010 17:01:30 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-116</guid>
		<description>Thanks Bento Vilas Boas, I have tried the SVN right away ans that works like a charm.

Reading your latest post, especially &quot;should be something like {{id_rdo}}&quot;, I have a question :
Imagine you do a join with two tables, each having a property &#039;id_rdo&#039;, differenciated by an alias. How specifying the property we want to see subsituted in resulting link ? (in previous version, this problem occured, does issue already exists ?)</description>
		<content:encoded><![CDATA[<p>Thanks Bento Vilas Boas, I have tried the SVN right away ans that works like a charm.</p>
<p>Reading your latest post, especially &#8220;should be something like {{id_rdo}}&#8221;, I have a question :<br />
Imagine you do a join with two tables, each having a property &#8216;id_rdo&#8217;, differenciated by an alias. How specifying the property we want to see subsituted in resulting link ? (in previous version, this problem occured, does issue already exists ?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-115</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Thu, 11 Feb 2010 11:59:08 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-115</guid>
		<description>Hi Italba,

Version 0.6 as a few changes.

First, the option hide has been renamed to hidden.

And the updateColumn() method now receives the field output name as first argument.

In your second comment, should be something like {{id_rdo}}. Please note that field alias are set ona key=&gt;value base and not using AS.

Wrong:
$select-&gt;from(&#039;table&#039;),array(&#039;id as name&#039;,&#039;option&#039;);
Correct:
$select-&gt;from(&#039;table&#039;,array(&#039;name&#039;=&gt;&#039;id&#039;,&#039;option&#039;)); 


Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi Italba,</p>
<p>Version 0.6 as a few changes.</p>
<p>First, the option hide has been renamed to hidden.</p>
<p>And the updateColumn() method now receives the field output name as first argument.</p>
<p>In your second comment, should be something like {{id_rdo}}. Please note that field alias are set ona key=>value base and not using AS.</p>
<p>Wrong:<br />
$select->from(&#8216;table&#8217;),array(&#8216;id as name&#8217;,'option&#8217;);<br />
Correct:<br />
$select->from(&#8216;table&#8217;,array(&#8216;name&#8217;=>&#8217;id&#8217;,'option&#8217;)); </p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Italba</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-114</link>
		<dc:creator>Italba</dc:creator>
		<pubDate>Thu, 11 Feb 2010 09:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-114</guid>
		<description>Another problem with 0.6:

I added a column for edit

&lt;code&gt;
        $editCol=new Bvb_Grid_ExtraColumns();
        $editCol-&gt;position(&#039;left&#039;)
                -&gt;name(&#039;Edit&#039;)
                -&gt;title(&#039;Edit&#039;)
                -&gt;decorator(&#039;&lt;a&gt;view-&gt;baseUrl().&#039;/rdo/edit/id/{{&#039;.
                        $currKey.&#039;}}&quot;&gt;view-&gt;baseUrl().&#039;/images/edit.png&quot; alt=&quot;Edit&quot;/&gt;&lt;/a&gt;&#039;);
        $grid-&gt;addExtraColumns($editCol);
&lt;/code&gt;

The resulting link is &lt;code&gt; http://comm2/rdo/edit/id/{{A.id_rdo}} &lt;/code&gt;
the field value is not substituted.

It worked ok with 0.5

Regards,
                Italo A.</description>
		<content:encoded><![CDATA[<p>Another problem with 0.6:</p>
<p>I added a column for edit</p>
<p><code><br />
        $editCol=new Bvb_Grid_ExtraColumns();<br />
        $editCol-&gt;position('left')<br />
                -&gt;name('Edit')<br />
                -&gt;title('Edit')<br />
                -&gt;decorator('<a>view-&gt;baseUrl().'/rdo/edit/id/{{'.<br />
                        $currKey.'}}"&gt;view-&gt;baseUrl().'/images/edit.png" alt="Edit"/&gt;</a>');<br />
        $grid-&gt;addExtraColumns($editCol);<br />
</code></p>
<p>The resulting link is <code> <a href="http://comm2/rdo/edit/id/" rel="nofollow">http://comm2/rdo/edit/id/</a>{{A.id_rdo}} </code><br />
the field value is not substituted.</p>
<p>It worked ok with 0.5</p>
<p>Regards,<br />
                Italo A.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Italba</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-113</link>
		<dc:creator>Italba</dc:creator>
		<pubDate>Thu, 11 Feb 2010 09:41:39 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-113</guid>
		<description>Hi, can&#039;t hide columns with version 0.6 .

&lt;code&gt;
        $grid-&gt;updateColumn($currKey, array(&#039;hide&#039; =&gt; 1));
        $grid-&gt;updateColumn(&#039;id_cantiere&#039;, array(&#039;hide&#039; =&gt; 1));
        $grid-&gt;updateColumn(&#039;id_cliente&#039;, array(&#039;hide&#039; =&gt; 1));
&lt;/code&gt;

The columns where hidden with 0.5, not with 0.6.

Regards,
                Italo A.</description>
		<content:encoded><![CDATA[<p>Hi, can&#8217;t hide columns with version 0.6 .</p>
<p><code><br />
        $grid-&gt;updateColumn($currKey, array('hide' =&gt; 1));<br />
        $grid-&gt;updateColumn('id_cantiere', array('hide' =&gt; 1));<br />
        $grid-&gt;updateColumn('id_cliente', array('hide' =&gt; 1));<br />
</code></p>
<p>The columns where hidden with 0.5, not with 0.6.</p>
<p>Regards,<br />
                Italo A.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bento Vilas Boas</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-112</link>
		<dc:creator>Bento Vilas Boas</dc:creator>
		<pubDate>Wed, 10 Feb 2010 16:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-112</guid>
		<description>Hi eureka.

Please check this page:

http://code.google.com/p/zfdatagrid/source/checkout

If you don&#039;t have SVN, please let me know and I will send you the source.

Best Regards,
Bento Vilas Boas</description>
		<content:encoded><![CDATA[<p>Hi eureka.</p>
<p>Please check this page:</p>
<p><a href="http://code.google.com/p/zfdatagrid/source/checkout" rel="nofollow">http://code.google.com/p/zfdatagrid/source/checkout</a></p>
<p>If you don&#8217;t have SVN, please let me know and I will send you the source.</p>
<p>Best Regards,<br />
Bento Vilas Boas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eureka</title>
		<link>http://zfdatagrid.com/2010/02/04/version-0-6/comment-page-1/#comment-111</link>
		<dc:creator>eureka</dc:creator>
		<pubDate>Wed, 10 Feb 2010 14:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://zfdatagrid.com/?p=520#comment-111</guid>
		<description>Hi,

Good news !
Where could I download the pre-release version, so that I can try it in various situations ? I can not find it in code.google.com, I have just found versions 5.0 and 5.1 dated on 5 january, not with all new improvements I think..

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Good news !<br />
Where could I download the pre-release version, so that I can try it in various situations ? I can not find it in code.google.com, I have just found versions 5.0 and 5.1 dated on 5 january, not with all new improvements I think..</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

