我使用这个插件在 angualar 2 中创建一个智能表:
https://akveo.github.io/ng2-smart-table/#/documentation
我需要自定义表格。
即)只有当用户单击“创建”链接时,才应该触发该事件,他们的文档说:
'create' 事件:点击创建按钮后触发。仅当表模式 = 外部时触发。
需要知道如何设置外部模式,因为我在他们的文档中找不到任何地方。
截至目前,我正在使用:
<ng2-smart-table [settings]="settings" [source]="source" (userRowSelect)="onUserRowSelect($event)" class="table table-hover table-striped"></ng2-smart-table>
onUserRowSelect(event): void {
//But this event triggers whenever(wherever in the table) user clicks, which is dont want !
}
需要建议!