在Angular应用程序中,我们使用了dx数据网格来显示记录。我们使用了批处理模式。我想动态隐藏添加行按钮。
当我们单击添加按钮时,将出现新行以输入数据。然后,我要禁用该按钮,或者如果未保存该记录则将其隐藏。
请查看我的设置
public setGridPropertiesWithBatchMode(grid:any){
grid.option({
allowColumnResizing: true,
headerFilter: {
visible: true
},
hoverStateEnabled: true,
loadPanel: {
enabled: false
},
editing: {
allowAdding: true,
allowUpdating: true,
mode: 'batch'
},
rowAlternationEnabled: true
});
}
任何人都可以帮助我解决此问题。