Hi,
Do you know how to change style of the column headers? (Webcon 2021)
I want to change only headers.
                        
                            Hi,
Do you know how to change style of the column headers? (Webcon 2021)
I want to change only headers.
                        
                            Hi,
Someone will probably be able to do it better, but it works.
setTimeout(function() {
    $("div[id='SubElems_#{WFCON:5817}#']")
        .find('.active.tableLiteHeader.ms-clientcontrol-chromeheader')
        .css({
            'color': 'red',
            'font-weight': 'bold'
        });
}, 500);
Regards