jQWidgets Forums
Forum Replies Created
-
Author
-
As there is no solution, I do a little one wich can perhaps help other people.
It is not perfect and need more details, but working.(resize the win to see it working)
Peter, I see that you understand my problem.
But what is the solution? Is it a way to know the width of the menu and so minimize the menu if needed?
Or another solution (like the toolbar do as sayed before)?September 3, 2013 at 4:14 pm in reply to: Separator inside source based jqmenu Separator inside source based jqmenu #28247Hello,
I am also waiting for this … (from json ;o)
Do you have an idea of the implementation of this?
Thanks!David
Hello,
when I use this, it is working as expected bud not with date or price datafield.
What do I have to do to detect ctrl + v in every situation in a grid?handlekeyboardnavigation: function(event)
{if(event.which == 86 && event.ctrlKey == true) {
alert(“copy”);
// here I will do what I want to paste the data in the grid
return true;
}// your code
var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
if (key == 13) {
alert(‘Pressed Enter Key.’);
return true;
}
else if (key == 27) {
alert(‘Pressed Esc Key.’);
return true;
}
}thanks,
david
Hi,
Do you think add this feature?
I am looking for exactly that as well.Regards,
David
OK, I do it now
Regards,
David
Hi Peter,
Thanks for your answer.
When you say future version, what does it means?
(Some of my customers complains about this behaviour… )Regards,
David
thanks! its working…
I forgot !importantsory!
-
AuthorPosts