Browse By Tags

  • Forum Post: Re: How to Fill a FlexGrid ComboBox at Runtime?

    There's the simple ColCombo property which loads a combobox with 1 column given a string of items. C1FlexGrid1.Cols(2).ComboList = "One|Two|Three|Four" Or you can set up a data map with multiple columns. This way lets you set a cell value programmatically given a datamap key. You can also...
  • Forum Post: FlexGrid as DataRepeater

    Hello All, I would like to know if the FlexGrid can be used as DataRepeater? We have more columns and do not want the Grid to scroll horizontally... So as in <asp:Repeater we can format the columns one over other.... is it possible to do in FlexGrid... Please provide any reference code or help. Thanks...
  • Forum Post: Re: Showing multiple columns as data when using MultiColumnDictionary

    You can handle this in the OwnerDrawCell method. In the sample below it retrieves all column data from map (a MultiColumnDictionary), using the column 2 grid data as the key, and replaces the column separator with a colon. C1FlexGrid1.DrawMode = C1.Win.C1FlexGrid.DrawModeEnum.OwnerDraw Private Sub C1FlexGrid1_OwnerDrawCell...
  • Forum Post: Showing multiple columns as data when using MultiColumnDictionary

    I have an application that contains a C1FlexGrid with a column containing codes that is suitable for using a combo box with a drop-down list and a multicolumn dictionary. The multiple columns are the code and the corresponding description of that code, which is stored in a database table (this is an...