在 ngx-datatable Ionic 中隐藏列
Hide column in ngx-datatable Ionic
我是从 Firebase 返回的 NGX-datatable. I have to populate my data table from Firebase in my ionic app. Given below is the format of JSON 的新手。
我想知道如果不使用User_id作为列,如何访问行按钮点击事件中的User_id?或者另一方面,如何将 User_Id 用作列如何隐藏 User_Id 列。我怎样才能做到这一点?
{
User_id:data,
User_name:data
}
您可以在此处找到有关如何在 ngx-datatable 中切换列的信息
toggle(col) {
const isChecked = this.isChecked(col);
if(isChecked) {
this.columns = this.columns.filter(c => {
return c.name !== col.name;
});
} else {
this.columns = [...this.columns, col];
}
}
我是从 Firebase 返回的 NGX-datatable. I have to populate my data table from Firebase in my ionic app. Given below is the format of JSON 的新手。
我想知道如果不使用User_id作为列,如何访问行按钮点击事件中的User_id?或者另一方面,如何将 User_Id 用作列如何隐藏 User_Id 列。我怎样才能做到这一点?
{
User_id:data,
User_name:data
}
您可以在此处找到有关如何在 ngx-datatable 中切换列的信息
toggle(col) {
const isChecked = this.isChecked(col);
if(isChecked) {
this.columns = this.columns.filter(c => {
return c.name !== col.name;
});
} else {
this.columns = [...this.columns, col];
}
}