showRowDetailButton

This function is used to toggle the row detail button, that opens the child app, based on the row data.

Parameters

  1. Row - the row object. Usually this is: eventArgs.details.row

  2. show - shows (true, default) or hides (false) the detil Button

Example Usages

This code belongs in an onRowCreated event

   app.showRowDetailButton(eventArgs.details.row, eventArgs.details.data.icordlnIsBillOfMaterial===true);

Last updated