Zend 2 + Dojo documentation… - zend-framework

i'm starting using Zend 2 + Dojo. I can't find tutorials to start with these, i only find blogs about Zend 1.9 and the official Zend_Dojo docs is quite poor. Any help nor good link right here? :)
ty a lot!

your "Problem" in this case is, that the Dojo Framework was included in Zend Framework 1.x with some ViewHelpers, Form-Elements and more.
In Zend Framework 2, Dojo is not included. Just use Dojo like you would without Zend Framework :-)

Related

Which Version of Zend is better for Beginner?

Hello I am new to the Zend & Stacjoverflow also.
I have just basic concepts of Zend in mind only. So please suggest me which version is better for the development zend2 (or) Zend 1.+.
Currently i am using zend 1.12.3 only
Taken from the official FAQs of Zend Framework 2:
I’m starting a new project – which version of Zend Framework should I use?
Start using Zend Framework 2! It's already stable.
It is always a good idea to learn(and use) newer version.

Zend Framework with Smarty 3

How do I configure Smarty 3 in Zend Framework?
I have no idea what to put in application.ini and Bootstrap.php
Good step-by-step tutorial regarding smarty3 for zend:
http://gediminasm.org/post/smarty-3-extension-for-zend-framework
Next time you might try to search the web (www.google.com) for tutorials/topics regarding your problems before asking here. If then you hit a special (detail) problem, ask here. Take a look at http://mattgemmell.com/2008/12/08/what-have-you-tried/

Zend Framework - Dojo form support

Hello i am new in Zend Framework
i have found that zend have support for dojo forms - Zend_Dojo_Form_Element_*
works pretty well.
But there are mising some elemnt like (BusyButton, RangeSlider or PasswordValidation)
Is zend support them??
I have found that Zend supports BusyButton (http://framework.zend.com/issues/browse/ZF-9641)
But i dont know how to use it?
Also i have found that zend contains this dojo elmements here:
ZendFramework/externals/dojo/dojox/form/
Would anybody be so kind and write me, some example how to use
this form elements (BusyButton, RangeSlider or PasswordValidation) please?
You can use Custom Dijits as described in the Zend Framework Manual.
http://framework.zend.com/manual/1.11/en/zend.dojo.view.html

How can I integrate FCKeditor in a Zend Framework application?

I've seen there are questions here about how to integrate scripts in ZF. There are also some questions about FCKEditor. But I have found nothing about both ZF and FCKEditor.
Does anyone use FCKEditor with ZF?
Alternatively...is there an RTE which can integrate well with ZF?
Thank you
Hi there is a some pages that may be usefull:
http://blog.ekini.net/2007/11/28/using-fckeditor-with-zend-framework-file-browser-enabled/
http://www.leftcolumn.net/2009/03/10/zend-framework-how-to-add-fckeditor-to-a-zend_form/
http://vnwds.com/threads/20-Build-FCKeditor-in-your-Zend-Project-with-Zend_View_Helper
You should probably want to create zend form elements and a zend view helper. It would enable seamless zend framwork integration and can be reused to reduce any code duplication.
Here's an article explaining how:
FCKeditor Zend Form Integration

Create admin module and configuration in Zend Framework 1.9.0

I am working with zend framework for last 2 months. I got zend framework latest version 1.9.0.
I am new in zend framework programming. I am learning one by one.. in zend framework. Now i am confused with creating admin module in zend and their configuration settings. Please help me to create admin module with in the module folder in zend framework.
Thanks and regards,
Prasanth P
Using Zend_Tool you can create modules.
zf create module name
I did have a few issues when creating modules these two blogs were a great help (few articles on each). I was looking to have separate configs, layouts ect for each one, maybe not what you're after but good read anyway.
http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/
We have a similar problem:
I am designing a large scale application with about 5 modules.
Even though I am not finding my way around, I think this blog post http://blog.astrumfutura.com/archives/415-Self-Contained-Reusable-Zend-Framework-Modules-With-Standardised-Configurators.html might be helpful for you and for anybody else. Please, update this thread if you find anything interesting. thanks.
use of this
http://www.skyrocket.be/2009/01/11/admin-cms-routes-in-zend-framework/