Thank you. According to this example I need to overwrite the FillWithChoices, something like this:
private bool autoFilter=true;
public override void FillWithChoices(ListBox listBox, GridStyleInfo style, out bool exclusive)
{
base.FillWithChoices (listBox, style, out exclusive);
if(!this.AutoFilter)
{
int count=listBox.Items.Count;
for(int i=3; i
AD
Administrator
Syncfusion Team
June 24, 2005 11:38 PM UTC
In the method you listed, you can cast the style to a GridTableCellStyleInfo and from there you can get the column. Then you can conditionally change the droplist.
GridTableCellStyleInfo tStyle = style as GridTableCellStyleInfo;
string field = tStyle.TableCellIdentity.Column.Name;