Package net.pleso.framework.client.ui.interfaces

Examples of net.pleso.framework.client.ui.interfaces.IBindableDataControl.readData()


      if (addedControl instanceof SourcesKeyboardEvents)
        ((SourcesKeyboardEvents) addedControl)
            .addKeyboardListener(keyboardListener);

      // Reading data from row to control.
      addedControl.readData();
    }
  }

  /**
   * Make validation on all controls.
View Full Code Here


  public void reReadBindableControls() {
    for (int i = 0; i < controls.size(); i++) {
      IBindableDataControl control = (IBindableDataControl) controls
          .get(i);
      if (control != null && !(control instanceof IEditableDataControl))
        control.readData();
    }
  }

  /**
   * Updates binded {@link #dataRow} by values from all controls.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.