Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
800
binding columns to a string array
posted

Is there an easy way to bind a list<string[]> where each row/list element is a string array.and have each string array element's string bind to a column. E.g. the string array has 3 elements and I would end up with 3 columns. Just not sure of the binding syntax. It would be nice to do this without creating an indexer on my dataobject.

Parents
No Data
Reply
  • 69686
    Verified Answer
    posted

    Hello,

    I believe you are looking for using unbound fields. Only they can bind to an indexed property or collection by setting their binding path, like Property1[2].Name .

Children