This topic is locked

Runner.Dialog - radio button vertical

7/5/2021 7:38:45 PM
PHPRunner General questions
A
AlphaBase author

The following sample code is on a button's Client before event:

return Runner.Dialog( {
title: 'Preferences',
header: 'Answer a few questions

',
bottom: 'And thank you for visiting!',
fields: [{
name: 'Favorite car make',
type: 'radio',
required: true,
**horizontal: false,**
options:
[
[1,'Audi'],
[2,'BMW'],
[3,'Ford'],
[2,'Tesla'],
[2,'Toyota']
]
}],
ok: 'Save',
cancel: 'Cancel'

});

This is what it looks like:

img alt

I want to increase the vertial size of the dialog so taht all the options and the buttons can be seen.

How?

A
AlphaBase author 7/5/2021

That is for Runner.displayPopup();
I'm using Runner.Dialog - and the height parameter doesn't seem to do anything.