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
525
I am not able to binding the ultrwebgrid when page is loading
posted

 Hi

I am using Infragistics version 8.2 , My Problem is when page is loading i am not able to Bind data in to ultraweb grid i had given two events like

Ultrawebgrid_init anf Ultrawedgrid_initializedatasource 

 protected void UltraWebGrid1_Init(object sender, EventArgs e)
    {
        UltraWebGrid1.InitializeDataSource += new         Infragistics.WebUI.UltraWebGrid.InitializeDataSourceEventHandler(UltraWebGrid1_InitializeDataSource);
    }

   protected void UltraWebGrid1_InitializeDataSource(object sender, Infragistics.WebUI.UltraWebGrid.UltraGridEventArgs e)
    {
       BindDataNew();// This is my binding function
    }

I am calling above  BindDataNew(); Under button click also so the problem is i am not able to binding the grid when page is loading but when i am clicking the button the grid is loading with data

Based on the grid data i am doing other calculation these values are coming properly when page load also and  i had seen my dataset in debugging mode the dataset is showing values but grid is coming with meassage like "No Data Display" but when i am clicking the button the grid is loading properly

Please help me....

Thanks

Sivaprasad