Tabnine Logo
IButton.setRadioGroup
Code IndexAdd Tabnine to your IDE (free)

How to use
setRadioGroup
method
in
com.smartgwt.client.widgets.IButton

Best Java code snippets using com.smartgwt.client.widgets.IButton.setRadioGroup (Showing top 2 results out of 315)

origin: org.geomajas/geomajas-project-deskmanager-gwt

private void addRadioRoleButton(final Role role) {
  IButton roleButton = new IButton(getRoleMessage(role));
  roleButton.setShowRollOver(false);
  roleButton.setActionType(SelectionType.RADIO);
  roleButton.setRadioGroup(ROLE_GROUP);
  roleButton.addClickHandler(new ClickHandler() {
    @Override
    public void onClick(ClickEvent clickEvent) {
      handler.onSelectRole(role);
    }
  });
  getRadioButtons().put(role, roleButton);
  toolStrip.addMember(roleButton);
}
origin: org.geomajas.widget/geomajas-widget-searchandfilter-gwt

btnPoint.setWidth(btnPoint.getTitle().length() * GsfLayout.buttonFontWidth + GsfLayout.buttonOffset);
btnPoint.setActionType(SelectionType.RADIO);
btnPoint.setRadioGroup("drawType");
btnPoint.addClickHandler(new ClickHandler() {
  public void onClick(ClickEvent event) {
btnLine.setWidth(btnLine.getTitle().length() * GsfLayout.buttonFontWidth + GsfLayout.buttonOffset);
btnLine.setActionType(SelectionType.RADIO);
btnLine.setRadioGroup("drawType");
btnLine.addClickHandler(new ClickHandler() {
  public void onClick(ClickEvent event) {
btnPolygon.setWidth(btnPolygon.getTitle().length() * GsfLayout.buttonFontWidth + GsfLayout.buttonOffset);
btnPolygon.setActionType(SelectionType.RADIO);
btnPolygon.setRadioGroup("drawType");
btnPolygon.addClickHandler(new ClickHandler() {
  public void onClick(ClickEvent event) {
com.smartgwt.client.widgetsIButtonsetRadioGroup

Popular methods of IButton

  • <init>
    Constructor for IButton.
  • addClickHandler
  • setWidth
  • setTitle
  • setIcon
  • setDisabled
  • setLayoutAlign
  • getTitle
  • setActionType
  • setAutoFit
  • setSelected
  • setShowRollOver
  • setSelected,
  • setShowRollOver,
  • setTooltip,
  • setVisible,
  • deselect,
  • equals,
  • focus,
  • getIcon,
  • hide

Popular in Java

  • Creating JSON documents from java classes using gson
  • getResourceAsStream (ClassLoader)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • addToBackStack (FragmentTransaction)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • JCheckBox (javax.swing)
  • JFileChooser (javax.swing)
  • Top PhpStorm plugins
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