Re: Django Login Popup forms.

2018-02-05 Thread Matemática A3K
On Wed, Jan 31, 2018 at 8:36 PM, Udit Vashisht wrote: > Hi, I want to create a popup form for login. I have implemented the same > for signup by creating jsonresponse from signup view. But i could not do > the same for the login form. Can anyone help. > > Popus are

Django Login Popup forms.

2018-01-31 Thread Udit Vashisht
Hi, I want to create a popup form for login. I have implemented the same for signup by creating jsonresponse from signup view. But i could not do the same for the login form. Can anyone help. -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: django-popup-forms

2013-08-15 Thread Brian Millham
That's the only info I've been able to find on it. I did dig deeper, and finally made some progress. To my dismay, I found that django-popup-forms seems to require jquery. I'm trying to avoid jquery if at all possible. I planed on using HTML5/CSS3 instead, as I think I can get it do do all

Re: django-popup-forms

2013-08-14 Thread Timothy Makobu
Reading this https://github.com/joinourtalents/django-popup-forms It does show how to set it up. Where are you getting stuck? On Thu, Aug 15, 2013 at 2:41 AM, Brian Millham <bmill...@gmail.com> wrote: > I've been trying to use django-popup-forms, but with no success. Has >

django-popup-forms

2013-08-14 Thread Brian Millham
I've been trying to use django-popup-forms, but with no success. Has anyone used this? I suspect that I didn't install it correctly. I just ran sudo python setup.py install, but it doesn't seem available under django. It looks like a nice package, and will do exactly what I'm looking

Re: Is there an easy way to popup forms?

2013-02-14 Thread Felipe Prenholato
xist. >>> >>> If you wanted to stick with jQuery, check out jQuery UI - a set of >>> reusable components that might suit your needs. >>> >>> HTH >>> >>> Jirka >>> -- >>> *From: * frocco <far...@g

Re: Is there an easy way to popup forms?

2013-02-14 Thread Kelly Nicholes
@gmail.com > >> *Sender: * django...@googlegroups.com >> *Date: *Wed, 13 Feb 2013 11:35:36 -0800 (PST) >> *To: *<django...@googlegroups.com > >> *ReplyTo: * django...@googlegroups.com >> *Cc: *<teva...@googlemail.com > >> *Subject: *Re: Is th

Re: Is there an easy way to popup forms?

2013-02-14 Thread frocco
I get a popup for the first row only and it will not allow me to close the window. On Wednesday, February 13, 2013 11:12:44 AM UTC-5, frocco wrote: > > I have a form I want to popup and am having trouble getting this to work. > This is not in the admin page. > > Can someone give me an example? >

Re: Is there an easy way to popup forms?

2013-02-14 Thread Felipe Prenholato
You can't put {{ row.sku }} out of id. Try this: open the dialog This is a test $( "#dialog{{ row.sku }}" ).dialog({ autoOpen: false }); $( "#opener" ).click(function() { $( "#dialog{{ row.sku }}" ).dialog( "open" ); }); 2013/2/14 frocco > open

Re: Is there an easy way to popup forms?

2013-02-14 Thread frocco
I tried to get this working, but I can only display one box. How do I do this if I am displaying a list of products? open the dialog This is a test $( "#dialog"{{ row.sku }} ).dialog({ autoOpen: false }); $(

Re: Is there an easy way to popup forms?

2013-02-14 Thread Felipe Prenholato
> *From: * frocco <faro...@gmail.com> > *Sender: * django-users@googlegroups.com > *Date: *Wed, 13 Feb 2013 11:35:36 -0800 (PST) > *To: *<django-users@googlegroups.com> > *ReplyTo: * django-users@googlegroups.com > *Cc: *<tevans...@googlemail.com> > *Subject: *Re:

Re: Is there an easy way to popup forms?

2013-02-13 Thread jirka . vejrazka
te: Wed, 13 Feb 2013 11:35:36 To: <django-users@googlegroups.com> Reply-To: django-users@googlegroups.com Cc: <tevans...@googlemail.com> Subject: Re: Is there an easy way to popup forms? Thanks Tom, Do you know how I would have a form display using this? On Wednesday, February 13, 2

Re: Is there an easy way to popup forms?

2013-02-13 Thread frocco
Thanks Tom, Do you know how I would have a form display using this? On Wednesday, February 13, 2013 11:41:59 AM UTC-5, Tom Evans wrote: > > On Wed, Feb 13, 2013 at 4:12 PM, frocco > wrote: > > I have a form I want to popup and am having trouble getting this to > work. >

Re: Is there an easy way to popup forms?

2013-02-13 Thread Tom Evans
On Wed, Feb 13, 2013 at 4:12 PM, frocco wrote: > I have a form I want to popup and am having trouble getting this to work. > This is not in the admin page. > > Can someone give me an example? > > Thanks > An easy way to do a pop up form is to use a jqueryui dialog¹

Is there an easy way to popup forms?

2013-02-13 Thread frocco
I have a form I want to popup and am having trouble getting this to work. This is not in the admin page. Can someone give me an example? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: popup forms

2010-01-29 Thread Bhaskar Gara
That where I stuck.. I am new to Django so I confuse where to add what? what name i need to give to the widget,form etc., Can you please help me. Thank you Bhaskar On Jan 29, 1:45 am, andreas schmid wrote: > hi, yes it works perfectly :) > > follow the steps on the

Re: popup forms

2010-01-28 Thread andreas schmid
hi, yes it works perfectly :) follow the steps on the turorial here http://www.hoboes.com/Mimsy/hacks/replicating-djangos-admin/ sometimes its not so clear where to put the code... if you have questions ill try to help you. ill make a "more complete" tutorial on my blog soon. Bhaskar Gara

Re: popup forms

2009-11-30 Thread andreas schmid
Emily Rodgers wrote: > > On Oct 13, 1:20 pm, andreas schmid wrote: > >> thank you very much for pointing me to the right path!! >> ill try to understand the behaviour and report about my progress... >> >> Andrew Ingram wrote: >> >>> I'm assuming you are doing this

Re: popup forms

2009-10-13 Thread andreas schmid
Emily Rodgers wrote: > > On Oct 13, 1:20 pm, andreas schmid wrote: > >> thank you very much for pointing me to the right path!! >> ill try to understand the behaviour and report about my progress... >> >> Andrew Ingram wrote: >> >>> I'm assuming you are doing this

Re: popup forms

2009-10-13 Thread Emily Rodgers
On Oct 13, 1:20 pm, andreas schmid wrote: > thank you very much for pointing me to the right path!! > ill try to understand the behaviour and report about my progress... > > Andrew Ingram wrote: > > I'm assuming you are doing this somewhere other than the admin, or in > >

Re: popup forms

2009-10-13 Thread Héctor García
Oh all right, sorry, I misread first paragraph On Tue, Oct 13, 2009 at 1:57 PM, andreas schmid wrote: > > thx mate... but i need it on the front end ;) > > nabucosound wrote: >> This is the default behaviour in Django Admin, dude... >> >> On Oct 13, 9:43 am, andreas schmid

Re: popup forms

2009-10-13 Thread andreas schmid
thank you very much for pointing me to the right path!! ill try to understand the behaviour and report about my progress... Andrew Ingram wrote: > I'm assuming you are doing this somewhere other than the admin, or in > custom views, so I'll explain how the admin stuff works. > > Basically, when

Re: popup forms

2009-10-13 Thread Andrew Ingram
I'm assuming you are doing this somewhere other than the admin, or in custom views, so I'll explain how the admin stuff works. Basically, when you create the popup window you give it a name which can be used the uniquely identify the field that is using the popup (some variant on the field id

Re: popup forms

2009-10-13 Thread andreas schmid
thx mate... but i need it on the front end ;) nabucosound wrote: > This is the default behaviour in Django Admin, dude... > > On Oct 13, 9:43 am, andreas schmid wrote: > >> hi, >> >> how can i achieve a behaviour like in the admin backend where i can add >> a related

Re: popup forms

2009-10-13 Thread nabucosound
This is the default behaviour in Django Admin, dude... On Oct 13, 9:43 am, andreas schmid wrote: > hi, > > how can i achieve a behaviour like in the admin backend where i can add > a related object through a popup window and have it selectable after i > saved the related

popup forms

2009-10-13 Thread andreas schmid
hi, how can i achieve a behaviour like in the admin backend where i can add a related object through a popup window and have it selectable after i saved the related form? for example: im copleting the form book and i have to select the author but it doesnt exist yet... so i click on the + (add)