0

How to disable manual entry in DateCell

I am using com.sencha.gxt.cell.core.client.form.DateCell

I want the user to pick the date only from the datepicker and restrict them to enter manually. How can I do that ?

MSK
  • 1
  • 1

1 Answers1

0

I have not found any correct approach to achieve your requirement. Below is a workaround/hack to get work done.

    DateCell dateCell = new DateCell(){
        public boolean isEditable() {
            return false;
        };
    };
Ajhar Shaikh
  • 1,106
  • 2
  • 14
  • 33