Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 mvc telerik 网格。在添加新记录时,它正在获取文本框,对于那些输入控件,需要限制最大字符数,例如:20。
请帮助我..在此先感谢
我们可以获取特定列的 id(例如:codeId)并添加 maxlength onEdit 客户端事件的属性。网格有一个 OnEdit 客户端事件,该事件编写了一个函数 javascript,其中包含输入字段的必要道具。
$("#elementId").prop("maxlength",'your max length for restriction');