This is a migrated thread and some comments may be shown as answers.

Grid keyboard navigation and saving of NumericTextBox data

5 Answers 63 Views
Grid
This is a migrated thread and some comments may be shown as answers.
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

5 Answers, 1 is accepted

Sort by
0
Accepted
Vladimir Iliev
Telerik team
answered on 04 Apr 2013, 01:07 PM
Hi Brian,

 
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). 

Kind Regards,
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
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
Vladimir Iliev
Telerik team
answered on 20 Aug 2013, 02:01 PM
Hi Brian,

 
Please note that currently IE11 is not supported as it's in a beta stage - it will be supported when it's released officially.

Kind Regards,
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.
Tags
Grid
Asked by
Brian Roth
Top achievements
Rank 1
Answers by
Vladimir Iliev
Telerik team
Brian Roth
Top achievements
Rank 1
Amol
Top achievements
Rank 1
Share this question
or