[fw-general] Zend Framework Dojo

2008-09-17 Thread 411161
I have a really simple question. Since Zend integrates Dojo, do I still have to download Dojo and is there a good tutorial on how to use them together? -- View this message in context: http://www.nabble.com/Zend-Framework---Dojo-tp19537547p19537547.html Sent from the Zend Framework mailing list

Re: [fw-general] Looking for a complete Complete Zend_Paginator example

2008-09-30 Thread 411161
was hoping to see an example. 411161 wrote: I have it working, but I am not sure how to create links for next, last, first, previous, numbers, etc.. I am also not sure how to handle links in my controller. This is what I have so far. controller: public function paginateAction

Re: [fw-general] Looking for a complete Complete Zend_Paginator example

2008-10-01 Thread 411161
, -Matt On Tue, Sep 30, 2008 at 8:13 AM, 411161 [EMAIL PROTECTED] wrote: Thanks. For some reason, I must have missed all that when I first looked at the reference guide. So what I have done now is, changed my view to add the following: ?= $this-paginationControl($this-paginator2, 'Sliding

Re: [fw-general] Zend Framework Dojo

2008-10-24 Thread 411161
http://lampcomputing.com/add-cool-zend-dojo-date-picker-form-element-without-writing-single-line-javascript This tutorial got me up and running. -- View this message in context: http://www.nabble.com/Zend-Framework---Dojo-tp19537547p20156892.html Sent from the Zend Framework mailing list

Re: [fw-general] Looking for a complete Complete Zend_Paginator example

2008-10-28 Thread 411161
before and as I far as I know I did not change anything. monk.e.boy wrote: 411161 wrote: This is what I have so far. I threw up this tutorial: http://teethgrinder.co.uk/perm.php?a=Zend-Framework-MySQL-DB-Pagination-Tutorial hope it helps. monk.e.boy -- View this message

[fw-general] Dojo and tabs and panes

2009-03-04 Thread 411161
I have a form on one of my panes in Dojo. It is not the first pane. How can I show the second pane after hitting submit if I have an error on the form and I want the user to correct it? my phtml looks like this. ?php $this-dojo()-enable(); // Container with tabs

[fw-general] security/Zend Session

2009-03-09 Thread 411161
If I have some code that checks to see if a user is logged in and I want to do this for every page where is the best place to do this? I use modules and just want to do it for a particular module, does that change things? -- View this message in context:

[fw-general] .htaccess (view helper $this-url) question

2009-04-22 Thread 411161
My application's url is something like this: http://localhost/zend/AppName We use Oracle's Policy manager for our single sign-on environment. If i go to the url above in my preDispatch method, it checks to see whether a session is set. If it is not, I forward it to the single sign-on page which

Re: [fw-general] .htaccess (view helper $this-url) question

2009-04-22 Thread 411161
411161 wrote: My application's url is something like this: http://localhost/zend/AppName We use Oracle's Policy manager for our single sign-on environment. If i go to the url above in my preDispatch method, it checks to see whether a session is set. If it is not, I forward

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

2009-04-27 Thread 411161
Ace Paul wrote: I have a form, which I would like to use dependent drop downs in. I can't seem to find anything about it hear, after looking all morning trying to work it out. I have one field race_country when an option is selected I would like to show the cities in that country. The

[fw-general] what can be used t replace these nice smarty features

2009-05-19 Thread 411161
I have decided not to use Smarty as my template engine. But, what can I use instead in Zend View for things like: html_options I despise too many loops in my pages and this was a very clean way to populate a dropdown. select size=1 name=shortTerritory onchange=form1.submit()

[fw-general] Ajax Forms

2009-05-28 Thread 411161
I am not using Zend_Form, bu if I have to I will. I basically have a page that is a form. When a user selects certain options from the form more of the form appears and in some cases part of the form dis-appears. Currently, I use onChange and just refresh the page. I found a way to integrate

[fw-general] Check to see if a request parameter was set

2009-06-10 Thread 411161
This statement: isset ($this-_getParam('adjType')); produces the following error: Fatal error: Can't use method return value in write context in /usr/local/apache2-development/htdocs/ARMS/application/modules/default/controllers/IndexController.php on line 136 What are my alternatives? --

[fw-general] ZF with Ajax

2009-07-10 Thread 411161
I am just trying to figure out if I can do this or whether I am just doing it wrong I have a form that displays more of itself as the user fills in info. When they choose from a select option it calls a javascript function via Prototype which makes a request to the server for a controller. The

[fw-general] ZF with Ajax (Dojo or anything)

2009-07-16 Thread 411161
I have this problem where I am trying to show pieces of the form as the user fills out more of the form. I was trying to do this in a way where the entire form was on the phtml page, but pieces of the form were hidden by using div with a style property of hidden. When an onClick is called or