Support,

see the code behind that adding a column to a grid. there are 40-50 rows. Notice how we assign Store1 one. Now assume each row has a different value.

The problem is that i want to mark the ComboBox as editable so when the user selects the combo, they can type and it will be searchable. The problem is since the Store1 is shared to ALL records, the filtered store now affects ALL the rows and messes them up.

How can i utilized ONE store but still allow the proper filtering on an individual row basis?

thanks
/Z





            //emp column
            Column.Config eColumnConfig = new Column.Config();
            eColumnConfig.Text = "Column";
            eColumnConfig.DataIndex = "data1";
            eColumnConfig.Width = 150;
            eColumnConfig.CellWrap = true;
            Ext.Net.Column eColumn = new Column(eColumnConfig);
            eColumn.ID = "employeeOid";
            eColumn.Renderer.Fn = "employeeOidRenderer";


            FieldTrigger fieldTrigger = new FieldTrigger();
            fieldTrigger.Icon = TriggerIcon.Clear;
            fieldTrigger.Handler = "this.clearValue();";


            ComboBox cb2 = new ComboBox();
            cb2.StoreID = "Store1";
            cb2.ValueField = "blah";
            cb2.DisplayField = "text";
            cb2.Editable = false;
            cb2.ForceSelection = true;
            cb2.ListConfig = new BoundList();
            cb2.ListConfig.MinWidth = 400;
            cb2.ListConfig.MaxHeight = 800;
            cb2.Triggers.Add(fieldTrigger);
            eColumn.Editor.Add(cb2);
            panel.ColumnModel.Columns.Add(eColumn);