Editable Table column validator

I have an editable table , with an editable column rate of type int.
how can i make it such that it can only allow a user to enter numbers between a given range example 1-5, when they enter a number outside that range it should show a notification. like it would do when someone enters a string instead of a int

editable%20table%20column

It seems that to add a validator, it needs to be a generated column that returns a TextField. That TextField can have a validator assigned to it.

Could you help with a sample code maybe

Thank you

Hello @mabutabee

As @wwnjj13 said you can solve your problem with generated column:

itemsTable.addGeneratedColumn("editableRate", entity -> {
    TextField tf = componentsFactory.createComponent(TextField.class);

    tf.setValue(entity.getValue("rate"));
    tf.addValueChangeListener(e -> {
        if (e.getValue() == null) {
            showNotification("Rate cannot be null", NotificationType.TRAY);
            tf.setValue(e.getPrevValue());
            return;
        }

        int intVal;
        try {
            intVal = Integer.parseInt(((String) e.getValue()));
        } catch (NumberFormatException ex) {
            showNotification("Rate should be integer", NotificationType.TRAY);
            tf.setValue(e.getPrevValue());
            return;
        }

        if (intVal < 1 || intVal > 5) {
            showNotification("Rate should be between 1 and 5", NotificationType.TRAY);
            tf.setValue(e.getPrevValue());
            return;
        }

        entity.setRate(intVal);
    });

    return tf;
});

Here is a code for sample:

editable-table-col-validator.zip (73.1 KB)

Regards,
Daniil.

1 Like