Hi,
I'm trying to formatting a specific row column based on a result from an API call but I do not succeed.It is a H5 script in the new UI (Cloud). Does anyone have an example when doing this?
// NEW UI
// ANTONIO CARIA - ALL RIGHTS RESERVED
// Input - R - ROW
function markRow(R,COLOR,BACK){
let r$ = $('.datagrid-row').filter(`tr[data-index=${R}]`)).children();
r$.css('color', COLOR).css('background-color', BACK)r$.find('td').css('color', COLOR).css('background-color',BACK)
}