|
@@ -38,14 +38,6 @@
|
|
|
<input class="editTableRadio" name="data.isSequence" text{($.data.isSequence!=='yes')?'checked':''} type="radio" value="no"/>否
|
|
<input class="editTableRadio" name="data.isSequence" text{($.data.isSequence!=='yes')?'checked':''} type="radio" value="no"/>否
|
|
|
</td>
|
|
</td>
|
|
|
</tr>
|
|
</tr>
|
|
|
- <tr>
|
|
|
|
|
- <td class="editTableTitle">最大行数:</td>
|
|
|
|
|
- <td class="editTableValue"><input type="number" name="count" value="text{$.count || 600}" class="editTableInput"/></td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td class="editTableTitle">每页行数:</td>
|
|
|
|
|
- <td class="editTableValue"><input type="number" name="pageSize" value="text{$.pageSize || 20}" class="editTableInput"/></td>
|
|
|
|
|
- </tr>
|
|
|
|
|
<!-- <tr>-->
|
|
<!-- <tr>-->
|
|
|
<!-- <td class="editTableTitle">视图样式:</td>-->
|
|
<!-- <td class="editTableTitle">视图样式:</td>-->
|
|
|
<!-- <td class="editTableValue">-->
|
|
<!-- <td class="editTableValue">-->
|
|
@@ -72,6 +64,66 @@
|
|
|
<!--<td class="editTableValue"><input type="text" name="max" value="text{$.max}" class="editTableInput"/></td>-->
|
|
<!--<td class="editTableValue"><input type="text" name="max" value="text{$.max}" class="editTableInput"/></td>-->
|
|
|
<!--</tr>-->
|
|
<!--</tr>-->
|
|
|
</table>
|
|
</table>
|
|
|
|
|
+ <div style="height:24px; text-align: center; line-height: 24px; background-color: #EEE; border-top: 1px solid #999; font-weight: bold">分页</div>
|
|
|
|
|
+ <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td class="editTableTitleNoWidth">最大行数:</td>
|
|
|
|
|
+ <td class="editTableValue"><input type="number" name="count" value="text{$.count || 600}" class="editTableInput"/></td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td class="editTableTitleNoWidth">每页行数:</td>
|
|
|
|
|
+ <td class="editTableValue"><input type="number" name="pageSize" value="text{$.pageSize || 20}" class="editTableInput"/></td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td class="editTableTitleNoWidth">显示数字分页:</td>
|
|
|
|
|
+ <td class="editTableValue">
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasTruningBar" text{($.data.hasTruningBar!==false)?'checked':''} onclick="
|
|
|
|
|
+ if (this.checked){
|
|
|
|
|
+ $('text{$.id}visiblePagesTr').setStyle('display', 'table-row');
|
|
|
|
|
+ $('text{$.id}hasBatchTuringTr').setStyle('display', 'table-row');
|
|
|
|
|
+ }" type="radio" value="true"/>是
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasTruningBar" text{($.data.hasTruningBar===false)?'checked':''} onclick="
|
|
|
|
|
+ if (this.checked){
|
|
|
|
|
+ $('text{$.id}visiblePagesTr').setStyle('display', 'none');
|
|
|
|
|
+ $('text{$.id}hasBatchTuringTr').setStyle('display', 'none');
|
|
|
|
|
+ }" type="radio" value="false"/>否
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr id="text{$.id}visiblePagesTr">
|
|
|
|
|
+ <td class="editTableTitleNoWidth">数字显示个数:</td>
|
|
|
|
|
+ <td class="editTableValue"><input type="number" name="data.visiblePages" value="text{$.data.visiblePages || 9}" onchange="
|
|
|
|
|
+ $('text{$.id}visiblePagesText').set('text', this.value);
|
|
|
|
|
+ " class="editTableInput"/></td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr id="text{$.id}hasBatchTuringTr">
|
|
|
|
|
+ <td class="editTableTitleNoWidth">显示前后<span id="text{$.id}visiblePagesText">text{$.data.visiblePages || 9}</span>页:</td>
|
|
|
|
|
+ <td class="editTableValue">
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasBatchTuring" text{($.data.hasBatchTuring!==false)?'checked':''} type="radio" value="true"/>是
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasBatchTuring" text{($.data.hasBatchTuring===false)?'checked':''} type="radio" value="false"/>否
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td class="editTableTitleNoWidth">显示首页末页:</td>
|
|
|
|
|
+ <td class="editTableValue">
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasFirstLastPage" text{($.data.hasFirstLastPage!==false)?'checked':''} type="radio" value="true"/>是
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasFirstLastPage" text{($.data.hasFirstLastPage===false)?'checked':''} type="radio" value="false"/>否
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td class="editTableTitleNoWidth">显示上页下页:</td>
|
|
|
|
|
+ <td class="editTableValue">
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasPreNextPage" text{($.data.hasPreNextPage!==false)?'checked':''} type="radio" value="true"/>是
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasPreNextPage" text{($.data.hasPreNextPage===false)?'checked':''} type="radio" value="false"/>否
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td class="editTableTitleNoWidth">显示跳页:</td>
|
|
|
|
|
+ <td class="editTableValue">
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasPageJumper" text{($.data.hasPageJumper!==false)?'checked':''} type="radio" value="true"/>是
|
|
|
|
|
+ <input class="editTableRadio" name="data.hasPageJumper" text{($.data.hasPageJumper===false)?'checked':''} type="radio" value="false"/>否
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
|
|
|
|
|
<div style="height:24px; text-align: center; line-height: 24px; background-color: #EEE; border-top: 1px solid #999; font-weight: bold">权限</div>
|
|
<div style="height:24px; text-align: center; line-height: 24px; background-color: #EEE; border-top: 1px solid #999; font-weight: bold">权限</div>
|
|
|
<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable" id="processEditStarter">
|
|
<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable" id="processEditStarter">
|