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

RadGrid Batch Edit, Disable Column, Cell for edit with TAB to next cell

3 Answers 286 Views
Grid
This is a migrated thread and some comments may be shown as answers.
VIRUX
Top achievements
Rank 1
VIRUX asked on 09 Apr 2019, 08:48 AM

Hello,

Radgrid, Require to have some column disable edit. Some Cell Disable Edit.

Able to achieve by cell opening to block, but "TAB" key stopped and jump out of Radgrid. User require to get mouse back for next cell to open edit mode again.

Any possible way to simulate Tab key move to next cell at batch edit opening ?

 

  function BatchEditOpening(sender, args) {

                    var row = args.get_row();
                    var cell = args.get_cell();
                    
                    // cancel edit based on cell data ***
                    var content = $telerik.$(cell).text().trim();
                    if (content == "three") {
                        args.set_cancel(true);      

====== How to tab focus cell opening to next cell ??
====== args.get_cell(); does not have cell index

====== so that batchManager1.openCellForEdit(??? how to call next available cell ?? ) 
                    }

 }

3 Answers, 1 is accepted

Sort by
0
VIRUX
Top achievements
Rank 1
answered on 09 Apr 2019, 08:51 AM

Attached picture or require tab condition flow. 

Also found that only Up and Down key are work, but why not left and right key not working or supported.

Other rival already supported on this fully.. How to achieve on left right?

0
Accepted
Eyup
Telerik team
answered on 11 Apr 2019, 01:09 PM
Hello,

You can achieve this requirement using the approach demonstrated in the attached first 2 web site samples.
 
And the third sample demonstrates how you can achieve left and right arrow keys navigation.

I hope this will prove helpful.

Regards,
Eyup
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
VIRUX
Top achievements
Rank 1
answered on 12 Apr 2019, 02:25 AM

Hi Eyup,

Greatly appreciated for quick response and workable solution. This exactly what I am looking for.

I would suggest this should be on Demo page and at wiki. 

Thank you so much.

Tags
Grid
Asked by
VIRUX
Top achievements
Rank 1
Answers by
VIRUX
Top achievements
Rank 1
Eyup
Telerik team
Share this question
or