How to insert text into a column header with a attribute in the HTML table ?

Is it possible to add text into the html attribute in the HTML table when using a table component?

This particular attribute and css class contains no text (its the action column table header):

I’d like to add the words: Buttons

If so, how can this be accomplished?

Thanks!

Hi!

Thanks for your question - you can insert some jQuery into an inline Javascript snippet that will add the Buttons text when the page is loaded.

1.) Create a new Javascript snippet of type “Inline”

2.) In the pageload function, add this one line of code:

$('.actioncolumn').text('Buttons');

Hope this helps!
Christine

Thank you Christine!