Home
last modified time | relevance | path

Searched refs:textInputField (Results 1 – 6 of 6) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests/src/org/eclipse/jface/tests/wizards/
H A DTheTestWizardPage.java30 public Text textInputField; field in TheTestWizardPage
47 textInputField = new Text(container, SWT.BORDER | SWT.SINGLE); in createControl()
49 textInputField.setLayoutData(gd); in createControl()
50 textInputField.addModifyListener(e -> dialogChanged()); in createControl()
64 if (textInputField.getText().equals(BAD_TEXT_FIELD_CONTENTS)) { in dialogChanged()
H A DWizardTest.java82 wizard.page1.textInputField.setText(TheTestWizardPage.BAD_TEXT_FIELD_CONTENTS); in testEndingWithFinish()
86 wizard.page1.textInputField.setText(TheTestWizardPage.GOOD_TEXT_FIELD_CONTENTS); in testEndingWithFinish()
100 wizard.page2.textInputField.setText(TheTestWizardPage.BAD_TEXT_FIELD_CONTENTS); in testEndingWithFinish()
102 wizard.page2.textInputField.setText(TheTestWizardPage.GOOD_TEXT_FIELD_CONTENTS); in testEndingWithFinish()
135 wizard.page2.textInputField.setText(TheTestWizardPage.BAD_TEXT_FIELD_CONTENTS); in testPageChanging()
140 wizard.page2.textInputField.setText(TheTestWizardPage.GOOD_TEXT_FIELD_CONTENTS); in testPageChanging()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/prometheus/alertmanager/ui/app/src/Views/GroupBar/
H A DViews.elm43 [ textInputField isDisabled model
73 textInputField : Bool -> Model -> Html Msg
74 textInputField isDisabled { fieldText, matches, maybeSelectedMatch, fields, backspacePressed } = function
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/prometheus/alertmanager/ui/app/src/Views/GroupBar/
H A DViews.elm43 [ textInputField isDisabled model
73 textInputField : Bool -> Model -> Html Msg
74 textInputField isDisabled { fieldText, matches, maybeSelectedMatch, fields, backspacePressed } = function
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/prometheus/alertmanager/ui/app/src/Views/GroupBar/
H A DViews.elm43 [ textInputField isDisabled model
73 textInputField : Bool -> Model -> Html Msg
74 textInputField isDisabled { fieldText, matches, maybeSelectedMatch, fields, backspacePressed } = function
/dports/www/limesurvey/limesurvey/application/extensions/bootstrap/helpers/
H A DTbHtml.php852 return self::textInputField('text', $name, $value, $htmlOptions);
865 return self::textInputField('password', $name, $value, $htmlOptions);
878 return self::textInputField('url', $name, $value, $htmlOptions);
891 return self::textInputField('email', $name, $value, $htmlOptions);
904 return self::textInputField('number', $name, $value, $htmlOptions);
917 return self::textInputField('range', $name, $value, $htmlOptions);
930 return self::textInputField('date', $name, $value, $htmlOptions);
1280 return self::textInputField('search', $name, $value, $htmlOptions);
1729 protected static function textInputField($type, $name, $value, $htmlOptions) function in TbHtml