Re: Javascript Modal Window

2010-02-10 Thread CrabbyPete
Thanks, but I was not clear in my question. If I use jQuery or any other javascript framework, to do a modal window from a link I have to load some html code that is the form Here is an example using thickbox in a template login In a view I load an html template with get_template() Do I do

Re: Javascript Modal Window

2010-02-08 Thread Shawn Milochik
You can use a jQuery UI Dialog. It can be modal, and you can easily use some jQuery AJAX to submit your login view and receive the response. Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us..

Javascript Modal Window

2010-02-08 Thread CrabbyPete
I want to use greybox to show a login form. My question is what is the best way to do this? Here is the line I am using in m template Login Should I directly link to the form, or use {% url xxx %}, or is there something else I should do? Also can I send it back up if I get errors? Any advice much