Where can I find examples of using infragistics controls, MVC3 and razor? I am using NetAdvantage 2011.1
Thank You
If you are talking about NetAdvantage for jQuery and have installed samples files then open a sample page then click on "Select Sample source file to" dropdown and select *.cshtml source
Currently the only thing I've been able to do is the Grid (shown below). But I'm lost on how to do things like a WebImageButton. How do I include the correct assemblies? Are there any examples showing different controls and how to use them with MVC 3 and Razor. Which samples are you talking about? Is the Grid below a JQuery grid?
Thanks,
Chip
@( Html.Infragistics().Grid<JTrack>() .ID("igGrid1") .PrimaryKey("Id") .Columns(column => { column.For(x => x.Name).DataType("string").HeaderText("Name"); column.For(x => x.Duration).DataType("string").HeaderText("Time"); column.For(x => x.ArtistName).DataType("string").HeaderText("Artist"); column.For(x => x.AlbumName).DataType("string").HeaderText("Album"); column.For(x => x.GenreName).DataType("string").HeaderText("Genre"); }) .Features(features => { features.Paging().PageSize(40).PrevPageLabelText("Previous").NextPageLabelText("NEXT"); features.Sorting().Mode(SortingMode.Single).ColumnSettings(settings => { settings.ColumnSetting().ColumnKey("Name").AllowSorting(true); }); features.Selection().MouseDragSelect(true).MultipleSelection(true).Mode(SelectionMode.Row).Activation(true); })