This question is locked. New answers and comments are not allowed.
My grid has multiple columns that use a Binding (DataMemberBinding) object instead of a UniqueName. The Binding object will get a value from a Dictionary object in my bound data. The grid displays the the data perfectly. However, when I call grid.ToHtml(), the cell data looks like it is just calling a ToString() on the Dictionary instead of using the Binding object. Am I missing something?
Binding b = new Binding();
b.Path = new PropertyPath("DictionaryProperty");
b.Converter = new DictionaryConverter();
GridViewDataColumn col = new GridViewDataColumn();
col.Header = "My Column";
col.DataMemberBinding = b;
