I am having a problem with using ultrawebgrid. When I set the DisplayLayout to
AutoGenerateColumns
="True" the data displpays fine when I set it to false I get No Data to Display.
Binding is happening ok.
columns are defined with correct key
<
igtbl:UltraGridColumn HeaderText="" Key="DrawNum" Width="200px" BaseColumnName="DrawNum">
I took off the isBound="true" tag that I saw in another post here with a similar issue.
still not displaying data?
any ideas?
Thanks
Hello,
This column is not bound and no have data. You have to sure is bind to data source.
Unbind column:<igtbl:UltraGridColumn HeaderText="" Key="DrawNum" Width="200px" BaseColumnName="DrawNum"> </igtbl:UltraGridColumn>
Bind column: <igtbl:UltraGridColumn BaseColumnName="CustomerID" IsBound="True" Key="CustomerID"> <Header Caption="CustomerID"> </Header> </igtbl:UltraGridColumn>Please take a look at the picture below:
Hope this helps.