Hi, 
I have a dataGrid which I bind to an xml which I get from the server. 

The xml is of the following format:
<Element>
  <Value>
    <Columns>3</Columns>
    <Header h0="col 1" h1="col 2" h2="col 3 />
    <Row c0="a1" c1="a2" c2="a3" />
    <Row c0="b1" c1="b2" c2="b3" />
  </Value>
</Element>

The first time through everything works perfectly, but when we set 
the grid's dataProvider to a new xml, with more columns, it continues 
to render the original number of columns. [The dataProvider 
definitely has the new columns, its just that the datagrid is 
ignoring them. ]

How can I get the grid to render the number of columns as described 
in the xml?
thanks-

Reply via email to