Export CSV in jQuery DataTable for Totara

|
| By Pawandeep Kaur

When admins or trainers want to quickly export table data from reports into a CSV file for offline use, we can use the built-in export feature of jQuery DataTable. 1. Include DataTable CSS/JS Before using DataTables, you need to include

Salesforce | How to set value of input text field on parent Visualforce Page using Javascript

| By Webner

Description: We had a text field (inputTextF) on our parent page. We wanted to set its value from inside my child page programmatically. 1. You need to pass parent page element Id to the child page. 2. Get parent page

Selenium | Unable to find Command button using Selenium Webdriver

| By Webner

Problem: Unable to find the Command button using Selenium Webdriver. Solution: You can use following script code if you want to find command button on a web page and then click it: driver.findElement(By.xpath(“//button[text()='(Button name)’]”)).click(); Here is the script which we used in