I am new with JqGrid and this is my JqGrid code. Now I want to make a website validation on column name "website". If any of you know the answer, kindly reply as soon as possible
{
name: 'website',
index: 'website',
search: false,
editable: true
}
Please formulate your question more clear in the future. It's absolutely unclear what you do exactly an what kind of validation you need to implement. If you need for example client side validation during editing then editrules would be the correct way to implement validation. Probably
editrules: {url: true}
oreditrules: {url: true, required: true}
is the property which you need. One uses frequently more common optioneditrules: {custom: true, custom_func: function (value, label, name) {...}}
. One need to implementcustom_func
callback function which validate thevalue
and returns[true]
or[false, "error description"]
. See the documentation.