We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@umesh-krishna Can you think of any clever way to make properties available in the server-side data table view?
I.e. say my models look like:
class Bar(models.Model): foo = models.ForeignKey(Foo, ....) class Foo(models.Model): field1 = ... field2 = ... @property def number_of_bars(self): return Bar.objects.filter(foo=self).count()
How can I get number_of_bars into the datatable?
number_of_bars
The text was updated successfully, but these errors were encountered:
I tried this:
class FooViewServerSide(ServerSideDatatableView): queryset = models.Foo.objects.annotate(number_of_bars =Count('bar')).all() columns = ['field1', 'field2', 'number_of_bars']
but, as you probably won't be surprised to learn, it doesn't work.
django.core.exceptions.FieldError: Cannot resolve keyword 'number_of_bars' into field
Sorry, something went wrong.
No branches or pull requests
@umesh-krishna Can you think of any clever way to make properties available in the server-side data table view?
I.e. say my models look like:
How can I get
number_of_bars
into the datatable?The text was updated successfully, but these errors were encountered: