open drawer action on new row

Here you go.

// check to see if this is a new record or not. // existing record Ids have 18 characters if (field.row.Id.length !== 18) { // must wait for row to show up in UI in order to be able to click on // row action setTimeout(function(){ $(field.element).closest('tr').find('.sk-icon-case').click(); }, 500); }<br>