gpt4 book ai didi

angularjs - Ng-admin:如何制作实体的自定义模板 listView?

转载 作者:行者123 更新时间:2023-12-04 20:36:42 24 4
gpt4 key购买 nike

我尝试制作自定义模板listView,例如:

import listTemplate from '../templates/listTemplate.html';

var users = admin.getEntity('users');
users
.listView()
.template(listTemplate)
.actions([])
.title('All users')
.perPage(10)
.fields([
nga.field('email'),
nga.field('name')
])
.filters([
nga.field('filter', 'template')
.label('')
.pinned(true)
.defaultValue('')
.template('<div class="input-group"><input type="text" ng-model="value" placeholder="Search..." class="form-control"></input><span class="input-group-addon"><i class="glyphicon glyphicon-search"></i></span></div>')
])
.listActions(['edit', 'show']);

和 listTemplate.html 模板,我从 ng-admin 的源代码中复制:
<div class="row list-view" ng-class="::'ng-admin-entity-' + listController.entity.name()">
<div class="col-lg-12">
<ma-datagrid name="{{ ::listController.view.name() }}"
entries="listController.dataStore.getEntries(listController.entity.uniqueId)"
selection="selection"
fields="::listController.fields"
list-actions="::listController.listActions"
entity="::listController.entity"
datastore="listController.dataStore">
</ma-datagrid>
</div>
</div>

<div class="row" ng-if="::!listController.infinitePagination">
<div class="col-lg-12">
<ma-datagrid-pagination
page="{{ listController.page }}"
per-page="{{ ::listController.view.perPage() }}"
total-items="{{ listController.totalItems }}"
set-page="::listController.setPageCallback">
</ma-datagrid-pagination>
</div>
</div>

<ma-datagrid-infinite-pagination ng-if="::listController.infinitePagination"
per-page="{{ ::listController.view.perPage() }}"
total-items="{{ ::listController.totalItems }}"
next-page="::listController.nextPageCallback">
</ma-datagrid-infinite-pagination>

但是当我在浏览器上打开时它只显示空列表,因为自定义 listView 模板无法获取 listController 实例。谁能帮我 ?

最佳答案

您应该复制 listLayout.html模板代替:

<div class="row list-header">
<div class="col-lg-12">
<div class="page-header">

<ma-view-actions override="::llCtrl.actions" selection="selection" batch-buttons="::llCtrl.batchActions" entity="::llCtrl.entity" datastore="::llCtrl.dataStore" search="::llCtrl.search" filters="::llCtrl.filters" enabled-filters="llCtrl.enabledFilters" enable-filter="llCtrl.enableFilter">
<ma-filter-button filters="filters()" enabled-filters="enabledFilters" enable-filter="enableFilter()"></ma-filter-button>
<ma-view-batch-actions buttons="::batchButtons()" selection="selection" entity="::entity"></ma-view-batch-actions>
<ma-export-to-csv-button entity="::entity" search="::search" datastore="::datastore"></ma-export-to-csv-button>
<ma-create-button ng-if="::entity.creationView().enabled" entity="::entity"></ma-create-button>
</ma-view-actions>

<h1 compile="::llCtrl.view.title()">
{{ ::llCtrl.view.entity.name() | humanize | pluralize }} list
</h1>
<p class="lead" ng-if="::llCtrl.view.description()" compile="::llCtrl.view.description()">{{ ::llCtrl.view.description() }}</p>
</div>

<ma-filter-form ng-if="llCtrl.hasFilters" filters="llCtrl.enabledFilters" values="llCtrl.search" datastore="::llCtrl.dataStore" remove-filter="::llCtrl.removeFilter"></ma-filter-form>

</div>
</div>

<div ui-view="grid"></div>

关于angularjs - Ng-admin:如何制作实体的自定义模板 listView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34034089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com