FlatGrid sample in VB.Net and aspx

Essential Studio v10.3.0.43
VS2012 Prof
Windows 7
 
Could someone please provide me with a FlatGrid sample in MVC VB.Net and aspx (not Razor) that is just the basics that I can build on ? I can't get my head around the C# and Razor examples.
 
thanks,
John

3 Replies

YO Yogeshwaran Syncfusion Team September 4, 2012 07:19 AM UTC

Hi John,

 

Thanks for using Syncfusion products.

 

Please find the Flat Grid sample in MVC VB.Net and aspx.

 

SyncfusionVB.zip

 

Please let us know if you have any concerns.

 

Regards,

Yogesh R



JH John Hind September 6, 2012 09:44 PM UTC

Thanks for the sample, it helped a lot.
 
Have you got a sample that shows more complex VB usage of the grid ? I am struggling with the usage of ".PageSettings".
 
regards,
John


RD Rakesh D Syncfusion Team September 12, 2012 10:27 AM UTC

 

Hi John,


Thanks for using Syncfusion products.

 

To enable paging feature for your grid use the EnablePaging method in your aspx page and set the PageCount , PageSize , CurrentPage properties in PageSettings. Please see the below code snippet for further details.

 

[ASPX]

 

<%=Html.Syncfusion().Grid(Of SyncfusionVB.Order)("GridSrc") _

             .EnablePaging() _

.PageSettings(Sub(page)

                                  page.CurrentPage(2)

                                  page.PageCount(10)

                                  page.PageSize(12)

                                  page.PagerStyle(PagerStyle.Numeric)

                              End Sub)

%>

 

 

For your convenience we have created a sample application and attached the same below. Please refer to it for further details.

 

 

Please let us know if you have any concerns.

 

Regards,

Rakesh D



SyncfusionVB1728685625_d786d5fc.zip

Loader.
Up arrow icon