jqGrid设置内联编辑输入框的属性
jqGrid set the attribute of inline edit input box
我们使用的是 jqGrid 免费版 4.13.5,内联编辑已启用。
我想将输入属性 dir
设置为 auto
并为输入设置一个 class。
根据http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules我发现网格有edittype:'custom'
应该实现custom_element
和custom_value
功能,
我想知道 jqGrid
的新版本是否有更好的方法(不需要 custom
编辑类型)
如果我正确理解了你的问题,那么你只需要将 editoptions
与属性一起使用,你需要在内联编辑的 <input>
上设置这些属性:
editoptions: { dir: "auto", "class": "someClassName" }
我们使用的是 jqGrid 免费版 4.13.5,内联编辑已启用。
我想将输入属性 dir
设置为 auto
并为输入设置一个 class。
根据http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules我发现网格有edittype:'custom'
应该实现custom_element
和custom_value
功能,
我想知道 jqGrid
的新版本是否有更好的方法(不需要 custom
编辑类型)
如果我正确理解了你的问题,那么你只需要将 editoptions
与属性一起使用,你需要在内联编辑的 <input>
上设置这些属性:
editoptions: { dir: "auto", "class": "someClassName" }