Editable Tables

2012-09-01 Thread Sait Maraşlıoğlu
Just seen a demo page http://nextgensim.info/grids so beautiful grids, lift framework can do that, I guess, havent dig much but as far as I seen, its an alternative framework. Can anybody tell me how to create this kind of interactive tables? What django has to offer, if not What keywords, I need

Re: Editable Tables

2012-09-02 Thread Sait Maraşlıoğlu
Just need to display tables, but it has to be modular. Lets say I have a facebook like site, and my user has 5 friends. How I can display those 5 and let user edit it, lets say, edit their nicknames and this changes affect the database? On Sunday, 2 September 2012 00:58:25 UTC+3, Sait

Re: Editable Tables

2012-09-05 Thread Sait Maraşlıoğlu
u can show in the listing page. its similar. is it a dream? was this second version of I have a dream speech? thx On Sunday, 2 September 2012 00:58:25 UTC+3, Sait Maraşlıoğlu wrote: > > Just seen a demo page > http://nextgensim.info/grids > so beautiful grids, > lift framework can

Re: Editable Tables

2012-09-05 Thread Sait Maraşlıoğlu
le model, lets say its DHTMLX . at the end, I will have my view, generated with search options and a few buttons to search,view,edit... is it possible, not required to be ready to use, I just looking for a way to achieve it. thx again. * On Sunday, 2 September 2012 00:58:25 UTC+3, Sait

Re: Editable Tables

2012-09-05 Thread Sait Maraşlıoğlu
> http://www.rkblog.rk.edu.pl/w/p/using-dhtmlxgrid-django-application/ > it's easy once you get the hang of it to make custom grids for each view, > but not as cut and dry as it seems you are looking for. > > On Wednesday, September 5, 2012 4:27:39 AM UTC-4, Sait Maraşlıoğlu wrote

using dhtmlx tables via django

2012-09-09 Thread Sait Maraşlıoğlu
Hi, recently, I ve been strugling with django (having a good time) and meanwhile, I tried to find and use a grid. I found dhtmlx thx to django-users forum. Now, I think best approah will be structering grid using xml output. Below u will find what kind xml, dhtmlx needs. dhtmlgrid needs a xml o

Iphone applications via django

2012-09-11 Thread Sait Maraşlıoğlu
How do you create iphone applications via django. Application logic will be django but what about user interface, do we do that with django too? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://g

Re: Iphone applications via django

2012-09-11 Thread Sait Maraşlıoğlu
r the app - but the actual interface >>> is done using the methods mentioned by Mario previously. >>> >>> Cal >>> >>> On Tue, Sep 11, 2012 at 11:09 AM, Mario Gudelj wrote: >>> >>>> Nope. You do objective c or html and js with so

Re: Iphone applications via django

2012-09-11 Thread Sait Maraşlıoğlu
e look like a native iOS > Application. There's pros and cons to each of these methods. One or the > other may be easier dependent upon what you're trying to accomplish in this > particular Mobile Application as well as your skill level and how much > time/motivation you hav

Re: Iphone applications via django

2012-09-12 Thread Sait Maraşlıoğlu
via > handler. > > > > You can use this json data to both web and mobile interface. > > > > Currently I am working on the same cheers... Thanks for visiting > > <http://www.f2finterview.com/> > > > > On Tue, Sep 11, 2012 at 2:29 PM, Sait

Django html indention

2012-09-12 Thread Sait Maraşlıoğlu
Im using eclipse and it has some nice features about indention, but its only works with html css ... , as soon as I press ctrl+shift+f, it makes indentions. But if I use django tags, it gets my code worse and sometimes causes errors. is there a way to make this indentions easier? I know python in

handling xml response

2012-09-14 Thread Sait Maraşlıoğlu
I dont know, how to handle an xml response with django. dhtmlx returns someting like that. ?gr_id=*6*&c0=*abc*&c1=*dsdsd*&c2=*6*&c3=*1234*&c4=*this%20is%20Sparta!* gr_id = 6 c0= abc c1 = dsdsd c2= 6 and so on ... These fields corresponds a field in my django model and I dont have an idea how to h

handling incoming xml response

2012-09-28 Thread Sait Maraşlıoğlu
Can u tell me how u handle incoming xml responses, I cant find a way to make them comprehensible and ready to use. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-

Re: Using ModelForms

2015-08-24 Thread Sait Maraşlıoğlu
instead of model_instance.sub_date = timezone.now() I suggest you to declare a default for that field in your model definition. default = timezone.now() On Thursday, 20 August 2015 23:41:05 UTC+3, Hugo Kitano wrote: > > Hi, I'm a beginner using Django, and I'm having trouble using model forms

Crispy form layout stored in db

2015-08-24 Thread Sait Maraşlıoğlu
You can see my question, I can clarify it if needed. http://stackoverflow.com/questions/32192693/building-crispy-form-from-database Basically I store my form layout in db and let user change it. I got a structural model and got it working but when it came consume the queryset and create a layout

Re: Forms questions

2015-08-24 Thread Sait Maraşlıoğlu
Can you provide the template code? On Tuesday, 25 August 2015 00:16:40 UTC+3, Hugo Kitano wrote: > > Hi, I'm trying to figure out what's wrong with my form: > > I've noticed that every time I load my submit view, the request.method is > GET not POST, so nothing gets saved to the database. > > >