<sjg:gridColumn name="scenarioDescription"
index="scenarioDescription"
title="Scenario Description"
sortable="true"
editable="true"
edittype="text" />
我尝试在标签内使用width =“250”,但它无效。我是jquery的新手。任何帮助,将不胜感激。提前致谢。
答案 0 :(得分:1)
我自己不使用Struts2。通常,jqGrid允许在editoptions
内设置编辑控件的任何标准选项。例如
editoptions: {size:10, maxlength: 15}
添加了在编辑期间创建的size="10"
元素的maxlength="15"
和<input>
属性。
如果我查看struts2-jquery的网格部分的the documentation,您似乎可以通过向editoptions
元素添加editoptions
属性来指定<sjg:gridColumn>
。你可以试试像
<sjg:gridColumn name="scenarioDescription"
title="Scenario Description"
editable="true"
editoptions="{size: 10, maxlength: 15}" />
您可以选择的属性size
,maxlength
或其他属性的确切值符合您的要求。