This topic is locked
[SOLVED]

 Dialog-API , possible fieldtypes

1/31/2020 6:50:26 AM
PHPRunner General questions
C
ckranich authorDevClub member

Hi,
Has anybody came across howto implement a checkbox or a dropdown option in a dialog?
If I follow the example in the Help

// extended description:

{

name: 'body',

label: 'Message body',

type: 'textarea',

value: 'Hello,\n'

}];
and change the type, it has no effect at all...
Using PHPrunner 10.3, last Build
Kind Regards,

ckranich

J
John 1/31/2020

As the documentation states (https://support.logi.com/hc/en-us/articles/360025141614)
type {string}
the type of an input control. It can be either text or textarea.
If you need a checkbox use Runner.displayPopup()
https://xlinesoft.com/phprunner/docs/how_to_display_any_page_in_a_popup.htm
John

C
ckranich authorDevClub member 2/1/2020



As the documentation states (https://support.logi.com/hc/en-us/articles/360025141614)
type {string}
the type of an input control. It can be either text or textarea.
If you need a checkbox use Runner.displayPopup()
https://xlinesoft.com/phprunner/docs/how_to_display_any_page_in_a_popup.htm
Many Thanks!

This helps (Sorry I still struggle collecting all bits and pieces of information together - will not mean that

there exists too little docs, but sometime in such an feature-rich software, you sometimes can't see the wood for the trees...)

ckranich
John