<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Qcodo.com Forums RSS Feed</title>
	<link>http://www.qcodo.com/forums/</link>
	<description>The Qcodo forums attempts to provide a community to post, discuss, ask, and converse about the current state of the framework, as well as provide an opportunity for members to discuss the future direction of Qcodo.</description>
	<pubDate>Thu, 18 Mar 2010 05:16:17 PDT</pubDate>
	<generator>Qcodo Development Framework 0.4.14</generator>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<image>
		<url>http://www.qcodo.com/images/qcodo_smaller.png</url>
		<title>Qcodo.com Forums RSS Feed</title>
		<link>http://www.qcodo.com/forums/</link>
		<width>200</width>
		<height>84</height>
	</image>
	<item>
		<title>How to render QWaitIcon when use javascript event calls...</title>
		<link>http://www.qcodo.com/forums/forum.php/3/4083/lastpage</link>
		<description><![CDATA[<p>Hi everybody, i have a datagrid which shows some data updated by a process...<br/>
The process is called by pressing a button or ( periodically ) by a javascript event, when i click on the button the QWaitIcon is shown without problems,<br/>
but i dont know how to show the QWaitIcon when the event is called by javascript,<br/>
i try to make visible the control using<br/>
//$this-&gt;objDefaultWaitIcon-&gt;Display = true; <br/>
or<br/>
//QApplication::ExecuteJavaScript(sprintf('qc.getW(&ldquo;%s&rdquo;).style.cssText = &ldquo;display:inline;&rdquo;; ', $this-&gt;objDefaultWaitIcon-&gt;ControlId));<br/>
but i have no success...</p>

<p>here some code:</p>

<pre ><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">protected&nbsp;function&nbsp;</span><span style="color: #0000BB">btnProcesar_Click</span><span style="color: #007700">(){<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//RUN&nbsp;A&nbsp;PROCESS<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">include(</span><span style="color: #DD0000">"export.php"</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">dtgProcess</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">Refresh</span><span style="color: #007700">();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//Re-ejecucion&nbsp;de&nbsp;metodo<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">if(!(</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">IsProcessExecuted</span><span style="color: #007700">())){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$objLogFileProcessUltimo&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">LogFileProcess</span><span style="color: #007700">::</span><span style="color: #0000BB">LoadUltimo</span><span style="color: #007700">();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(</span><span style="color: #0000BB">$objLogFileProcessUltimo&nbsp;</span><span style="color: #007700">instanceof&nbsp;</span><span style="color: #0000BB">LogFileProcess</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(</span><span style="color: #0000BB">$objLogFileProcessUltimo</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">Estado&nbsp;</span><span style="color: #007700">==&nbsp;</span><span style="color: #0000BB">EstadosProcesos</span><span style="color: #007700">::</span><span style="color: #0000BB">PARTECULMINADA</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$command&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">sprintf</span><span style="color: #007700">(</span><span style="color: #DD0000">'window.setTimeout(function()&nbsp;{qc.pA(\'%s\',&nbsp;\'%s\',&nbsp;\'QClickEvent\',&nbsp;\'%s\')},&nbsp;1000);'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">FormId</span><span style="color: #007700">,</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">btnProcesar</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">ControlId</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">null</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">QApplication</span><span style="color: #007700">::</span><span style="color: #0000BB">ExecuteJavaScript</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">$command&nbsp;</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//$this-&gt;objDefaultWaitIcon-&gt;Display&nbsp;&nbsp;&nbsp;&nbsp;=&nbsp;true;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//QApplication::ExecuteJavaScript(sprintf('qc.getW("%s").style.cssText&nbsp;=&nbsp;"display:inline;";&nbsp;',&nbsp;$this-&gt;strControlId));<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">return;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">btnProcess</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">Display&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></pre>

<p>any ideas?<br/>
Thanks.</p>

]]></description>
		<author>apselico</author>
		<category>Bugs and Issues</category>
		<comments>http://www.qcodo.com/forums/forum.php/3/4083/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/3/4083/lastpage</guid>
		<pubDate>Thu, 18 Mar 2010 02:28:34 PDT</pubDate>
	</item>
	<item>
		<title>Re: not saving associated data...</title>
		<link>http://www.qcodo.com/forums/forum.php/3/4080/lastpage</link>
		<description><![CDATA[<p>Hmm, so I put the exit('am here'); and nothing happens....!</p>

<p>However, on the development local box it works.</p>

<p>How else can I drill into what's wrong?</p>

]]></description>
		<author>kingwithin</author>
		<category>Bugs and Issues</category>
		<comments>http://www.qcodo.com/forums/forum.php/3/4080/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/3/4080/lastpage</guid>
		<pubDate>Wed, 17 Mar 2010 10:35:45 PDT</pubDate>
	</item>
	<item>
		<title>Re: Old Custom QForms</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4082/lastpage</link>
		<description><![CDATA[<p>They are still at http://www.qcodo.com/wiki/old_downloads/other</p>

<p>In particular though, the QFilteredDataGrid has been integrated into QCubed v1.1, and is easier to use and less buggy than the version available for QCodo.</p>

<p>You can grab QCubed from http://qcu.be</p>

]]></description>
		<author>VexedPanda</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4082/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4082/lastpage</guid>
		<pubDate>Wed, 17 Mar 2010 08:40:11 PDT</pubDate>
	</item>
	<item>
		<title>Re: HTML Formatted Emails</title>
		<link>http://www.qcodo.com/forums/forum.php/3/4072/lastpage</link>
		<description><![CDATA[<p>QEmailServer sends malformed html messages (no QuotedPrintable encoding ), and perhaps thats might help.</p>

<p>bugfixed QEmailServer:<br/>
<a href="http://github.com/klucznik/qcodo/blob/master/includes/qcodo/_core/framework/QEmailServer.class.php">http://github.com/klucznik/qcodo</a></p>

]]></description>
		<author>Zbyszek Czarnecki</author>
		<category>Bugs and Issues</category>
		<comments>http://www.qcodo.com/forums/forum.php/3/4072/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/3/4072/lastpage</guid>
		<pubDate>Wed, 17 Mar 2010 05:18:35 PDT</pubDate>
	</item>
	<item>
		<title>Re: QEmail Server not sending email because of "Spam Assassin?"</title>
		<link>http://www.qcodo.com/forums/forum.php/3/4074/lastpage</link>
		<description><![CDATA[<p>Actually QEmailServer sends malformed html messages (no QuotedPrintable encoding ), and perhaps thats why SpamAssasin marks them as spam.</p>

<p>bugfixed QEmailServer:<br/>
<a href="http://github.com/klucznik/qcodo/blob/master/includes/qcodo/_core/framework/QEmailServer.class.php">http://github.com/klucznik/qcodo</a></p>

<p>Maybe it helps, won't hurt though.<br/>
</p>

]]></description>
		<author>Zbyszek Czarnecki</author>
		<category>Bugs and Issues</category>
		<comments>http://www.qcodo.com/forums/forum.php/3/4074/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/3/4074/lastpage</guid>
		<pubDate>Wed, 17 Mar 2010 05:14:25 PDT</pubDate>
	</item>
	<item>
		<title>Re: Old Custom QForms</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4082/lastpage</link>
		<description><![CDATA[<p>Hi,<br/>
I was just looking at the QPM repository because I was looking for the QFilteredDataGrid which existed in the pre-QPM Custom QForms section. Can these old community contributions still be downloaded somewhere and are they compatible with the new QCodo Version?</p>

]]></description>
		<author>Schnigges</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4082/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4082/lastpage</guid>
		<pubDate>Wed, 17 Mar 2010 03:20:31 PDT</pubDate>
	</item>
	<item>
		<title>Re: Exciting Personal News</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4066/lastpage</link>
		<description><![CDATA[<p>That is incredible! &nbsp;Congrats Mike.<br/>
</p>

]]></description>
		<author>Eric Jones</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4066/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4066/lastpage</guid>
		<pubDate>Tue, 16 Mar 2010 11:49:00 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>The <strong>current</strong> version of Qcodo already supports MetaDataGrid which has really easy filtering capability... all that's missing is the documentation for it. &nbsp;I hope to have a write-up for it in the next day or so.</p>

<p>The next version of Qcodo will add a few additional features and functionality which will make filtering even easier than it already is with MetaDataGrid. &nbsp;These additional features will simply be add-ons to the existing MetaDataGrid mechanism.</p>

<p>What VexedPanda is talking about is an implementation of his well-received FilteredDataGrid which he has placed into the QCubed framework (which is a fork of Qcodo) which I believe has a slightly different approach than the MetaDataGrid approach of Qcodo (however, don't quote me on this yet). &nbsp;I do plan on looking into his FilteredDataGrid approach soon as a bunch of us look into a lot of the proposed changes that are on the table for the meta controls, qcodo query, etc.</p>

<p>Hope that clears things up a bit -- please do post if you have any additional questions.</p>

]]></description>
		<author>Mike Ho</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Tue, 16 Mar 2010 08:45:53 PDT</pubDate>
	</item>
	<item>
		<title>Re: Qcodo 0.4.14 Stable Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</link>
		<description><![CDATA[<p>kentpachi thanks for the head's up -- i have fixed the broken link.</p>

]]></description>
		<author>Mike Ho</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4079/lastpage</guid>
		<pubDate>Tue, 16 Mar 2010 08:39:15 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>I feel lost in this post.</p>

<p>Well in short, in future versions of Qcodo, will be options to filter in QDataGrid?</p>

]]></description>
		<author>Leonardo</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Tue, 16 Mar 2010 05:11:45 PDT</pubDate>
	</item>
	<item>
		<title>Re: Qcodo 0.4.14 Stable Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</link>
		<description><![CDATA[<p>careful, changelog page has gone...</p>

<p>EDIT : in fact the link is just wrong</p>

]]></description>
		<author>kentpachi</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4079/lastpage</guid>
		<pubDate>Tue, 16 Mar 2010 01:44:15 PDT</pubDate>
	</item>
	<item>
		<title>Re: Qcodo 0.4.14 Stable Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</link>
		<description><![CDATA[<p>Thanks to all contributors !</p>

]]></description>
		<author>kentpachi</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4079/lastpage</guid>
		<pubDate>Tue, 16 Mar 2010 01:43:36 PDT</pubDate>
	</item>
	<item>
		<title>Re: Qcodo 0.4.14 Stable Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</link>
		<description><![CDATA[<p>Awesome!</p>

<p>Thank you!<br/>
=-)</p>

]]></description>
		<author>Jandal</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4079/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 18:00:04 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>@Mike Ho<br/>
Your plans on the datagrid are amazing. </p>

<p>This will add transparency on how to use it for all the pals starting out with Qcodo and enhancing filtering is a killer feature. </p>

<p>--</p>

<p>On a sidenote: You are saying that you check out existing work means a lot to everybody. :)<br/>
Let's remember Kasper Skårhøj founder of Typo3 - he was giving a free CMS to the people out of spirit, and now it is one of the biggest Open Source communities at least around Germany. <br/>
<a href="http://typo3.org/community/people/kaspers-korner/">http://typo3.org/community/people/kaspers-korner/</a><br/>
<a href="http://typo3.org/teams/core/">http://typo3.org/teams/core/</a><br/>
There is a lot to learn from Typo3 as a community.</p>

<p>I might add that there is also an Export example to consider http://examples.qcu.be/assets/plugins/QDataGridExporterButton/example/datagridexport.php while being not the most complex piece of code on this planet, little helpers like this are much sought after because they save so much time and hassle.</p>

<p>--</p>

<p>@kentpachi &nbsp;<br/>
I totally understand what you are saying regarding the webdesign. Thanks for your ideas.<br/>
Also e.g. the Zend Framework Startpage is amazing. <br/>
A startpage can convert a lot of people. It is the most powerful site for a domain.</p>

<p>I do not think it is &ldquo;necessary&rdquo; to redesign the website at this point because it is thoughtout, clean, well engineered and fresh since it has only been online for a few month...</p>

<p>But then design can and should always be enhanced.<br/>
Making it more web2.0 catchy call it whatever you like, also fixing a small iphone/safari bug here and there can make a huge difference.</p>

<p>Since this website is built with Qcodo and is completely open source anyone can download it and rearrange items in several ways. Through templates and CSS.<br/>
If the output is much better then the current design, I think there is no bummer that prevents this progress being deployed on this very site.</p>

<p>And in case the output is not the right thing to be used for the website <br/>
-&gt; go package that template make it downloadable on the website and -&gt; this will gain popularity.</p>

<p>--</p>

<p>A CMS that is actually clean and has templates, built on a MVC framework?<br/>
-&gt; Instant download.</p>

<p>Please guys realize this: The Qcodo Website is a MAJOR Open Source project as well. We just have to market it. <br/>
* Does Zend Framework have this level of a collaborative CMS/Wiki? No!<br/>
* Any other framework I know? No, I do not know any!<br/>
* Is Qcodo Website still to hard to find, download, install? Yes!</p>

<p>(Forget QuasiCMS while being good while it lasted the Qcodo website is superiour and the better place to spend your time on.)</p>

<p>--</p>

<p>I added the Qcodo Website to the roadmap as this being a very inspiring idea allowing more design oriented people to make a few dev sprints.</p>

<p>Since no one argued against the roadmap I also linked it from the front wikipage, so it can be found by the rest of our community that is not reading this thread. </p>

<br/>
<p>Cheers,<br/>
tronics</p>

]]></description>
		<author>tronics</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 16:59:43 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>Mike, here's a direct link to the changes made to integrate QFilteredDataGrid:<br/>
http://trac.qcu.be/projects/qcubed/changeset/590</p>

<p>There's support for QQConditions, as well as for fully manual filters, so you can even use filtered datagrids with raw SQL, built along the same lines as SortCommand.</p>

]]></description>
		<author>VexedPanda</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 14:49:20 PDT</pubDate>
	</item>
	<item>
		<title>Re: not saving associated data...</title>
		<link>http://www.qcodo.com/forums/forum.php/3/4080/lastpage</link>
		<description><![CDATA[<p>are you sure you action is being called on your save event?</p>

<p>The simplest way to verify this is to do an &ldquo;exit('i am here');&rdquo; in your save event right before you make your call to $objUserDetail-&gt;Save() on the data object.</p>

<p>If that works, then make sure the data in the userdetail object is what should be as expected. &nbsp;You can do this by doing something like &ldquo;exit(var_dump($objUserDetail));&rdquo; right before you make your call to $objUserDetail-&gt;Save().</p>

]]></description>
		<author>Mike Ho</author>
		<category>Bugs and Issues</category>
		<comments>http://www.qcodo.com/forums/forum.php/3/4080/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/3/4080/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 14:10:46 PDT</pubDate>
	</item>
	<item>
		<title>Re: not saving associated data...</title>
		<link>http://www.qcodo.com/forums/forum.php/3/4080/lastpage</link>
		<description><![CDATA[<p>Hi,</p>

<p>I have a profile for User and user Details is an associated table.</p>

<p>I seem to be able to get it to work in one part of the application by doing the following:</p>

<pre ><code><span style="color: #000000"><br />protected&nbsp;function&nbsp;btnSave_Click($strFormId,&nbsp;$strControlId,&nbsp;$strParameter)&nbsp;{<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUser-&gt;UserDetail-&gt;BackupEmail&nbsp;=&nbsp;$this-&gt;txtBackupEmail-&gt;Text;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUser-&gt;UserDetail-&gt;Title&nbsp;=&nbsp;$this-&gt;txtTitle-&gt;Text;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUser-&gt;UserDetail-&gt;City&nbsp;=&nbsp;$this-&gt;txtCity-&gt;Text;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUser-&gt;UserDetail-&gt;Save();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUser-&gt;Save();<br />}</span></code></pre>

<p>I excerpted some things out from this controller for the button but I believe these are the essentials.</p>

<p>I have another application which is a &ldquo;popup&rdquo; in a lightbox but I assume it should still work:</p>

<pre ><code><span style="color: #000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUserDetails-&gt;LName&nbsp;=&nbsp;$this-&gt;txtLastName-&gt;Text;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUserDetails-&gt;Title&nbsp;=&nbsp;$this-&gt;txtTitle-&gt;Text;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUserDetails-&gt;City&nbsp;=&nbsp;$this-&gt;txtCity-&gt;Text;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUser-&gt;AccountIdObject-&gt;Name&nbsp;=&nbsp;$this-&gt;txtCompany-&gt;Text;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUserDetails-&gt;Save();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUser-&gt;Save();</span></code></pre>

<p>IN this case I have:</p>

<pre ><code><span style="color: #000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;objUserDetails&nbsp;=&nbsp;UserDetails::LoadById($this-&gt;objUser-&gt;UserDetailId);</span></code></pre>

<p>Yes, I did use the same objUser-&gt;UserDetail and that didn't work either.</p>

<p>Thoughts?</p>

]]></description>
		<author>kingwithin</author>
		<category>Bugs and Issues</category>
		<comments>http://www.qcodo.com/forums/forum.php/3/4080/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/3/4080/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 11:31:27 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>Actually, the MetaDataGrid offers the ability to create lots of these types of things really easily. &nbsp;I'm implementing one key change with the next few releases which will make adding filters, etc. even easier, and I'll definitely check out the VP's FilteredDataGrid concepts as well.</p>

<p>But most importantly, I'll try and get an examples page regarding this as soon as possible.</p>

]]></description>
		<author>Mike Ho</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 10:42:32 PDT</pubDate>
	</item>
	<item>
		<title>Re: Qcodo 0.4.14 Stable Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</link>
		<description><![CDATA[<p>Hey Everyone!</p>

<p>I'm happy to announce the latest STABLE release of Qcodo, version 0.4.14. &nbsp;There are lots of great improvements and fixes that have been put into place over the past few months which have been well tested through the past 5 dev releases.</p>

<p>Take a look at the <a href="http://www.qcodo.com/wiki/qcodo/changelog">Changelog</a> for more specifics, and a special thanks to:</p>

<ul>
<li>Marcos Sánchez</li>
<li>Fernando Lord</li>
<li>Klucznik</li>
<li>and mikeangelo</li>
</ul>

<p>for your patches, fixes and code contributions. &nbsp;We're definitely interested in having more folks help out, especially with regards to contributions. &nbsp;For the easiest way of contributing, create your own branch to Qcodo in <a href="http://www.github.com/qcodo/qcodo">GitHub</a> and feel free and submit commits today!</p>

<p>In the following weeks we will be pushing forward with a lot of key changes suggested by a lot of folks with regards to tightening up some features in the Qcodo Query layer. &nbsp;If you are interested in contributing or discussing, feel free and drop a line at <a href="http://www.qcodo.com/issues/view.php/42">Issue 42</a>.</p>

<p>As usual, please post with any comments, concerns, etc.</p>

]]></description>
		<author>Mike Ho</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4079/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4079/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 10:40:37 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>I'm confused. The QDataGrid in QCubed allows you to specify any QQCondition as a filter, including QQ::Equal, QQ::In, QQ::Like, etc.?</p>

]]></description>
		<author>VexedPanda</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 10:01:10 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>I entered the site Qcubed and saw QControlFilter, really enjoyed. But I think we can improve, there is the option of the operator as =, &lt;,&gt;, &lt;&gt;,%%.<br/>
Can Improve</p>

]]></description>
		<author>Leonardo</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 09:53:43 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>That datagrid looks very much like the existing QFilteredDataGrid control I wrote, which has since been included in QCubed core for version 1.1.</p>

<p>Check out the examples on http://qcu.be if you want to see it in action.</p>

]]></description>
		<author>VexedPanda</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 09:21:35 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>Staff read some things related to goals.</p>

<p>I looked at a site that has a very interesting style of datagrid.<br/>
http://www.trirand.net/demophp.aspx</p>

<p>I was very interested to develop the filters in dtg form_drafts as in panel_drafts.</p>

]]></description>
		<author>Leonardo</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Mon, 15 Mar 2010 08:37:36 PDT</pubDate>
	</item>
	<item>
		<title>Re: Qcodo 0.4.13 Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4076/lastpage</link>
		<description><![CDATA[<p>really good !</p>

]]></description>
		<author>kentpachi</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4076/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4076/lastpage</guid>
		<pubDate>Sun, 14 Mar 2010 07:34:37 PDT</pubDate>
	</item>
	<item>
		<title>Re: Community Development</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</link>
		<description><![CDATA[<p>Tronics,</p>

<p>thanks for your job.</p>

<p>We need more people like you.</p>

<p>I have one suggestion tho,</p>

<p>We should have to keys to improve qcodo website. I mean the roadmap is great and should kind of progress bar associated.</p>

<p>Perhaps we should create on github a repository only about politicals goals or community goals.</p>

<p>The thing is the website bug tracker is not visible enough.</p>

<p>Also the website design should be moved on something more modern and more attractive.</p>

<p>Take a look at http://codeigniter.com/ something like this could be cool.</p>

<p>About examples sites to show beginners what we can do with the framework. I have a kind of cms created used qcodo but i think its a little bit too advanced for new users to get familar with.</p>

<p>It used to be another tools called quasi as far as i remember it was a kind of cms too.</p>

<p>i don't know at what stage is this tools.</p>

<p>kent<br/>
</p>

]]></description>
		<author>kentpachi</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4002/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4002/lastpage</guid>
		<pubDate>Sun, 14 Mar 2010 06:39:49 PDT</pubDate>
	</item>
</channel>
</rss>
