How to trigger action chains from a button defined in editable row template in vbcs?
Summary
How to trigger action chains from a button defined in editable row template in vbcs?Content
Hi ,
I am working on editable table, where in one of the column user should be able to open a dialog by clicking on the icon/button. I am able to display an icon and have defined on-click event on the icon but it is not working. I am attaching the code and screen shot.
Appreciate your inputs to resolve this issue.
Regards,
Chethan TM
Version
18.4.1Code Snippet
<script type="text/html" id="rowTemplate"> <tr> <td data-bind="text: id"> </td> <td data-bind="text: firstName"> </td> <td data-bind="text: lastName"> </td> <td data-bind="text: departmentID"> </td> </tr> </script> <script type="text/html" id="editRowTemplate"> <tr> <td data-bind="text: id"> </td> <td> <oj-input-text id="it2" value="{{firstName}}" data-oj-context></oj-input-text> </td> <td> <oj-input-text id="it3" value="{{lastName}}" data-oj-context></oj-input-text> </td> <td>
0