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
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
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
>> 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
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
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
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
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
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
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
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-
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
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
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
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
...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.
--~--~-~--~~--
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
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
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
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:
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
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/
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
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
===
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@
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
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)
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):
>
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
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
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
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
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
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.
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.
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
--~--~-~-
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
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
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.
--~--~-~--~~~---
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
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
41 matches
Mail list logo