Skip to main content

Hi Experts,

I have a search type screen,
 



On it I am trying to invoke a client script via a button. But the script does not seem to pick the the rows of the resultnt search.

 


Is this expected, or am I missing something?

Hey @Miraj 

I think you need to use getSearchResultDataTableRows

var rows = getSearchResultDataTableRows();
if (size(rows)> 0)
{
Do Something ...
}

 

Cheers!


Thanks @Shneor Cheshin 


Reply