[Fixed]-'QuerySet' object has no attribute 'filter_on_search' Python Django

1👍

✅

The method you have created in MyClassManager has the wrong name:

def get_query_set(self):

Which should instead be:

# query_set -> queryset
def get_queryset(self):

0👍

You are using filter_on_search on your queryset. Instead, you need to use it in lieu of objects.

So, you would star by doing

obj_list = klass.filter_on_search

However, looks like you may want to move all of your logic from the view to the manager.

For what it’s worth, there is an awesome package that does exactly what you want in integrating Django with Datatables: https://pypi.python.org/pypi/django-datatables-view

Leave a comment