Activate KeyTable with button
Activate KeyTable with button
tiitremmel
Posts: 5Questions: 0Answers: 0
How to activate(focus - so that it could be navigate with keyboard) KeyTable with input button?
So far i'm here
[code]
$("#t").click(function(){
keys.fnSetPosition( 0, 0 );
});
[/code]
But i know that it can not work because if you click on #t the table looses focus.
Anybody ideas?
So far i'm here
[code]
$("#t").click(function(){
keys.fnSetPosition( 0, 0 );
});
[/code]
But i know that it can not work because if you click on #t the table looses focus.
Anybody ideas?
This discussion has been closed.
Replies
[code]
$("#t").click(function(){
setTimeout( function () { keys.fnSetPosition( 0, 0 ); }, 20 );
});
[/code]
This might also work:
[code]
$("#t").click(function(){
keys.fnSetPosition( 0, 0 );
return false;
});
[/code]
Allan
Tiitremmel.. have you find a solution for this issue? thanks