Kanban view as a default

Hi is there any way to set kanban view as a default view for task module??
Because sometimes it goes back to the list view and user have to choose kanban board again.

Also I would like task module not to remember last used filters. I tried to uncheck “remember last selected value” in doctype field options but it doesn’t do the trick :frowning:

Thanks
Damian

2 Likes

We are working on the ListView to fix these type of problems. Stay tuned.

set_filter_state=false

This will not save your current filter

Yes, we want to set Report view as default view for Shift Assignment. Can’t figure out how to do it.

@Damian_Mosiolek did you manage to set Kanban View as default? How did you do it?

I’m guessing you didn’t find a way either?

go to custom script and add this

DocType : Task
apply to : List View

frappe.listview_settings[‘Task’].onload = function(listview) {
window.location.href = “/app/task/view/kanban/”;
};

1 Like

I tested that but it didn’t seem to work. I think the URLs for projects are a little more complicated.

In v14 (=> v14.13.0) you can easily set default view in doctype properties. Customize form - View settings.

Hope this helps.