Re: [fw-general] jQuery Ajax link inside container- how to make this?

2009-11-08 Thread JaviTILT
Hi, just try to put into the loaded page:

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread vladimirn
Thanks. Can u just tell me why Edit and Delete are not inside a href in hello.phtml? It wont allow me to post how link looks like so i will improvize: [Delete] See? [Delete] is totally out of link tag. -- View this message in context: http://www.nabble.com/jQuery-Ajax-link-inside-container--ho

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread Benjamin Eberlei
you should probably generalize your jQuery link by writing that on your own. This way you can supply the needed jQuery code already in your main view. I cannot come up with another idea how that would work with the ajaxLink helper. Sorry :-) On Wednesday 26 November 2008 18:34:15 vladimirn wrot

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread vladimirn
Just to add this: i looked at source after clicked on first ajaxLink and i have this: # [ Edit ]  # [ Delete ] Somehow, [ Edit ] is out of a href tags.. -- View this message in context: http://www.nabble.com/jQuery-Ajax-link-inside-container--how-to-make-this--tp20703903p20705645.html Sent

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread vladimirn
Thank you for reply. I tried to set up like this, but still wont work. I think that would be big deal to make such thing to work, so one can use ajaxLink inside container requested by another ajaxLInk. Is there anything else i can try? i would not like to abandon this, cause i think its a great id

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread vladimirn
I went thru http://framework.zend.com/manual/en/zendx.jquery.view.html#zendx.jquery.view.helpers.ajaxlink and it says that dataType = html is default. However, i explicitly gave this to my ajaxLink and still wont work. I tried to change to dataType=text and i am getting code of my hello.phtml How

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread Benjamin Eberlei
Hello, i have looked at the issue again, and what you try to achieve is not really possible. Because ajaxLink generally creates jQuery javascript and attaches it to the jQuery stack which you render with jQuery(); ?> in your view. Wenn you call the ajax content and return new links that are cr

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread vladimirn
Well, i added dataType to all 3 links, but no changes at all vladimirn wrote: > > THank you for your quick reply. > Can you show me how to this, or point me somewhere where i can learn that > please? > And where to add that? > array('update' => '#contentJ', > 'noscript' => false, >

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread vladimirn
THank you for your quick reply. Can you show me how to this, or point me somewhere where i can learn that please? And where to add that? array('update' => '#contentJ', 'noscript' => false, 'method' => 'POST', 'dataType'=>'html' ) Like that? beberlei wrote: > > > Y

Re: [fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread Benjamin Eberlei
You have to give dataType = html as additoinal parameter to the options, because for security by default ajax responses are handled as text. On Wed, 26 Nov 2008 08:07:39 -0800 (PST), vladimirn <[EMAIL PROTECTED]> wrote: > > I would like to figure this out: > On my index.phtml page is a link: > -

[fw-general] jQuery Ajax link inside container- how to make this?

2008-11-26 Thread vladimirn
I would like to figure this out: On my index.phtml page is a link: --- index.phtml jQuery ();?> ajaxLink( "Home", "/admin/index/hello",