Example usage for org.apache.wicket.extensions.markup.html.form DateTextField subclass-usage

List of usage examples for org.apache.wicket.extensions.markup.html.form DateTextField subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.markup.html.form DateTextField subclass-usage.

Usage

From source file com.cubeia.games.poker.admin.wicket.components.datepicker.BootstrapDatePicker.java

public class BootstrapDatePicker extends DateTextField implements IJQueryWidget {
    private static final long serialVersionUID = 1L;
    private static final String METHOD = "datepicker";

    private Options options;

From source file com.googlecode.wicket.jquery.ui.form.datepicker.DatePicker.java

/**
 * Provides a jQuery date-picker based on a {@link DateTextField}
 *
 * @author Sebastien Briquet - sebfz1
 */
public class DatePicker extends DateTextField implements IJQueryWidget, IDatePickerListener {

From source file com.googlecode.wicket.jquery.ui.form.spinner.TimeSpinner.java

/**
 * Provides an time jQuery spinner based on a {@link TextField}
 *
 * @author Sebastien Briquet - sebfz1
 * @since 6.22.0
 * @since 7.1.2

From source file com.googlecode.wicket.jquery.ui.kendo.datetime.DatePicker.java

/**
 * Provides a Kendo UI date-picker based on a {@link DateTextField}<br/>
 * The code is quite identical to the jQuery DatePicker
 *
 * @author Sebastien Briquet - sebfz1
 */

From source file com.googlecode.wicket.jquery.ui.kendo.datetime.TimePicker.java

/**
 * Provides a Kendo UI TimePicker<br/>
 * It should be created on a HTML &lt;input type="text" /&gt; element
 *
 * @author Sebastien Briquet - sebfz1
 */

From source file com.googlecode.wicket.kendo.ui.form.datetime.DatePicker.java

/**
 * Provides a Kendo UI date-picker based on a {@link DateTextField}<br/>
 * The code is quite identical to the jQuery DatePicker
 *
 * @author Sebastien Briquet - sebfz1
 */

From source file com.googlecode.wicket.kendo.ui.form.datetime.TimePicker.java

/**
 * Provides a Kendo UI time-picker<br/>
 * It should be created on a HTML &lt;input type="text" /&gt; element
 *
 * @author Sebastien Briquet - sebfz1
 */

From source file gr.interamerican.wicket.components.CustomDateTextField.java

/**
 * Custom DateTextField.
 */
public class CustomDateTextField extends DateTextField {

    /**

From source file org.cdlflex.ui.markup.html.form.DateTimePicker.java

/**
 * A {@code DateTextField} extension that uses <a
 * href="http://eonasdan.github.io/bootstrap-datetimepicker">bootstrap-datepicker</a> as frontend and can handle a
 * specified date pattern that conforms to SimpleDatePattern.
 *
 * The components properties map to the ones of bootstrap-datepicker.

From source file org.patientview.radar.web.components.RadarDateTextField.java

public class RadarDateTextField extends DateTextField {
    public RadarDateTextField(String id, Form form, List<Component> componentsToUpdate) {
        super(id, RadarApplication.DATE_PATTERN2);
        init(form, componentsToUpdate);
    }