baton_cl_rows_attributes #285
Answered
by
AlanL-django
AlanL-django
asked this question in
Q&A
-
Hi. I'm currently in the process of migrating an old Suit app to Baton. Quite happy so far with tabs & menus, now I'm experimenting with changelist row attributes. I've defined a Django 5.0.1, Baton 3.0 |
Beta Was this translation helpful? Give feedback.
Answered by
AlanL-django
Feb 1, 2024
Replies: 1 comment 2 replies
-
Hi @AlanL-django my test app also runs with Django 5 and Can you share the code? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the quick response. I had the wrong parameter names: I declared my method as
def baton_cl_rows_attributes(self, request, changelist):
instead of
def baton_cl_rows_attributes(self, request, cl):
Working fine now with the correct parameter namss
I usually call with positional rather than named parameters in my own code because I am lazy; It looks llike you are not