- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2024 11:39 PM
I have a table named 'Actual Times Details', and now there are three pieces of data in this table. I think we should put these three pieces of data in the corresponding date tab. How should we implement this?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2024 12:54 AM
Hi @shiz
You can do using onload client script, but it is not recommended to use DOM.
try {
var elements = document.getElementsByClassName('tab_caption_text');
// here index 2 means Resolution information section renamed as Resoltion information and Resolution code
elements[2].innerHTML = 'Resolution Information (' + g_form.getValue("close_code") + ")";
} catch(e) { }

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2024 12:54 AM
Hi @shiz
You can do using onload client script, but it is not recommended to use DOM.
try {
var elements = document.getElementsByClassName('tab_caption_text');
// here index 2 means Resolution information section renamed as Resoltion information and Resolution code
elements[2].innerHTML = 'Resolution Information (' + g_form.getValue("close_code") + ")";
} catch(e) { }