Mehmet Dogan

Results 27 comments of Mehmet Dogan

Theoretically there should not even be need for: ``` ordering=['parent_id_or_id'] ``` if the queryset given was iterated with the initial order intact, however, that does not seem to be the...

Might be redundant detail but I wanted to take note of it. I traced this problem down to this [function](https://cdn.datatables.net/colreorder/1.3.2/js/dataTables.colReorder.js): ``` $.fn.dataTableExt.oApi.fnColReorder = function ( oSettings, iFrom, iTo, drop, invalidateRows...

while you are at it, if you could have a look at this, that would be perfect!

each of CRUD actions pertain to a *single* object/record, whereas datatable-view is grid; in other words, an organized listing of *multiple* records. Therefore, I think having CRUD built into datatable-view...

I take it back, involvement of xeditable in datatableview is much more than a helper

For example, here is my complete setting: ``` REQUEST_IGNORE_USER_AGENTS = ( r'^$', # ignore requests with no user agent string r'^(?!Mozilla).*', # all browsers' user agent ~ Mozilla* https://stackoverflow.com/questions/1114254/ r'Googlebot',...

I added some comments to #49 since that had more insight on the issue of whether and how to fallback to globals when object level fails. I am not sure...

Depending on the design decisions being made I have intent to work on some of these issues.

#327 seems fixed to me. ``` brandon=Person.objects.get(first_name='BRANDON') brandon.is_superuser False school=School.objects.get(pk=1) get_users_with_perms(school, attach_perms=True, with_superusers=False, with_group_users=False) {} assign_perm('add_school', brandon, school) get_users_with_perms(school, attach_perms=True, with_superusers=False, with_group_users=False) {: ['add_school']} mehmet=Person.objects.get(first_name='Mehmet') mehmet.is_superuser True get_users_with_perms(school, attach_perms=True, with_superusers=True,...

On #155: Addition of the following two lines is requested to `get_obj_perms_field_choices (self)`: ``` if self.exclude_default: choices = list(set(choices).intersection(self.obj._meta.permissions)) ``` to exclude the Model's default permissions. First, I am not...