我正在尝试jmesa。
在jmesa中,我正在创建一个工作表。但是,我收到的这个错误并没有多大的说明。
java.lang.IllegalStateException: The row unique property value is null! You need to specify the uniqueProperty on the row.
这是我的代码。
<jmesa:tableModel
id="tag"
items="${people}"
var="bean"
editable="true"
>
<%--editable="true"--%>
<jmesa:htmlTable caption="People you may know" width="900px" >
<jmesa:htmlRow>
<jmesa:htmlColumn property="selected" editable="true"
worksheetEditor="org.jmesa.worksheet.editor.CheckboxWorksheetEditor" title="selected" filterable="false" sortable="false"/>
<jmesa:htmlColumn property="firstName" editable="false"/>
<jmesa:htmlColumn property="lastName" title="Last Name" editable="false"/>
<jmesa:htmlColumn property="phone" title="Phone Number" editable="false"/>
<jmesa:htmlColumn property="address" title="Address" sortable="false" style="address" />
</jmesa:htmlRow>
</jmesa:htmlTable>
</jmesa:tableModel>
</form>
答案 0 :(得分:0)
该解决方案涉及3个部分。我需要:
<jmesa:htmlRow>
代码:uniqueProperty="id"
,