ForumsSearch



Search results for "Posted by alexandrephili"
Author Message
alexandrephili

Score: 0
Hi Jake,

I guess this feature is not yet implemented.

I have implemented a javascript code to implement the shortcut that focus on the next task, or on the first task if no focus has been set yet on the grid.

It can be used using "Chrome Shortcut Manager" extension.

If Toodledo Team could implement it directly in the application, it would be great.

This shortcut is extremely convenient.

Here it goes :

var activeid;
if (typeof document.activeElement != 'undefined' && document.activeElement.id.substr(0,4)=='ksat') {
activeid=document.activeElement.id;
tasks = document.querySelectorAll('[id^=tsk]');
for (i = 0; i < tasks.length; i++) {
if (i+1==tasks.length) {
tasks[0].click();
break;
}
if (tasks[i].id.substr(3)==activeid.substr(4)) {
tasks[i+1].click();
break;
}
}

} else {
document.querySelectorAll('[id^=tsk]')[0].click();
}


Alexandre
alexandrephili

Score: 0
That would be greeeat ! Thank you Jake.

Shall I add it as a suggestion in the forum for followup purposes ?

Kind regards,

Alexandre
alexandrephili

Score: 0
Hello,

In the web version of ToodleDo, I have enabled keyword shortcut.

I see I can swich between lines with the shortcut Ctrl+up/down when I have set the focus by mouse on a line.

But is it possible to skip the mouse step and to set directly the focus on the task grid ?

This would be greatly appreciated.

Kind regards,

Alexandre
alexandrephili

Score: 0
Hello,

I noticed that french is supported.

French translations are well implemented in the iPhone app.

But not in the web version.

Will it be fixed soon ?

Kind regards

Alexandre