Hi,
I have a grid with igCombo control on edit. When user enters the editing mode, I want to hide/unhide the combo based on data on other columns. The problem is when I hook into the updatingRowStarted event, the combo has not been rendered yet, so I can't access it.
Is there another event after iggridupdatingeditrowstarted that I can hook into so that I can access the igCombo control ?
Please help.. Thanks
Jeffrey
Hi Jeffrey,
I provided a sample within that thread
Yes, I'll definitely do that.
Viktor, if you have time, would you mind seeing my other questions on the forum :)
http://ko.infragistics.com/community/forums/t/73129.aspx
Thanks,
I am glad it worked for you.
I think, that returning false within editCellStarting is cleaner and preferrable. I can not explain why it may have side effects, and Done button is disabled after changed value in another cell of editing row. In my sample I did not have similar issue. Maybe there is some other functionality in your application (: anyway, you may use whatever is best for you :)It would be nice, if you write a simple sample and submit a bug-report about failure to enable Done button when editor is disabled by editCellStarting.
Victor,
Doing ui.editor.hide()/show() inside editCellStarted works for me. Initially I was trying to hook into editRowStarting because I have EditMode set to Row instead of Cell.
When doing return false/true in editCellStarting, I find that the Done button never gets enabled even if after I changed some values. And when I disabled showing done/cancel buttons, I can't add row to the grid.
Thanks for the help !! Appreciate it
Thanks for the reply Victor, let me try it.