devexpress - Combo Box Column binded to Enum -
how define combo column in gridview bind enum (as possibilities), has default value coming object coming list bind grid view?
the problem coming bindlist display different options in combo should list of string... kind of: 'none', 'true', 'false', 'maybe'...
and default value coming object.field1 coming of list binded grid view.
get it!!
settings.columns.add(column => { column.fieldname = "field_name"; column.editorproperties().combobox(p => { p.datasource = enum.getnames(typeof(definition_of_enum)); }); });
by deveexpress support...
Comments
Post a Comment