Is there a built in Zend framework popup window?
I want to know if there is a feature built in the zend framework that when you click a link it opens up an action in a nice pop up window such as smoothbox, lightbox etc?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ideally, it should have.
But, the answer is No, it does not have it.
Why it should have?
Zend Framework is a complete set of tools for creating website’s back-end and front-end both. The parsing on zend server is effective when the programmer creates an entire website using Zend* functions. On Apache server it is just a web application which runs the entire code as an application and compiles all of the libraries. On Zend server, it already has the compiled stack of libraries and all it requires to compile is your code (application/) and that’s all, it is all set. Which is why part of front-ends are taken care of by Zend_Form* functions and people who argue that ZF has nothing to do with front-end , well then that framework would be incomplete! We do not just have views/scripts or views/helpers we even have layouts and many functions to support front-end.
Why it doesn’t have?
Zend has created the framework to accomplish many things however, not everything is possible, even today we have jQuery haters! So compiling the list of things which a developer might use is bit of a problem. However, they have left the option for developers by giving them ability to edit HTML directly into the views and have also given decorators as a class under Zend_Form*.
What you should do?
Get a custom code of add a class and use Javascript for pop up. (personally, I prefer lightbox) rather than annoying users by giving a window pop up!
Hope this helps 🙂