需要信息来修改ag网格中的columnMenuTab。 在g网格columnMenuTab中选中复选框时,还需要事件或回调信息。
当前正在使用 角度6 ag-grid V 19.0
答案 0 :(得分:0)
您可以在运动员列def中使用将此属性设置为true
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CollectionViewCell", for: indexPath) as! CollectionViewCell
let dataObject = dataSourceArray[indexPath.row] as! YourDataModelObject
// Here you may set any property of the collectionView cell
return cell
}
根据docs,当切换列的可见性时会触发 {
headerName: "Athlete",
field: "athlete",
width: 150,
lockVisible: true,
}
事件。
columnVisible-隐藏/显示了一个列或一组列。