Description
Is there an existing issue for this?
- I have searched the existing issues
Is your feature request related to a problem? Please describe the problem.
I am trying to hide the currently displayed column options when the user presses ESC but there is no function available to do so.
Describe the solution you'd like
The QuickGrid<T>::ShowColumnOptionsAsync(ColumnBase<T> column)
should accept a NULLABLE value. It should be defined as QuickGrid<T>::ShowColumnOptionsAsync(ColumnBase<T>? column)
No code change would be required, simply a change to the signature of the function.
Alternatively a HideCurrentColumnOptions()
method could be exposed.
Additional context
No response