com.sksamuel.jqm4gwt.form.elements.JQMRadiobox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqm4gwt-standalone Show documentation
Show all versions of jqm4gwt-standalone Show documentation
jqm4gwt bundled with all of its dependencies
The newest version!
package com.sksamuel.jqm4gwt.form.elements;
import com.google.gwt.uibinder.client.UiConstructor;
/**
* Standalone radio box, very similar to JQMCheckbox, but user cannot uncheck it.
*
If some radio boxes have the same name then they will automatically work as radio set.
**/
public class JQMRadiobox extends JQMCheckbox {
@UiConstructor
public JQMRadiobox(String name, String text) {
super(name, text);
}
@Override
protected String getInputType() {
return "radio";
}
}