With this XML I can populate grid :
<Products>
<Product Col1="Parka M" Col2="125"></Product>
</Products>
With this XML I can't :
<Products>
<Product>
<Col1>Parka M</Col1>
<Col2>125</Col2>
</Product>
</Products>
Is it possible to define column with node tag. When I define column with attribute tag, this work great but I don't want this
Thanks