Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
UltraWinGrid - .NET8.0 + ColumnStyle.EditButton Not Working
posted

I just upgraded to 23.1.202331.53. In existing grid cell, UI is not displaying the edit cell button when cell gets activated. Here is the code which sets this for a specific column. (Exact same code used to work before upgrade).

_Tool_Grid.DisplayLayout.Bands[0].Columns["file"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.EditButton;
_Tool_Grid.DisplayLayout.Bands[0].Columns["file"].ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.OnCellActivate;
_Tool_Grid.DisplayLayout.Bands[0].Columns["file"].CellButtonAppearance.Image = _ImageList.Images[0];

//Issue seems to be with ButtonDisplayStyle.OnCellActivate mode. If I set it to ButtonDisplayStyle.OnMouseEnter it does show the edit button.