ShowRow
This function shows current table row. This function has to be called inside table rule since show/hide state is not stored in database and has to be set every time the case page is opened.
Syntax
ShowRow();
Function arguments
This function does not take any arguments.
Return value
This function returns Boolean.
This function always returns true
Examples
Example 1:
This will show current row.
ShowRow();
Example 2:
If everything is OK, enable current row.
if(allOK == true) { ShowRow(); }