Help Text in ADD ROW Variable set button
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-04-2024 06:11 AM
I need to know where and how the Help text can be added in the Multi row variable set ADD ROW button
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-04-2024 06:15 AM
Hi @Negha1 ,
Take a look at these community thread, with similar discussions, might be helpful :
Thanks.
Hope it helps.
If my response turns helpful please mark it helpful and accept solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-04-2024 06:20 AM
Those 2 links are for vraiables,
But what i asked is for ADD ROW button.
Those 2 links not useful for me which i have checked already.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-04-2024 06:41 AM
Hi @Negha1 ,
There is a unorthodox way to do it, you can use dom manipulation and add catalog client script on the variable set. First inspect the page and find the class of the "ADD" button, and then use that in the script.
function onLoad() {
// Wait until the DOM is fully loaded
setTimeout(function(){
var addButton = document.querySelector('.add-button-class'); // Update the selector based on your inspection
if (addButton) {
addButton.title = "Click to add a new row to the multi-row variable set"; // Help text
}
}, 1000); // Adjust the timeout as needed to ensure the element is available
}
Thanks.
Hope it helps.
If my response turns helpful please mark it helpful and accept solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-04-2024 10:26 AM