Hi Jemmy,
We have analysed your query. We would like to inform you that, we can partially disable the input textbox by adding the readOnly to the element. Please refer the below code snippet.
[Script]
function oncreate(args) {
this.element.prop('readonly', true);
} |
For your convenience we have prepared the sample, please refer the below link
For you another query, To reset the Textbox value to default value please refer the code
[script]
function onChange(args) {
if (this.model.value == null)
this.option('value', this.model.minValue);
} |
Regards
Karthik R