App Builder \ PfJs Helper Class
Make Checkbox Table & Get Checkbox Values

Thaha
App Builder & Automation Expert
Stay Updated with ProcFu!
Subscribe to our newsletter for the latest tips, updates, and automation insights.
Subscribe NowThese are two different functions that help you add checkboxes to each row in a summary table and do what you need with them.
An example would be picking a bunch of items and marking their status.
Make Checkbox Table | PfJs.makeCheckboxTable(target)
PfJs.makeCheckboxTable(target)
This function is designed to add checkbox against each rows of a summary screen.
Arguments
- target: The target variable from the On Render event, typically representing the jQuery DOM wrapper of the current screen. (Do not change the word target. Use it as is; it is not a placeholder to be replaced.)
This function returns the ID of the table. It can be used in PfJs.getCheckboxes(tabid) function.
Get Checkboxes | PfJs.getCheckboxes(tabid)
PfJs.getCheckboxes(tabid)
This function is designed to get the ids of the rows checked using Make Checkboxes function.
Arguments
- tabid: This can be ontained from the output of PfJs.makeCheckboxTable(target) function.