Hallo,
ich habe vor, im Action Bereich eines Konfigurationsformulars eine Funktion anzubieten, die Eingabeparameter verlangt.
Es soll dann etwa so aussehen:
Soweit bin ich gekommen:
public function GetConfigurationForm()
{
// ....
$form['actions'] = [
['type' => 'Label', 'caption' => 'The test function may be used to test something with the given parameter'],
[
'type' => 'RowLayout',
'items' => [
['type' => 'ValidationTextBox', 'name' => 'Parameter1', 'caption' => 'Parameter1'],
['type' => 'ValidationTextBox', 'name' => 'Parameter2', 'caption' => 'Parameter2'],
['type' => 'Button', 'caption' => 'Testfunktion', 'onClick' => "echo 'fertig';"]
]]];
Aber nun frage ich mich, wie ich im onClick an den Wert von Parameter1 komme
Geht das überhaupt?
Gruß
Burkhard