Skip to main content
Nintex Community Menu Bar
Question

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

  • July 10, 2024
  • 2 replies
  • 28 views

Forum|alt.badge.img+7

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!

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+3

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


Forum|alt.badge.img+7
  • Author
  • 88 replies
  • July 10, 2024

Thank you Christine!