RE: [fw-general] About the css issue

2008-06-05 Thread Vincent de Lau
> Using "/" implies that you are looking for a resource off the root of > your domain. If your site lives in a subdirectory of your doc root, > you'll run into some problems. > In order to ensure cross site/installation compatibility, you may want > to look into using a simple View Helper to get th

RE: [fw-general] About the css issue

2008-06-04 Thread Bagus Nugroho
] About the css issue Using "/" implies that you are looking for a resource off the root of your domain. If your site lives in a subdirectory of your doc root, you'll run into some problems. In order to ensure cross site/installation compatibility, you may want to look into using a sim

Re: [fw-general] About the css issue

2008-06-04 Thread Jason Webster
Using "/" implies that you are looking for a resource off the root of your domain. If your site lives in a subdirectory of your doc root, you'll run into some problems. In order to ensure cross site/installation compatibility, you may want to look into using a simple View Helper to get the base

Re: [fw-general] About the css issue

2008-06-04 Thread Bart McLeod
I don't know if my previous answer made it to the list, at leat I didn't see it come by. If css is not applied, it may be a path issue. Your url is different between default and other action: http://www.example.com/ (default) http://www.example.com/myaction/index/hallo/world (myaction) So path

Re: [fw-general] About the css issue

2008-06-04 Thread Rohit83
no,i have not set the diffrent helper paths , and not only for forms the CSS not applied for any other stuff like i write different action to print Hello World but no CSS applies any Idea! Bart McLeod wrote: > > first: > do not override the constructor, override the init() method! Makes li

Re: [fw-general] About the css issue

2008-06-04 Thread Bart McLeod
first: do not override the constructor, override the init() method! Makes life easier. second: if default action CAN find all decorators and other action can't, did you set a different helper path in one of the actions? Try swapping the names of the actions functions and call them, see what ha

Re: [fw-general] About the css issue

2008-06-04 Thread Rohit83
I have written the code given below for form and call this code inside the indexAction class forms_addclubForm extends Zend_Form { public function __construct($options = null) { parent::__construct($options); $this->setName('contact_us'); $name = new Zend_Form

Re: [fw-general] About the css issue

2008-06-04 Thread Bart McLeod
Did you apply the decorators in the indexAction of in the formbuilder function? Rohit83 schreef: Hi, I have written IndexController and in that controller under indexAction i have called form containing two fields,lets say username and password.Now i applied the decorators to the form so it app