0

私は jtable (jtable.org) を使用しており、必要なテーブルを作成しました。どうすればいいのかわからないのは、アクションの周りにifステートメントを作成することです'createAction'

jtable API には次のオブジェクトがあります。

TotalRecordCount: レコードの総数 (このページだけではありません)。

私が欲しいのは次のようなものです:

if(TotalRecordCount < 5){ createAction: 'PersonActionsPagedSorted.php?orderId=&action=create', }

コード全体は次のとおりです。

<script type="text/javascript">
    jQuery(document).ready(function () {
//Prepare jTable
jQuery('#ext_table').jtable({
//title: 'Create Extensions',
paging: true,
pageSize: 10,
sorting: true,
defaultSorting: 'Extension ASC',
actions: {
listAction: 'PersonActionsPagedSorted.php?orderId=&action=list',
createAction: 'PersonActionsPagedSorted.php?orderId=&action=create',
updateAction: 'PersonActionsPagedSorted.php?action=update',
deleteAction: 'PersonActionsPagedSorted.php?action=delete'
},
fields: {
PersonId: {
key: true,
create: false,
edit: false,
list: false
},
Name: {
title: 'Name',
width: '30%',
sorting:false,
//inputClass: 'validate[required]'
},
emailAddress: {
title: 'Email Address',
width: '20%',
sorting:false
}
});
//Load person list from server
$('#ext_table').jtable('load');
});
</script>
4

1 に答える 1