[fw-general] Preferred method of returning changes to form element after ajax call

2008-02-12 Thread Georg von der Howen
Hi, with Zend_Form on the horizont I was wondering if there is a preferred method of returning changes to a form element on a webpage after an ajax call. For example when I select a certain checkbox and push a button on a form, an ajax call is made that should return an updated select element a

RE: [fw-general] Zend CMS Crisis

2007-09-12 Thread Georg von der Howen
Hi, I did start development of a CMS with Zend Framework as soon as it first came out as an early alpha in March/April 2006. Due to lack of time and some other more pressing projects, the development stopped around March this year. But if you are interested the frontend can be seen at http://www.

RE: [fw-general] problem when deploying site

2007-02-25 Thread Georg von der Howen
I had a similar error when updating ZF to 0.8.0. The cause was that the parameters for the Zend_Controller->_forward() method have changed from 0.7.0 to 0.8.0(is there actually a place where I can look up API changes from one version to the next?). One thing that changed was the order of the con

RE: [fw-general] Zend_Db_Select

2007-02-23 Thread Georg von der Howen
Hi Andrey, $select->reset(Zend_Db_Select::FROM); $select->reset(Zend_Db_Select::COLUMNS); $select->from(...); Plese see also: http://framework.zend.com/manual/en/zend.db.select.html. It is documented at the end of the page. BTW: This works since ZF 0.8.0. Best regards, Georg > -Original

[fw-general] Support for $_FILES in Zend_Controller_Request_Http

2007-01-26 Thread Georg von der Howen
Hi, I can't find specific methods to access data about uploaded files from a Zend_Controller_Request_Http object. Is there a reason for not supporting the global $_FILES in that class? Best regards, Georg

RE: [fw-general] Any interest in a Zend_Portlet?

2006-09-22 Thread Georg von der Howen
Very interesting idea! I am working on the same problem but did not consider the portlet-API. Having just browsed the specs, it definitely is worth looking at closer. Zend_Portlet would then consist of a portlet container and a portlet class, that is extended by 'real' portlets, right?