[fw-general] dojo editor not working in ie invalid pointer

2008-12-14 Thread Ace Paul
works ok in firefox but giving this error in firebug RichText should not be used with the TEXTAREA tag. See dijit._editor.RichText docs. In ie7 none of the dojo elements work though, and i get the error: Invalid Pointer. does any one know how to fix this? thanks for any help this is what i

Re: [fw-general] How to set up dependant dropdowns in form

2008-12-14 Thread Ace Paul
thanks for your help on this. I'm trying to get this going, but not having any luck at all, especially seeing as I haven't used json with zend yet. I'm getting this error in my controller file. Method encodeJson does not exist and was not trapped in __call() public function

[fw-general] Default value of a Zend_Dojo_Form_Element_DateTextBox in a Zend_Form

2008-12-14 Thread Barrett Conrad
Hello all. I am attempting to use a Zend_Dojo_Form_Element_DateTextBox in a Zend_Form and I am unable to set the default value for the date picker. The element works fine if the form/element validates, but the element does not retain its value when the validation fails or it has no value

Re: [fw-general] dojo tooltip in a contentpane

2008-12-14 Thread aad pouw
Matthew Weier O'Phinney-3 wrote: -- aad pouw aad.p...@gmail.com wrote (on Sunday, 30 November 2008, 04:56 AM -0800): Before I go on with this issue, I first want to mention this. ZFW 1.7 needs a patch to get the Zend_Dojo_View_Helper_Tooltip working anyhow and that's to be found at

Re: [fw-general] SWFUpload with Zend

2008-12-14 Thread dop3
Hey friends.. this is my problem.. I want to do thinds in ZF style so I did like this: SWFUpload.onload = function () { var settings = { flash_url : baseUrl + /js/swfupload/swfupload.swf, upload_url: baseUrl + /controller/upload,// the upload action of my controller ...

[fw-general] Zend_Soap_AutoDiscover and document literal

2008-12-14 Thread krytie
Hello, I'm wanting to use the cool AutoDiscover library to produce document/literal compliant WSDLs, but looking at the setClass() method of Zend_Soap_AutoDiscover, it looks like it is hard coded to use RPC/encoded. What's the best way of allowing document/literal? 1) Hacking

Re: [fw-general] How to set up dependant dropdowns in form

2008-12-14 Thread Cameron
try calling it statically, Zend_Json::encode($data); On Sun, Dec 14, 2008 at 11:39 PM, Ace Paul sa...@acewebdesign.com.auwrote: thanks for your help on this. I'm trying to get this going, but not having any luck at all, especially seeing as I haven't used json with zend yet. I'm getting

Re: [fw-general] Default value of a Zend_Dojo_Form_Element_DateTextBox in a Zend_Form

2008-12-14 Thread Cameron
You need to pass the element an ISO date. Try something like this: $date = new Zend_Date(); $date-set($row['date'], Zend_Date::ISO_8601); $retarr['auction_date'] = $date-getIso(); Interestingly enough, the Time picker accepts the full ISO date too, if you're using them. Unfortunately you need

[fw-general] Zend_Date and Timezones - how do I turn them off?

2008-12-14 Thread Cameron
Hi guys, I'm just doing a bit of work with the Dojo date and time pickers, and it's all going wonderfully, and I decided to use the Zend_Date::ISO_8601 method for formatting the output from MySQL, which works perfectly well, all except for the fact it's appending a timezone, which then goes and

Re: [fw-general] SWFUpload with Zend

2008-12-14 Thread Cristian Bichis
Hello, 1. Put into js folder a .htaccess file with RewriteEngine Off directive (there are other ways also) 2. upload.php transform it into a controller action as you did into your initial sample -- Best regards, Cristian Bichis www.zftutorials.com | www.zfforums.com | www.zftalk.com |

Re: [fw-general] SWFUpload with Zend

2008-12-14 Thread ask josephsen
Hi I've made made SWFUpload work as well. Make sure you start with a classic HTML-upload form that post the file to your ZF controller/action - in this way you can easily debug your upload action. And when that works - start putting up the SWFUplaod. ./ask teleki wrote: Hi, Has anybody

Re: [fw-general] Zend_Date and Timezones - how do I turn them off?

2008-12-14 Thread Thomas Weidner
To prevent timezone calculation you should use UTC as timezone. This timezone has no DST. But be aware of possible time differences when your input is not UTC but GMT. Also to note: UTC is also a timezone and will be displayed in the output. It just uses no DST, that's all. ISO_8601 is the