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
340
No Data to Display
posted

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

  • 7694
    Verified Answer
    posted

    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.