All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sksamuel.jqm4gwt.form.elements.JQMRadiobox Maven / Gradle / Ivy

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"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy