Re: want to Implement Inline editing in Django.. see this link(https://editor.datatables.net/examples/inline-editing/submitButton.html) want the some help with code. Thanks

2019-04-21 Thread iakash95768
On Sunday, April 21, 2019 at 11:21:56 PM UTC+5:30, iakas...@gmail.com wrote: > > http://django-datatable-view.appspot.com/x-editable-columns/ got an > example which is implemented in Django but failed to understand the code. > Need help in implementation. -- You received this message beca

Re: want to Implement Inline editing in Django.. see this link(https://editor.datatables.net/examples/inline-editing/submitButton.html) want the some help with code. Thanks

2019-04-21 Thread iakash95768
http://django-datatable-view.appspot.com/x-editable-columns/ got an example which is implemented in Django but failed to understand the code. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emai

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-22 Thread Joel Mathew
n only give you suggestions as we are far away from >>> you. How is really upto YOU. >>> What you are trying to achieve is basically a front end task. You only >>> have knowledge of django which is a backend technology. >>> >>> You have many options to mak

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-21 Thread VeeraNagaRaja Sankar
>> 1. You have to learn to use jquery to do it the way you want it. >> 2. Use the default UpdateView from django where EDIT/UPDATE view will be >> shown separately. i.e. let go of inline editing feature. >> 3. Find someone who will code it for you. >> 4. Any

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-20 Thread Derek
use jquery to do it the way you want it. > 2. Use the default UpdateView from django where EDIT/UPDATE view will be > shown separately. i.e. let go of inline editing feature. > 3. Find someone who will code it for you. > 4. Any other that you can think of. > > Happy Codi

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-20 Thread Chetan Ganji
to learn to use jquery to do it the way you want it. 2. Use the default UpdateView from django where EDIT/UPDATE view will be shown separately. i.e. let go of inline editing feature. 3. Find someone who will code it for you. 4. Any other that you can think of. Happy Coding :) Regards, Chetan

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-19 Thread VeeraNagaRaja Sankar
hi, means, i am only aware of Django so i need any code reference to do that thank you, Best Regards, Inti VeeraNagaRaja Sankar,M.Tech(IT) M: 9985864383 intisank...@gmail.com https://about.me/veeranagarajasankar On Wed, Mar 20, 2019 at 11:55 AM Derek wrote: > That is not an answerable quest

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-19 Thread Derek
That is not an answerable question. We have given you suggestions - the "how" is up to you. On Tuesday, 19 March 2019 09:36:27 UTC+2, veera nagaraja sankar Inti wrote: > > > how ? > > On Monday, March 4, 2019 at 12:40:03 PM UTC+5:30, Derek wrote: >> >> Grid / tabular editing outside of the a

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-19 Thread veera nagaraja sankar Inti
how ? On Monday, March 4, 2019 at 12:40:03 PM UTC+5:30, Derek wrote: > > Grid / tabular editing outside of the admin is tricky; I have not been > able to manage it and have not found a good app for it. > > Here are some suggested reading: > > * https://www.ibm.com/developerworks/library/wa-d

RE: Is there any inline editing the data and delete data in table in Django?

2019-03-04 Thread Matthew Pava
See https://datatables.net. They have a nice editor that you do have to pay for. From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Derek Sent: Monday, March 4, 2019 1:10 AM To: Django users Subject: Re: Is there any inline editing the data and delete data in

Re: Is there any inline editing the data and delete data in table in Django?

2019-03-03 Thread Derek
Grid / tabular editing outside of the admin is tricky; I have not been able to manage it and have not found a good app for it. Here are some suggested reading: * https://www.ibm.com/developerworks/library/wa-django/index.html * https://bossanova.uk/jexcel * https://medium.com/ag-grid/building-

Extend User model, want additional inline editing for the extended model

2011-06-13 Thread robinne
I have extended the django user model with a "Member" model. I would like to be able to administer (on admin site) the user - all data from both models. I need the email and name from User, but everything else is from "Member". I have set it up so that I can get all the data on one form, but I cann

Inline editing of related models in tree-like fashion

2010-10-07 Thread Neo
I'm stuck with the inline Tree-like-eiditing of related models on same page. I've got three models, A, B and C. Class A Class B fb = foreignkey(A) Class C fc = foreignkey(B) In admin.py I'm doing something like AdminA inlines = [inlineB] AdminB

Re: m2m relationship by intermediary model and inline editing

2008-11-30 Thread mrsource
it only the parent model, I get an empty field error validation on > the extra inline model. > Can I escape this validation ? Or is not possible to use inline > editing when I have an intermediary model? > If I put blank=True in the field articolo of intermediary model

m2m relationship by intermediary model and inline editing

2008-11-29 Thread mrsource
m is that if I don't valorize the second filed (articolo),and I edit only the parent model, I get an empty field error validation on the extra inline model. Can I escape this validation ? Or is not possible to use inline editing when I have an intermediary model? If I put blank=True

Re: Inline Editing

2008-08-20 Thread peter_g
...ah, sorry: I was not explicit enough. I'm looking for the correct way to display one entry block of "DemoThing" fields below "MainThing", without any notions of "#1" etc. And upon saving, Data are stored in both tables. So that it follows a OneToOne intention. --~--~-~--~~--

Inline Editing

2008-08-20 Thread peter_g
Hi! I use the SVN release and have a newbie problem in the admin area: I try to display fields for my DemoThing class/model, which I didn't model with a OneToOneField, but followed suggestions of a ForeignKey- approach. What do I have to change or add so that not only my "MainThing" gets displ

Re: Choose the fields for inline editing

2008-06-11 Thread Gonzalo Delgado
El Mon, 9 Jun 2008 17:19:23 -0700 (PDT) Cliff <[EMAIL PROTECTED]> escribió: > > Hi, > I really like the inline editing option, but found that sometimes I > don't want to list all the attributes of an object for inline editing. > I guess there is a way to do this, bu

Choose the fields for inline editing

2008-06-09 Thread Cliff
Hi, I really like the inline editing option, but found that sometimes I don't want to list all the attributes of an object for inline editing. I guess there is a way to do this, but I cannot find it. Really appreciate if someone can help me out. Thanks

Re: Inline editing an object related to itself.

2008-06-07 Thread Cliff
Just to throw in another variable. The recursion comes from file django/db/models.py in method get_follow: def get_follow(self, override=None): follow = {} for f in self.fields + self.many_to_many + self.get_all_related_objects(): if override and f.name in override:

Inline editing an object related to itself.

2008-06-07 Thread Cliff
Hi, This is the simplified version of my code: class Test(models.Model): parent = models.ForeignKey('self',edit_inline=models.TABULAR) and the error I got: RuntimeError: maximum recursion depth exceeded I can understand that's because it's doing recursive for the child object, grand child ob

Re: Many to Many Inline Editing

2008-05-13 Thread Wes Winham
sted a few times on the list here, but it always > seems to become a discussion about the many to many implementation and > move away from making it work as the one to many inline editing works > in the newforms-admin branch. > > So... does anyone have a fix for being able to add/edit/

Many to Many Inline Editing

2008-05-12 Thread JReynolds
I have seen this posted a few times on the list here, but it always seems to become a discussion about the many to many implementation and move away from making it work as the one to many inline editing works in the newforms-admin branch. So... does anyone have a fix for being able to add/edit

Inline editing quirk in admin - can you help me understand why?

2008-04-30 Thread Jef
relations. But I can't seem to do that by default from the admin view if I've got it set up the way you see below. If I take the inline editing out it works just fine (that is, I can edit Articles as expected). Where have I gone wrong? And thanks in advance! -Jef ===

Re: inline editing?

2008-02-21 Thread Almir Karic
ok, thanks /me goes in the corner RTFM :-) -- error: one bad user found in front of screen --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@

Re: inline editing?

2008-02-21 Thread Michael Newman
As Karen said, You didn't set up the inline right. Read through the docs she pointed you to and fix your errors and the big error will go away. On Feb 21, 1:31 pm, "Almir Karic" <[EMAIL PROTECTED]> wrote: > On Thu, Feb 21, 2008 at 3:02 PM, Karen Tracey <[EMAIL PROTECTED]> wrote: > > On Thu, Feb 2

Re: [newforms-admin] inline editing?

2008-02-21 Thread Almir Karic
On Thu, Feb 21, 2008 at 3:02 PM, Karen Tracey <[EMAIL PROTECTED]> wrote: > On Thu, Feb 21, 2008 at 3:55 AM, Almir Karic <[EMAIL PROTECTED]> wrote: > > > > > from django.db import models > > from django.contrib import admin > > > > > > # Create your models here. > > > > class Category(models.Model)

Re: [newforms-admin] inline editing?

2008-02-21 Thread Karen Tracey
On Thu, Feb 21, 2008 at 3:55 AM, Almir Karic <[EMAIL PROTECTED]> wrote: > > from django.db import models > from django.contrib import admin > > > # Create your models here. > > class Category(models.Model): >name = models.CharField(max_length=50) > >def __str__(self): >

[newforms-admin] inline editing?

2008-02-21 Thread Almir Karic
from django.db import models from django.contrib import admin # Create your models here. class Category(models.Model): name = models.CharField(max_length=50) def __str__(self): return self.name class Forum(models.Model): cat = models.ForeignKey(Category

permissions and inline editing

2008-01-05 Thread GuyBowden
ue foreign key. I then set up inline editing for the admin options allowing only one row to be shown. So far so good - I can edit the main content and then the admin settings for that content. I thought that if I denied access to my regular user group to the admin field, they wouldn't be able to

Best way to handle "inline" editing of objects?

2006-11-01 Thread foot
Hiya, We've got a couple of "large models" (large as in they have lots of fields), which are closely related (reference each other through Foreign Keys) and are edited "inline" through a single very large form. This is currently achieved by using the 'follow' keyword argument passed to an AutoMa

Problem with models.HORIZONTAL in admin inline editing

2006-08-28 Thread Hancock, David (DHANCOCK)
Title: Problem with models.HORIZONTAL in admin inline editing I’m seeing different behavior for filter_interface=models.HORIZONTAL when I’m editing inline vs. adding an object directly. I’ve tried to boil this down to a short model that demonstrates the problem: from django.db import models

Re: Inline Editing in Admin Interface

2006-06-19 Thread Matthew Flanagan
On 6/20/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > On 6/20/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > > > > On 6/16/06, Tyson Tate <[EMAIL PROTECTED]> wrote: > > > > > > On Jun 16, 2006, at 3:02 PM, Joseph Kocherhans wrote: > > > > > > > Get rid of the inner Admin class on your tag

Re: Inline Editing in Admin Interface

2006-06-19 Thread Matthew Flanagan
On 6/20/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > > On 6/16/06, Tyson Tate <[EMAIL PROTECTED]> wrote: > > > > On Jun 16, 2006, at 3:02 PM, Joseph Kocherhans wrote: > > > > > Get rid of the inner Admin class on your tag object. That's what > > > causes it to show up on the main admin page.

Re: Inline Editing in Admin Interface

2006-06-19 Thread Joseph Kocherhans
On 6/16/06, Tyson Tate <[EMAIL PROTECTED]> wrote: > > On Jun 16, 2006, at 3:02 PM, Joseph Kocherhans wrote: > > > Get rid of the inner Admin class on your tag object. That's what > > causes it to show up on the main admin page. > > > > Joseph > > If I do that, then I can't add any objects inline.

Re: Inline Editing in Admin Interface

2006-06-16 Thread Tyson Tate
On Jun 16, 2006, at 3:02 PM, Joseph Kocherhans wrote: > Get rid of the inner Admin class on your tag object. That's what > causes it to show up on the main admin page. > > Joseph If I do that, then I can't add any objects inline. Does Django not allow one to do this? -Tyson --~--~-~-

Re: Inline Editing in Admin Interface

2006-06-16 Thread Joseph Kocherhans
On 6/16/06, Tyson Tate <[EMAIL PROTECTED]> wrote: > > How do I allow, in something like the following model, for "Tag" to > be inline edited and only inline edited from Entry's edit page. I've > tried many of the usual methods given in the Docs (core=True, > edit_inline=models.STACKED, etc.), but

Inline Editing in Admin Interface

2006-06-16 Thread Tyson Tate
I've been pestering the IRC channel, Googling like crazy, and reading the docs, but for some reason, I can't, for the life of me, find the answer to the following question: How do I allow, in something like the following model, for "Tag" to be inline edited and only inline edited from Entry

Custom templates and inline editing

2006-06-11 Thread [EMAIL PROTECTED]
How can I display the form fields for an object that should be edited inline in a custom template? I'm passing a FormWrapper to my template, but I'm just not sure how to display forms for inline objects or if it's even possible at this time. Thanks. --~--~-~--~~~---

Multi-level inline editing (custom)

2006-05-27 Thread [EMAIL PROTECTED]
Hi all I've just started porting one of our in-house applications to Django to see if it can save us some time. We're currently stuck with a horrible Java framework which is an absolute pain to work with, so I'd be very happy to switch. However, if I'm gonna sell that to the bosses, I'll have to

Inline editing for aggregation relationships

2005-08-21 Thread Sam Newman
Hi all, The django-admin interface supports inline-editing for related elements - for example a Pizza contains Toppings, and when editing a Pizza you can create related Toppings. In that scenario the Topping only has an admin interface via inline editing of Pizza - which given a classic