[SOLVED] Â How to set form with all dependent records in inline edit? |
10/15/2017 7:45:14 AM |
PHPRunner General questions | |
![]() I have a problem and it's pretty simple but I do not know how to do it in PHPRunner 9.8.
|
|
![]() |
fhumanes author 10/16/2017 |
|
![]() |
Sergey Kornilov admin 10/17/2017 |
You can click 'Select all' check box and then 'Edit selected' button programmatically. $("input[id^=chooseAll]").trigger('click'); |
![]() |
fhumanes author 10/22/2017 |
You can click 'Select all' check box and then 'Edit selected' button programmatically. Another option is to perform validation before saving any data. For instance here is how you can click 'Select all' check box programmatically: $("input[id^=chooseAll]").trigger('click');
|
![]() |
fhumanes author 10/22/2017 |
Thank you. function OnPageLoad(pageObj,pageid,proxy,inlineRow) |