This topic is locked

How to make field checkboxes selected by default on 'Update Selected' page

7/24/2018 5:25:28 PM
PHPRunner Tips and Tricks
admin

Let's say we want to save our users a couple of clicks and make some fields enabled by default on "Update Selected" dialog. To do so add the following code to Edit page: Javascript OnLoad event.

$("input[data-field='UnitPrice']").click();

$("input[data-field='Quantity']").click();