morlandi / django-ajax-datatable

A Django app which provides the integration of a Django project with the jQuery Javascript library DataTables.net
MIT License
204 stars 64 forks source link

How to change id column name from pk to something else #95

Open b-ibragimov opened 1 year ago

b-ibragimov commented 1 year ago

How to change id column name from pk to something else

DrDamnation commented 1 year ago

in column_defs use 'title'

column_defs = [{ 'name': 'pk', 'title': 'New Name PK', },