<CallbackCommands> <px:PXDSCallbackCommand Visible="false" Name="FilesUpload" DependOnGrid="grid" /> </CallbackCommands> <ClientEvents CommandPerformed="setActionButtonColor" /> <ClientEvents AfterCellUpdate="UpdateItemSiteCell" /> //it will use for after row updation grid change color of row. <script type="text/javascript"> function UpdateItemSiteCell(n, c) { var activeRow = c.cell.row; if (px_all && px_all["ctl00_phG_tab_t0_grid"] && px_all["ctl00_phG_tab_t0_grid"].rows) { let lines = px_all["ctl00_phG_tab_t0_grid"].rows.items; for (let i = 0; i < lines.length; i++) { ...
Comments
Post a Comment