jQWidgets Forums
Forum Replies Created
-
Author
-
Thanks for your reply,
I did do that. Now when I select cell in second grid my cell of first grid is unselected,how ever when i enter some text in the newly selected cell of second grid,the text also gets posted in earlier cell that i selected. how do I prevent the text editing to shif completely to new cell of another grid.Please assist,
KishoreJuly 12, 2013 at 8:13 am in reply to: Grid column details from selected row Grid column details from selected row #25060Is there a way to get column name or index from the cell that we have selected,with out binding cellselect event.
Thanks,
KishoreJuly 12, 2013 at 7:35 am in reply to: Grid column details from selected row Grid column details from selected row #25058Hi Dimitar,
Thanks for your reply. Can you show me a sample code which does that,or a demo which can help me.
thanks,
KishoreWith the following code I can capture the keyboard event but how do I change the rows editable property dynamically.
handlekeyboardnavigation: function(event) {
var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
if (key == 46) {
….what logic goes here……
}
},Thanks,
KishoreThanks for your reply, I went through the keyboard navigation event. How ever how do I disable deleting the row. What is the logic that goes inside which will prevent the row from deleting. A sample code would be of great help.
Thanks,
kishoreHi Maria,
Thanks for your reply. I got ypur answer. But is there any way around to override the tooltip message that i show for the rows of a column. My business requirement says that I dont have to show anything over a tooltip up on mouse over. Atleast a work around to override the tooltip message would be of great help.
Thanks in advance,
KishoreI meant that I have a jqxgrid with many columns and rows. I need to disable tooltip message for all the rows of 1st column. When I enable tooltip ,on mouse over I am shown the value of the cell. But I dont want anything to be shown on mouse over. Please assist.
-
AuthorPosts