Tabnine Logo
Input.getValue
Code IndexAdd Tabnine to your IDE (free)

How to use
getValue
method
in
org.jboss.errai.common.client.dom.Input

Best Java code snippets using org.jboss.errai.common.client.dom.Input.getValue (Showing top 20 results out of 315)

origin: org.kie.workbench.screens/kie-wb-common-library-client

@Override
public String getName() {
  return this.name.getValue();
}
origin: org.dashbuilder/dashbuilder-navigation-client

@Override
public String getItemName() {
  return itemNameInput.getValue();
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@Override
public String getConfirmedName() {
  return confirmedName.getValue();
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@Override
public String getGroupId() {
  return groupId.getValue();
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@Override
public String getVersion() {
  return version.getValue();
}
origin: org.dashbuilder/dashbuilder-navigation-client

@Override
public String getItemName() {
  return itemNameInput.getValue();
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@Override
public String getPassword() {
  final String password = this.password.getValue();
  return password == null || password.isEmpty() ? null : password;
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@Override
public String getUserName() {
  final String userName = this.userName.getValue();
  return userName == null || userName.isEmpty() ? null : userName;
}
origin: org.uberfire/uberfire-widgets-commons

@EventHandler("searchInput")
void onSearchChanged(KeyUpEvent event) {
  String pattern = searchInput.getValue();
  presenter.search(pattern);
}
origin: org.kie.workbench/kie-wb-common-dmn-client

@EventHandler("nameEditor")
@SuppressWarnings("unused")
void onNameChange(final BlurEvent event) {
  presenter.setName(nameEditor.getValue());
}
origin: kiegroup/appformer

@EventHandler("searchInput")
void onSearchChanged(KeyUpEvent event) {
  String pattern = searchInput.getValue();
  presenter.search(pattern);
}
origin: kiegroup/jbpm-wb

private void submitCommentAddition() {
  if (validateForm()) {
    presenter.addCaseComment(newCommentTextArea.getValue());
  }
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@EventHandler("filter-text")
public void filterTextChange(final KeyUpEvent event) {
  presenter.filterContributors(filterText.getValue());
}
origin: org.kie.workbench/kie-wb-common-dmn-client

@Override
public void addParameterNameChangeHandler(final ParameterizedCommand<String> command) {
  name.addEventListener(BrowserEvents.BLUR,
             (e) -> command.execute(name.getValue()),
             false);
}
origin: org.jbpm/jbpm-wb-case-mgmt-client

private void submitCommentAddition() {
  if (validateForm()) {
    presenter.addCaseComment(newCommentTextArea.getValue());
  }
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@EventHandler("filter-text")
public void filterTextChange(final KeyUpEvent event) {
  presenter.filterProjects(filterText.getValue());
}
origin: org.drools/drools-wb-guided-dtable-editor-client

@EventHandler("header")
public void onSelectHeader(final KeyUpEvent event) {
  page.setHeader(header.getValue());
}
origin: kiegroup/jbpm-wb

private boolean validateForm() {
  clearErrorMessages();
  final boolean newCommentEmpty = isNullOrEmpty(newCommentTextArea.getValue());
  if (newCommentEmpty) {
    newCommentTextArea.focus();
    newCommentTextAreaHelp.setTextContent(translationService.format(CASE_COMMENT_CANT_BE_EMPTY));
    newCommentTextAreaGroup.setValidationState(ValidationState.ERROR);
    return false;
  }
  return true;
}
origin: org.kie.workbench.screens/kie-wb-common-library-client

@SinkNative(Event.ONBLUR | Event.ONKEYDOWN)
@EventHandler("pageNumber")
public void onPageChange(final Event e) {
  if (e.getKeyCode() < 0 || e.getKeyCode() == KeyCodes.KEY_ENTER) {
    presenter.onPageNumberChange(Integer.valueOf(pageNumber.getValue()));
  }
}
origin: org.jbpm/jbpm-wb-case-mgmt-client

private boolean validateForm() {
  clearErrorMessages();
  final boolean newCommentEmpty = isNullOrEmpty(newCommentTextArea.getValue());
  if (newCommentEmpty) {
    newCommentTextArea.focus();
    newCommentTextAreaHelp.setTextContent(translationService.format(CASE_COMMENT_CANT_BE_EMPTY));
    newCommentTextAreaGroup.setValidationState(ValidationState.ERROR);
    return false;
  }
  return true;
}
org.jboss.errai.common.client.domInputgetValue

Popular methods of Input

  • setValue
  • focus
  • setAttribute
  • getChecked
  • setChecked
  • addEventListener
  • blur
  • getAttribute
  • getClassList
  • getOnkeypress
  • setClassName
  • setOnclick
  • setClassName,
  • setOnclick,
  • setOnkeypress,
  • setType

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • runOnUiThread (Activity)
  • compareTo (BigDecimal)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now