Hi Guys,
I have an ig-grid with 10 columns in which 5 columns are editable and 5 are read only. I'm handling this via editCellStarting.
Among the editable columns is a dropdown/igcombo and upon the option selected from the dropdown, I need to enable the editing for one of the columns which was earlier read-only/disabled. I have the selectionChanged event of the igcombo but not sure how I can get the cell to be editable.
I tried the following but it's not working. It throws an error saying an edit is already in progress.
$('#grid1').igGridUpdating('startEdit', 1, 1);
'#grid1'
'startEdit'
Appreciate your help.
Thanks,
Shahrukh
Hello Shahrukh,
Thank you for posting in out community.
In order to ensure that I will provide you with the most accurate support I will need some additional information regarding your scenario. Can you please answer the following questions:
editCellStarting: function(evt, ui){ if(ui.columnKey == "FirstName" || ui.columnKey == "LastName") { return false; } }
or
editCellStarting: function(evt, ui){ if(ui.columnKey == "FirstName" && [other_cell_value] === 5) { return false; } }
This information is going to be highly appreciated and will help me decide how we should proceed further.
Looking forward to hearing from you.
Hi Vasya,
My edit mode is Row. I am checking the column key condition in the editCellStarting. I would like to end edit mode for the current column and enter the edit mode for the column which would be enabled.
Thanks for your quick response.