The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I want to suppress the ability to show ComboBox dropdowns in the grouping grid. With the GDBG I could handle CurrentCellShowingDropDown and the event args had a Cancel property. With the grouping grid it appears that I should handle TableControlCurrentCellShowingDropDown, but the event args do not have a Cancel. Is there another way to suppress dropdowns?
Thanks,
Sean
ADAdministrator Syncfusion Team May 3, 2004 07:03 PM UTC
Sean,
The TableControlCurrentCellShowingDropDownEventArgs has a Inner property which is the original GridCurrentCellShowingDropDownEventArgs. You can set e.Inner.Cancel = true;
That''s how all these TableControl event args are designed. Each of them has the TableControl object that originated the event and the original event args with the details of the event. The Inner property is the original event args you know from GridControlBase.
Stefan
SGSean GreerMay 3, 2004 07:07 PM UTC
Okay, I feel kinda silly for not even checking that property. Thanks Stefan.
Sean