正在装载数据…… 打开一个 关于 grid UI 组件的 jsp 页面, 里面有这样的代码: ----------------------- <w:panelBox> <w:dataGrid jsvar="myGrid" id="target-grid" value="#{UserBean.userList}" var="user" paged="true" pagerPosition="both" rows="25" loadMask="true" style="border:1px solid #99bbe8;height:300px;overflow:hidden"> <w:outputColumn id="id" header="Id" align="center" value="#{user.id}" width="200" hidden="true"/> <w:outputColumn id="name" header="Name" value="#{user.name}" width="50" /> <w:outputColumn id="email" header="Email" value="#{user.email}" width="200" /> <w:outputColumn id="tel" header="Telphone" value="#{user.tel}" width="100" align="center" /> <w:outputColumn id="addr" header="Address" value="#{user.addr}" width="200" /> </w:dataGrid> </w:panelBox> ----------------------- 看其来还可以.... 继续看了看其他的 JSP ... 都还可以. 呵呵. JSP tag 的确可以省掉开发人员很多麻烦. 有一个问题我很不舒服, 那就是, 连续多个 JSP 多没有使用 国际化特性? 难道所有的例子都没有? 找找先. ... ... 好像没有. 不找了, 呵呵. 本文来源:http://blog.csdn.net/loveyly/archive/2007/08/25/1758600.aspx
|