Brian Roth
Top achievements
Rank 1
Brian Roth
asked on 02 Apr 2013, 08:30 PM
Hello all,
I'm experiencing an issue with keyboard navigation and saving for grids with batch editing enabled. I'm using the Kendo editor templates for Number and Currency in my grids where appropriate based on the model. When using the tab key to navigate through and edit the cells, the values typed in to the numeric textbox columns never get saved. I dug into this a little more and noticed that the grid's Save event is not being fired. Is there something special I need to do to get this to work? Or is it not supported to use the NumericTextBox control inside a grid cell? Thanks for the help!
To reproduce this with the Kendo Demo project, just add the .Navigatable() property to the editing.cshtml file in the grid folder.
Regards,
Brian
I'm experiencing an issue with keyboard navigation and saving for grids with batch editing enabled. I'm using the Kendo editor templates for Number and Currency in my grids where appropriate based on the model. When using the tab key to navigate through and edit the cells, the values typed in to the numeric textbox columns never get saved. I dug into this a little more and noticed that the grid's Save event is not being fired. Is there something special I need to do to get this to work? Or is it not supported to use the NumericTextBox control inside a grid cell? Thanks for the help!
To reproduce this with the Kendo Demo project, just add the .Navigatable() property to the editing.cshtml file in the grid folder.
Regards,
Brian
5 Answers, 1 is accepted
0
Accepted
Hi Brian,
Vladimir Iliev
the Telerik team
This is an already know issue and our dev team just released a fix for it, however this fix should pass all QA test before we can release internal build (it's expected to be released in next few days and should be available for download from your account at telerik.com).
Vladimir Iliev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Brian Roth
Top achievements
Rank 1
answered on 04 Apr 2013, 02:26 PM
Excellent! Thanks for the update. I look forward to the internal build.
Brian
Brian
0
Brian Roth
Top achievements
Rank 1
answered on 16 Aug 2013, 03:45 PM
Just wanted to give Telerik a heads-up. I've been trying out IE 11 Preview and it looks like the issue is revisiting. The issue may or may not be there once the final version comes out though.
0
Hi Brian,
Vladimir Iliev
Telerik
Please note that currently IE11 is not supported as it's in a beta stage - it will be supported when it's released officially.
Vladimir Iliev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Amol
Top achievements
Rank 1
answered on 26 Aug 2013, 07:16 AM
Hi,
I found that in my batch editing kendo grid. during navigation if i change CurrentTextbox value to some thing else and if I hit Keyboard tab it saves the value but If I delete the value it will show the previous value it self. I tried to wire up focusout event for the control in edit event like
function ComponentPricingGrid_Edit(e) {
$('#pricing').focusout(function () {
if ($('#pricing').val() == '' || $('#pricing').val() == null) {
$('#pricing').val('0.00');
}
});
}
but it doesnt work. can you please help.
I found that in my batch editing kendo grid. during navigation if i change CurrentTextbox value to some thing else and if I hit Keyboard tab it saves the value but If I delete the value it will show the previous value it self. I tried to wire up focusout event for the control in edit event like
function ComponentPricingGrid_Edit(e) {
$('#pricing').focusout(function () {
if ($('#pricing').val() == '' || $('#pricing').val() == null) {
$('#pricing').val('0.00');
}
});
}
but it doesnt work. can you please help.