i want create customText box in popup panel in jqgrid As follows:
4digit-3character-4digit
please help me. thanks
i want create customText box in popup panel in jqgrid As follows:
4digit-3character-4digit
please help me. thanks
You can use digitalBush masked jQuery plugin for the editing. You should initialize the masked pluging inside of dataInput
of the editoptions
dataInit: function (elem) {
$(elem).mask("9999-aaa-9999");
}
Look the demo and another answer for more details.