You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Model file_item = models.FileField(blank=False, verbose_name=_('ABC'),)
Admin
def ModelAdmin():
action = ['bulk_edit_action']
bulk_list_display = ['file_item']
form = FileFieldForm
def FileFieldForm(RalphAdminForm):
file_item = forms.FileField()
def clean_file_item():
# do some stuff
Expected behaviour
Want this file field clean method to be called
The text was updated successfully, but these errors were encountered:
vmathurpaytm
changed the title
clean method for buld edit method. is not getting called
clean method for bulk edit method is not getting called
Jan 8, 2022
Model
file_item = models.FileField(blank=False, verbose_name=_('ABC'),)
Admin
Expected behaviour
Want this file field clean method to be called
The text was updated successfully, but these errors were encountered: