I add ComboBox column to GidView using this code:
Data is displayed in GridView by I need:
- sort it. It is possible in this ComboBox? I try use like in normla ComboBox but it is not work
- using autocompletemode. I try do it but it is not working as Suggested :( I do now why
Could you help me?
GridViewComboBoxColumn stockCode = new GridViewComboBoxColumn(); |
stockCode.DataSource = dbS.view_Trans_Order_StockCodes; |
stockCode.DisplayMember = "StockCode"; |
stockCode.ValueMember = "StockCode"; |
stockCode.FieldName = "StockCode"; |
stockCode.AutoCompleteMode = AutoCompleteMode.Suggest; |
radGridView1.MasterGridViewTemplate.Columns.Add(stockCode); |
Data is displayed in GridView by I need:
- sort it. It is possible in this ComboBox? I try use like in normla ComboBox but it is not work
- using autocompletemode. I try do it but it is not working as Suggested :( I do now why
Could you help me?