I'm using UltraWebGrid on a web page. What I'm trying to do is, implement client-side paging. For this LoadOnDemand must be set to XML and InitializeDataSource event must be there. When I tried this in VB.NET it worked. But in C# I can't find InitializeDataSource event in property window. Writing this event in <igtbl:UltraWebGrid> tag in the ASPX file throws a compiler error.
Any thoughts? Quick response will be much appreciated.
Read my most recent post to my blog - Demystifying WebGrid Databinding
Short answer - the event is still there but it doesn't show up in intellisense. You can set the "OnInitializeDataSource" attribute in the grids ASPX to your handler, or manually add the event (grid.InitializeDataSource += ... ) in the OnInit page method.
-Tony
I could use an example that includes the ellipses (...). I don't need a complete hand-holding but a nice slap on the back would help. I keep getting slugged in the face, yuk, yuk...
Thanx Tony