Customizing Views using Custom App

Hi all,

How do I do changes to Doctype Views like Calendar, Kanban etc. using a Custom App?

Thanks,
Palash

for tree view and calendar view you should add below line in hook.py of custom app

treeviews = [‘doctype_name’]
calendars = [‘doctype_name’]

Hi,

Thanks for replying, but this will be per doctype. What if I want to change something in Core views in general? Will a “*” for doctype name work here?.

This doesent yet cover Kanban Board View.

Thanks

OK.
yes for calendar view i think you should change in doctype_calendar.js file and also you go through this : https://fullcalendar.io/
frappe used fullcalendar for calendar view.

1 Like