- Status New
- Percent Complete
- Task Type Feature Request
- Category User Interface
- Assigned To No-one
- Operating System All
- Severity Low
- Priority Very Low
- Reported Version 1.0 alpha1
- Due in Version 2.0
-
Due Date
Undecided
- Votes
- Private
FS#2013 - personal task list column selection and positioning
Currently the appearence of the task list table is configured system wide for all project view and project wide for project task list views.
Even more fancy and for power users would be if the user can set his own project column list view preferences for projects.
While the project columns for the task list are configured by "visible_columns"
we could use the project wide "visible_fields" as allowed columns the user may configure as his personal preference. If the user doesn't configure his own list, the project default list is used. The user should have the option to reset to project default. (e.g. empty personal "visible_fields" )
In this case the description for setting "visible_fields" on the project management configuration page must be adapted too.
Probably a new table required something like:
CREATE TABLE {user_projects} ( user_id int, project_id, columns varchar(255) DEFAULT '', );
or
CREATE TABLE {user_projects} ( user_id int, project_id, columns varchar(32) DEFAULT NULL, sort int, );
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
This could be in a first step also be done temporary storage selectons without extending database.
For instance by storing in browsers sessionStorage or justs passing in the GET around.
We could do this similiar to http://demo.redmine.org They use a similiar double select like we do on pm and admin settings for column selection.