Customising Data Table Row Action
Scenario: Click of a button in a Data Table row should display a message
- We will add a Row Action in a Data Table to display an alert message on click.
- The Action will be a JS function as shown below. Here we have written a function to display an alert dialog. The name of the function is the action field entry in the custom button created. Page.EmployeeTable1_customRowAction = function($event, row) { alert('hello'); };
- 1. Basic Table Usage
- 2. How to customise table actions
- 3. How to represent data table columns using widgets
- 4. How to format data table column
- 5. How to apply styles (generic and conditional) to data table
- 6. How to view master-detail record using a data table
- 7. How to add master-detail record using a data table
- 8. How to export data using a data table
- 9. How to create a dynamic data table
- 10. How to bind column of a data table to query variable