├── .gitignore ├── CODEOWNERS ├── README.md └── Telerik.Examples.Mvc ├── Telerik.Examples.Mvc.sln └── Telerik.Examples.Mvc ├── App_Data ├── ImageBrowser.mdf ├── ImageBrowser_log.ldf ├── OrdersData.xml ├── ProductsDatabase.mdf ├── ProductsDatabase_log.ldf ├── SDLC.mpp ├── Sample.docx ├── Sample.mdf ├── Sample_log.ldf ├── UserFiles.mdf ├── UserFiles_log.ldf ├── employees.xml ├── exported_file.mspdi ├── exported_file.xml └── test.mspdi ├── App_Start ├── BundleConfig.cs ├── FilterConfig.cs ├── IdentityConfig.cs ├── ODataConfig.cs ├── RouteConfig.cs ├── Startup.cs └── WebApiConfig.cs ├── Areas ├── Bundles │ ├── BundlesAreaRegistration.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Scripts │ │ ├── kendo.all.min.js │ │ └── kendo.aspnetmvc.min.js │ ├── Styles │ │ ├── default-ocean-blue.css │ │ └── index.css │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── Captcha │ ├── CaptchaAreaRegistration.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Files │ │ ├── 479a8ab8-402d-4af1-91b2-b43e7787a8bf.png │ │ ├── 479a8ab8-402d-4af1-91b2-b43e7787a8bf.wav │ │ ├── 6733c999-f235-4bc4-86e3-94310f6469c1.png │ │ ├── 6733c999-f235-4bc4-86e3-94310f6469c1.wav │ │ ├── bb5460c1-2c98-45bc-ac9f-62130bf7edea.png │ │ └── bb5460c1-2c98-45bc-ac9f-62130bf7edea.wav │ ├── Models │ │ ├── CaptchaInputModel.cs │ │ └── UserViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── CdnFallback │ ├── CdnFallbackAreaRegistration.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Scripts │ │ ├── jquery-3.7.0.min.js │ │ ├── kendo.all-2024.2.514.min.js │ │ ├── kendo.aspnetmvc-2024.2.514.min.js │ │ └── modernizr-2.8.3.js │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── ChartDynamicSeries │ ├── ChartDynamicSeriesAreaRegistration.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── MySeriesData.cs │ │ └── MyViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── ChartInGrid │ ├── ChartInGridAreaRegistration.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── ChartSignalR │ ├── ChartSignalRAreaRegistration.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Hubs │ │ └── ProductHub.cs │ ├── Models │ │ ├── Category.cs │ │ ├── CategoryViewModel.cs │ │ ├── Customer.cs │ │ ├── CustomerDemographic.cs │ │ ├── Employee.cs │ │ ├── Intraday.cs │ │ ├── Meeting.cs │ │ ├── MeetingAttendee.cs │ │ ├── Order.cs │ │ ├── Order_Detail.cs │ │ ├── Product.cs │ │ ├── ProductService.cs │ │ ├── ProductViewModel.cs │ │ ├── Region.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── Shipper.cs │ │ ├── Stock.cs │ │ ├── Supplier.cs │ │ ├── Task.cs │ │ ├── Territory.cs │ │ └── Weather.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── ChatPeerToPeer │ ├── ChatPeerToPeerAreaRegistration.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Hubs │ │ └── ChatHub.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── DefineCustomHtmlHelper │ ├── Controllers │ │ └── HomeController.cs │ ├── DefineCustomHtmlHelperAreaRegistration.cs │ ├── Helpers │ │ └── MyGridHelper.cs │ ├── Models │ │ └── OrderViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── DropDownListCustomDataSource │ ├── Controllers │ │ └── HomeController.cs │ ├── DropDownListCustomDataSourceAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── DropDownListVirtualization │ ├── Controllers │ │ └── HomeController.cs │ ├── DropDownListVirtualizationAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── DropDownListWebApi │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── SpecialtyController.cs │ │ └── TypeController.cs │ ├── DropDownListWebApiAreaRegistration.cs │ ├── Models │ │ ├── Specialty.cs │ │ └── Type.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── EditorDatabaseImageBrowser │ ├── Controllers │ │ └── HomeController.cs │ ├── EditorDatabaseImageBrowserAreaRegistration.cs │ ├── Models │ │ ├── Files.Context.cs │ │ ├── Files.Context.tt │ │ ├── Files.Designer.cs │ │ ├── Files.cs │ │ ├── Files.edmx │ │ ├── Files.edmx.diagram │ │ ├── Files.tt │ │ ├── FilesRepository.cs │ │ ├── Folder.cs │ │ └── Image.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── EditorEnterLinebreakShiftEnterParagraph │ ├── Controllers │ │ └── HomeController.cs │ ├── EditorEnterLinebreakShiftEnterParagraphAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── EditorImportExport │ ├── Controllers │ │ └── HomeController.cs │ ├── EditorImportExportAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── EditorUploadImage │ ├── Controllers │ │ └── HomeController.cs │ ├── EditorUploadImageAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GanttImportExportUsingMpxj │ ├── Controllers │ │ └── HomeController.cs │ ├── GanttImportExportUsingMpxjAreaRegistration.cs │ ├── Models │ │ ├── DependencyViewModel.cs │ │ ├── GanttDataContainer.cs │ │ ├── ResourceAssignmentViewModel.cs │ │ ├── ResourceViewModel.cs │ │ └── TaskViewModel.cs │ ├── Services │ │ ├── FileWriteService.cs │ │ ├── GanttAssignmentService.cs │ │ ├── GanttDependencyService.cs │ │ ├── GanttResourceService.cs │ │ └── GanttTaskService.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridAjaxBindingCustomJsonResult │ ├── Controllers │ │ └── HomeController.cs │ ├── GridAjaxBindingCustomJsonResultAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ ├── Serialization │ │ ├── CustomJavaScriptSerializer.cs │ │ ├── CustomJsonInitializer.cs │ │ └── CustomJsonResult.cs │ └── Views │ │ ├── Home │ │ ├── Index.cshtml │ │ └── LocalData.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridAjaxBindingDatabase │ ├── Controllers │ │ └── HomeController.cs │ ├── GridAjaxBindingDatabaseAreaRegistration.cs │ ├── Models │ │ ├── Product.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridAlternatingRows │ ├── Controllers │ │ └── HomeController.cs │ ├── GridAlternatingRowsAreaRegistration.cs │ ├── Models │ │ └── Student.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridBatchEditingDatabase │ ├── Controllers │ │ └── HomeController.cs │ ├── GridBatchEditingDatabaseAreaRegistration.cs │ ├── Models │ │ ├── GridBatchEditingDatabaseProduct.cs │ │ ├── ProductViewModel.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridBindToXMLKendoUI │ ├── Content │ │ ├── books.xml │ │ └── xml-data │ │ │ ├── bulletproof-web-design.png │ │ │ ├── eloquent-javascript.png │ │ │ ├── handcrafted-css.png │ │ │ ├── high-performance-javascript.png │ │ │ ├── javascript-patterns.png │ │ │ ├── javascript-the-good-parts.png │ │ │ ├── responsive-web-design.png │ │ │ ├── secrets-of-the-javascript-ninja.png │ │ │ └── stunning-css3.png │ ├── GridBindToXMLKendoUIAreaRegistration.cs │ ├── SamplePage.html │ └── Views │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridBindingDataTable │ ├── Controllers │ │ └── HomeController.cs │ ├── GridBindingDataTableAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridBindingDynamicCollection │ ├── Controllers │ │ └── HomeController.cs │ ├── GridBindingDynamicCollectionAreaRegistration.cs │ ├── Models │ │ ├── GridBindingDynamicCollectionProduct.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCRUDWithObjectColumn │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCRUDWithObjectColumnAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── DropDownEditor.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCSP │ ├── Controllers │ │ ├── Demo_Detail_Template_CSPController.cs │ │ ├── Demo_Overview_CSPController.cs │ │ └── HomeController.cs │ ├── GridCSPAreaRegistration.cs │ ├── Models │ │ ├── CategoryViewModel.cs │ │ ├── CountryViewModel.cs │ │ ├── Demo.cs │ │ ├── DetailProductViewModel.cs │ │ ├── EmployeeViewModel.cs │ │ ├── ErrorViewModel.cs │ │ ├── ExtendedEmployeeViewModel.cs │ │ ├── Location.cs │ │ └── OrderViewModel.cs │ └── Views │ │ ├── Demo_Detail_Template_CSP │ │ └── Demo_Detail_Template_CSP.cshtml │ │ ├── Demo_Overview_CSP │ │ └── Demo_Overview_CSP.cshtml │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── _Child_Grid.cshtml │ │ ├── _Layout.cshtml │ │ └── _OverviewLayout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCancellationToken │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCancellationTokenAreaRegistration.cs │ ├── Models │ │ └── OrderViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCascadingDropDownFilters │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCascadingDropDownFiltersAreaRegistration.cs │ ├── Models │ │ ├── CustomerViewModel.cs │ │ ├── GridCascadingDropDownFiltersCustomer.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCheckboxClientTemplate │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCheckboxClientTemplateAreaRegistration.cs │ ├── Models │ │ └── ProductViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridClientDetailTemplate │ ├── Controllers │ │ └── HomeController.cs │ ├── GridClientDetailTemplateAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridContextMenu │ ├── Controllers │ │ └── HomeController.cs │ ├── GridContextMenuAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ ├── EmployeeRepository.cs │ │ ├── Order.cs │ │ └── OrderRepository.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridContextMenuDisabledItems │ ├── Controllers │ │ └── HomeController.cs │ ├── GridContextMenuDisabledItemsAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCsvServerExport │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCsvServerExportAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCustomAjaxBinding │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCustomAjaxBindingAreaRegistration.cs │ ├── Models │ │ ├── GridCustomAjaxBindingOrder.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCustomCommandButtons │ ├── Content │ │ └── icons │ │ │ ├── add.png │ │ │ ├── cancel.png │ │ │ ├── edit.png │ │ │ └── ok.png │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCustomCommandButtonsAreaRegistration.cs │ ├── Models │ │ ├── OrderRepository.cs │ │ └── OrderViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCustomCommandsImageButtons │ ├── Content │ │ └── icons │ │ │ ├── add.png │ │ │ ├── cancel.png │ │ │ ├── edit.png │ │ │ └── ok.png │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCustomCommandsImageButtonsAreaRegistration.cs │ ├── Images │ │ ├── accent.png │ │ ├── bullet.png │ │ └── heroAccent.png │ ├── Models │ │ ├── Employee.cs │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCustomConfirmationWindow │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCustomConfirmationWindowAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridCustomServerBinding │ ├── Controllers │ │ └── HomeController.cs │ ├── GridCustomServerBindingAreaRegistration.cs │ ├── Models │ │ ├── GridCustomServerBindingOrder.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridDateIgnoreTimeZones │ ├── Controllers │ │ └── HomeController.cs │ ├── GridDateIgnoreTimeZonesAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridDateTimeOffset │ ├── Controllers │ │ └── HomeController.cs │ ├── GridDateTimeOffsetAreaRegistration.cs │ ├── Models │ │ ├── Car.cs │ │ ├── CarViewModel.cs │ │ ├── CarsService.cs │ │ ├── MappingProfile.cs │ │ └── Student.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridDateUtcOnServerAndClient │ ├── Controllers │ │ └── HomeController.cs │ ├── GridDateUtcOnServerAndClientAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridDropDownListEditorBoundToNullableField │ ├── Controllers │ │ └── HomeController.cs │ ├── GridDropDownListEditorBoundToNullableFieldAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── NullableDropDown.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditPopUpServerValidation │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditPopUpServerValidationAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditSyncChangesWithOneRequest │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditSyncChangesWithOneRequestAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditTimespan │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditTimespanAreaRegistration.cs │ ├── Models │ │ └── ViewModel.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ ├── NumericEditor.cshtml │ │ │ └── TimePickerEditor.cshtml │ │ ├── NumericEditor.cshtml │ │ └── TimePickerEditor.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditing3LevelHierarchy │ ├── Controllers │ │ ├── BaseController.cs │ │ ├── EmployeesController.cs │ │ ├── HomeController.cs │ │ ├── OrderDetailsController.cs │ │ └── OrdersController.cs │ ├── GridEditing3LevelHierarchyAreaRegistration.cs │ ├── Models │ │ ├── GridEditing3LevelHierarchyEmployee.cs │ │ ├── GridEditing3LevelHierarchyOrder.cs │ │ ├── GridEditing3LevelHierarchyOrder_Detail.cs │ │ ├── GridEditing3LevelHierarchyProduct.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingAjaxWithEnumeration │ ├── Controllers │ │ └── GridEditingAjaxWithEnumerationController.cs │ ├── GridEditingAjaxWithEnumerationAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ └── Product.cs │ └── Views │ │ ├── GridEditingAjaxWithEnumeration │ │ ├── EditorTemplates │ │ │ └── Category.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingAutoCompleteNewItem │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingAutoCompleteNewItemAreaRegistration.cs │ ├── Models │ │ ├── GridViewModel.cs │ │ ├── ResultEntry.cs │ │ └── ResultEntryViewModel.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── PersonFieldEditor.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingBatchMultiSelectionDelete │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingBatchMultiSelectionDeleteAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingBatchWithCheckboxes │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingBatchWithCheckboxesAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingCustomPopupEditor │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingCustomPopupEditorAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── Person.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingEFCodeFirst │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingEFCodeFirstAreaRegistration.cs │ ├── Models │ │ ├── Customer.cs │ │ ├── CustomerContext.cs │ │ └── CustomerViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingExternalContainer │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingExternalContainerAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingInCellCascadingDropDownLists │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingInCellCascadingDropDownListsAreaRegistration.cs │ ├── Models │ │ ├── Customer.cs │ │ ├── CustomerRepository.cs │ │ ├── ForeignKeyValues.cs │ │ ├── License.cs │ │ ├── LicenseRepository.cs │ │ ├── Product.cs │ │ ├── ProductRepository.cs │ │ ├── Vendor.cs │ │ └── VendorRepository.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ ├── CustomerId.cshtml │ │ │ ├── ProductId.cshtml │ │ │ └── VendorId.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingInCellRadioButtonColumn │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingInCellRadioButtonColumnAreaRegistration.cs │ ├── Models │ │ ├── Person.cs │ │ └── Role.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingInCellWebApi │ ├── Controllers │ │ ├── EmployeesController.cs │ │ ├── HomeController.cs │ │ └── ProductsController.cs │ ├── GridEditingInCellWebApiAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ ├── DbExtensions.cs │ │ ├── Employee.cs │ │ ├── NorthwindEntities.Context.cs │ │ ├── NorthwindEntities.Context.tt │ │ ├── NorthwindEntities.Designer.cs │ │ ├── NorthwindEntities.cs │ │ ├── NorthwindEntities.edmx │ │ ├── NorthwindEntities.edmx.diagram │ │ ├── NorthwindEntities.tt │ │ ├── Product.cs │ │ ├── ProductViewModel.cs │ │ └── ProductsRequest.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingInLineColorSelection │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingInLineColorSelectionAreaRegistration.cs │ ├── Models │ │ ├── OrderRepository.cs │ │ └── PaintOrder.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingInLineDatabase │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingInLineDatabaseAreaRegistration.cs │ ├── Models │ │ ├── GridEditingInLineDatabaseProduct.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingInLineNullableBoolean │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingInLineNullableBooleanAreaRegistration.cs │ ├── Models │ │ └── InLineEditingProduct.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── Boolean.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingModelStateError │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingModelStateErrorAreaRegistration.cs │ ├── Models │ │ ├── GridEditingModelStateErrorProduct.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingPoPupRequiredDropDownListFor │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingPoPupRequiredDropDownListForAreaRegistration.cs │ ├── Models │ │ └── Person.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── Person.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingPopUpAccessModel │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingPopUpAccessModelAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── CustomPopUpEditor.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingPopUpMultiSelect │ ├── GridEditingPopUpMultiSelectAreaRegistration.cs │ ├── Models │ │ ├── EmployeeViewModel.cs │ │ ├── GridEditingPopUpMultiSelectEmployee.cs │ │ ├── GridEditingPopUpMultiSelectTerritory.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.tt │ │ ├── Northwind1.Designer.cs │ │ ├── NorthwindRepository.cs │ │ └── TerritoryViewModel.cs │ └── Views │ │ └── Home │ │ └── EditorTemplates │ │ ├── EmployeeViewModelEditor.cshtml │ │ └── TerritoriesEditor.cshtml ├── GridEditingPopUpMultiselect │ ├── Controllers │ │ └── HomeController.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingPopUpNestedGrid │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingPopUpNestedGridAreaRegistration.cs │ ├── Models │ │ ├── EmployeeViewModel.cs │ │ ├── GridEditingPopUpNestedGridEmployee.cs │ │ ├── GridEditingPopUpNestedGridTerritory.cs │ │ ├── NorthwindRepository.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ ├── SampleModel.tt │ │ └── TerritoryViewModel.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── EmployeeViewModel.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingPopUpNestedGridBatch │ ├── Controllers │ │ ├── BaseController.cs │ │ ├── EmployeesController.cs │ │ ├── HomeController.cs │ │ ├── OrderDetailsController.cs │ │ └── OrdersController.cs │ ├── GridEditingPopUpNestedGridBatchAreaRegistration.cs │ ├── Models │ │ ├── EmployeeViewModel.cs │ │ ├── GridEditingPopUpNestedGridBatchEmployee.cs │ │ ├── GridEditingPopUpNestedGridBatchOrder.cs │ │ ├── GridEditingPopUpNestedGridBatchOrder_Detail.cs │ │ ├── OrderDetailViewModel.cs │ │ ├── OrderViewModel.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── EmployeeViewModel.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingPopUpServerValidation │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingPopUpServerValidationAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingPopUpTreeView │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingPopUpTreeViewAreaRegistration.cs │ ├── Models │ │ ├── GridEditingPopUpTreeViewProduct.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingUploadInPopUp │ ├── CategoryImage │ │ ├── Desert.jpg │ │ ├── Hydrangeas.jpg │ │ ├── Lighthouse.jpg │ │ └── Tulips.jpg │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingUploadInPopUpAreaRegistration.cs │ ├── Models │ │ └── Category.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── FileUpload.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingWebApi │ ├── Controllers │ │ ├── GridEditingWebApiProductController.cs │ │ └── HomeController.cs │ ├── GridEditingWebApiAreaRegistration.cs │ ├── Models │ │ ├── GridEditingWebApiProduct.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ └── Northwind.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingWithCascadingDropDownLists │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingWithCascadingDropDownListsAreaRegistration.cs │ ├── Models │ │ ├── Customer.cs │ │ ├── CustomerRepository.cs │ │ ├── License.cs │ │ ├── LicenseRepository.cs │ │ ├── Product.cs │ │ ├── ProductRepository.cs │ │ ├── Vendor.cs │ │ └── VendorRepository.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ ├── CustomerId.cshtml │ │ │ ├── ProductId.cshtml │ │ │ └── VendorId.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridEditingWithComboBoxServerFiltering │ ├── Controllers │ │ └── HomeController.cs │ ├── GridEditingWithComboBoxServerFilteringAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── ComboBoxLookup.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridExcelExportCellFormat │ ├── Controllers │ │ └── HomeController.cs │ ├── GridExcelExportCellFormatAreaRegistration.cs │ ├── Models │ │ └── Student.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridExcelExportColumnTemplate │ ├── Controllers │ │ └── HomeController.cs │ ├── GridExcelExportColumnTemplateAreaRegistration.cs │ ├── Models │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridExportingExcelMultiple │ ├── Controllers │ │ └── HomeController.cs │ ├── GridExportingExcelMultipleAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ ├── GridExportingExcelMultipleProduct.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ ├── Northwind.tt │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridFilterAsYouType │ ├── Controllers │ │ └── HomeController.cs │ ├── GridFilterAsYouTypeAreaRegistration.cs │ ├── Models │ │ └── OrderViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridFilterExcelLike │ ├── Controllers │ │ └── HomeController.cs │ ├── GridFilterExcelLikeAreaRegistration.cs │ ├── Models │ │ ├── GridFilterExcelLikeProduct.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ └── Northwind.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridForeignKeyColumnCRUD │ ├── Controllers │ │ └── HomeController.cs │ ├── GridForeignKeyColumnCRUDAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridForeignKeyComboBoxColumn │ ├── Controllers │ │ └── HomeController.cs │ ├── GridForeignKeyComboBoxColumnAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── ComboBox.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridForeignKeyGroupHeaderTemplate │ ├── Controllers │ │ └── HomeController.cs │ ├── GridForeignKeyGroupHeaderTemplateAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridForeignKeySorting │ ├── Controllers │ │ └── HomeController.cs │ ├── GridForeignKeySortingAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── GridForeignKey.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHandleServerError │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHandleServerErrorAreaRegistration.cs │ ├── Models │ │ ├── CategoryViewModel.cs │ │ └── OrderViewModel.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── ClientCategory.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHeightBasedOnScreenlockedColumns │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHeightBasedOnScreenlockedColumnsAreaRegistration.cs │ ├── Models │ │ └── OrderViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchyClientDetailTemplate │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHierarchyClientDetailTemplateAreaRegistration.cs │ ├── Models │ │ ├── GridHierarchyClientDetailTemplateCategory.cs │ │ ├── GridHierarchyClientDetailTemplateProduct.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchyDynamicModelLoadingAndDataTable │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHierarchyDynamicModelLoadingAndDataTableAreaRegistration.cs │ └── Views │ │ ├── Home │ │ ├── DetailTemplate.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchyEditingWithCheckboxes │ ├── Controllers │ │ ├── BaseController.cs │ │ ├── EmployeesController.cs │ │ ├── HomeController.cs │ │ └── OrdersController.cs │ ├── GridHierarchyEditingWithCheckboxesAreaRegistration.cs │ ├── Models │ │ ├── EmployeeViewModel.cs │ │ ├── GridHierarchyEditingWithCheckboxesEmployee.cs │ │ ├── GridHierarchyEditingWithCheckboxesOrder.cs │ │ ├── OrderViewModel.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchyExcelExportAllPages │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHierarchyExcelExportAllPagesAreaRegistration.cs │ ├── Models │ │ ├── EmployeeViewModel.cs │ │ ├── GridHierarchyExcelExportAllPagesEmployee.cs │ │ ├── GridHierarchyExcelExportAllPagesOrder.cs │ │ ├── OrderViewModel.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ ├── Index.cshtml │ │ └── OnlyCurrentPage.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchyInCellEditing │ ├── Controllers │ │ ├── BaseController.cs │ │ ├── EmployeesController.cs │ │ ├── HomeController.cs │ │ └── OrdersController.cs │ ├── GridHierarchyInCellEditingAreaRegistration.cs │ ├── Models │ │ ├── EmployeeViewModel.cs │ │ ├── GridHierarchyInCellEditingEmployee.cs │ │ ├── GridHierarchyInCellEditingOrder.cs │ │ ├── OrderViewModel.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchySelfReferencing │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHierarchySelfReferencingAreaRegistration.cs │ ├── Models │ │ └── Customer.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchyServer │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHierarchyServerAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ ├── Northwind.tt │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridHierarchyServerDetailTemplate │ ├── Controllers │ │ └── HomeController.cs │ ├── GridHierarchyServerDetailTemplateAreaRegistration.cs │ ├── Models │ │ ├── GridHierarchyServerDetailTemplateProduct.cs │ │ ├── SampleModel.Context.cs │ │ ├── SampleModel.Context.tt │ │ ├── SampleModel.Designer.cs │ │ ├── SampleModel.cs │ │ ├── SampleModel.edmx │ │ ├── SampleModel.edmx.diagram │ │ └── SampleModel.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridInPartialViewLoadedInTabStrip │ ├── Controllers │ │ └── HomeController.cs │ ├── GridInPartialViewLoadedInTabStripAreaRegistration.cs │ ├── Models │ │ └── Customer.cs │ └── Views │ │ ├── Home │ │ ├── Grid.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridMasterDetail │ ├── Controllers │ │ └── HomeController.cs │ ├── GridMasterDetailAreaRegistration.cs │ ├── Models │ │ ├── GridMasterDetailCategory.cs │ │ ├── GridMasterDetailProduct.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ └── Northwind.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridModifyFiltersOnTheServer │ ├── Controllers │ │ └── HomeController.cs │ ├── GridModifyFiltersOnTheServerAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ ├── EmployeeRepository.cs │ │ ├── Order.cs │ │ └── OrderRepository.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridMultiSelect │ ├── Controllers │ │ └── HomeController.cs │ ├── GridMultiSelectAreaRegistration.cs │ ├── Models │ │ ├── EmployeeViewModel.cs │ │ ├── GridMultiSelectEmployee.cs │ │ ├── GridMultiSelectTerritory.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.tt │ │ ├── Northwind1.Designer.cs │ │ ├── NorthwindRepository.cs │ │ └── TerritoryViewModel.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ ├── EmployeeViewModel.cshtml │ │ │ └── TerritoriesEditor.cshtml │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridMultiSelectFilter │ ├── Controllers │ │ └── HomeController.cs │ ├── GridMultiSelectFilterAreaRegistration.cs │ ├── Models │ │ └── ViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridPostWithForm │ ├── Controllers │ │ └── HomeController.cs │ ├── GridPostWithFormAreaRegistration.cs │ ├── Models │ │ ├── Category.cs │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ ├── Index.cshtml │ │ └── Save.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridPreserveServerToolbarTemplateAfterSetOptions │ ├── Controllers │ │ └── HomeController.cs │ ├── GridPreserveServerToolbarTemplateAfterSetOptionsAreaRegistration.cs │ ├── Models │ │ ├── Order.cs │ │ └── OrderRepository.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridRenderAndPreviewByteAndBase64Images │ ├── Content │ │ └── icons │ │ │ ├── alt.png │ │ │ ├── clock.png │ │ │ ├── cut.png │ │ │ ├── download.png │ │ │ ├── forward.png │ │ │ ├── music.png │ │ │ ├── play.png │ │ │ ├── server.png │ │ │ └── web.png │ ├── Controllers │ │ └── HomeController.cs │ ├── Convertors │ │ ├── ImageConverter.cs │ │ └── ImageConverter.htm │ ├── GridRenderAndPreviewByteAndBase64ImagesAreaRegistration.cs │ ├── Models │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridRowsBackgroundConditional │ ├── Controllers │ │ └── HomeController.cs │ ├── GridRowsBackgroundConditionalAreaRegistration.cs │ ├── Models │ │ └── EmployeeViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridSaveAllChangesOneRequest │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSaveAllChangesOneRequestAreaRegistration.cs │ ├── Models │ │ ├── Employee.cs │ │ └── Order.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridSaveStateInSessionServerSide │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSaveStateInSessionServerSideAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridSaveStateOnServerSide │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSelectionByFieldAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridSaveStateWithBrowserHistoryAPI │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSaveStateWithBrowserHistoryAPIAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridSelectionByField │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSelectionByFieldAreaRegistration.cs │ ├── Models │ │ └── Product.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridSelectionColumnWithCheckBox │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSelectionColumnWithCheckBoxAreaRegistration.cs │ ├── Models │ │ └── ProductViewModel.cs │ └── Views │ │ ├── Home │ │ ├── Index.cshtml │ │ └── IndexAllPages.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridSignalR │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSignalRAreaRegistration.cs │ ├── Hubs │ │ └── ProductHub.cs │ ├── Models │ │ ├── Category.cs │ │ ├── CategoryViewModel.cs │ │ ├── Customer.cs │ │ ├── CustomerDemographic.cs │ │ ├── Employee.cs │ │ ├── Intraday.cs │ │ ├── Meeting.cs │ │ ├── MeetingAttendee.cs │ │ ├── Order.cs │ │ ├── Order_Detail.cs │ │ ├── Product.cs │ │ ├── ProductService.cs │ │ ├── ProductViewModel.cs │ │ ├── Region.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── Shipper.cs │ │ ├── Stock.cs │ │ ├── Supplier.cs │ │ ├── Task.cs │ │ ├── Territory.cs │ │ └── Weather.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── GridTimestamp │ ├── Controllers │ │ └── HomeController.cs │ ├── GridTimestampAreaRegistration.cs │ ├── Models │ │ ├── Product.cs │ │ ├── ProductContexInitializer.cs │ │ └── ProductContext.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── MenuOpenWindowWithAjax │ ├── Controllers │ │ └── HomeController.cs │ ├── MenuOpenWindowWithAjaxAreaRegistration.cs │ └── Views │ │ ├── Home │ │ ├── Index.cshtml │ │ └── ShowWindow.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── MenuSameControllersInDifferentAreas │ ├── Controllers │ │ └── HomeController.cs │ ├── MenuSameControllersInDifferentAreasAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── MenuSecurityTrimming │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── HomeController.cs │ │ └── ManageController.cs │ ├── MenuSecurityTrimmingAreaRegistration.cs │ ├── Models │ │ ├── AccountViewModels.cs │ │ ├── IdentityModels.cs │ │ └── ManageViewModels.cs │ └── Views │ │ ├── Account │ │ ├── ConfirmEmail.cshtml │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Login.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── SendCode.cshtml │ │ ├── VerifyCode.cshtml │ │ └── _ExternalLoginsListPartial.cshtml │ │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ │ ├── Manage │ │ ├── AddPhoneNumber.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── Index.cshtml │ │ ├── ManageLogins.cshtml │ │ ├── SetPassword.cshtml │ │ └── VerifyPhoneNumber.cshtml │ │ ├── Shared │ │ ├── Error.cshtml │ │ └── Lockout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── MultiColumnComboBoxEdit │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── SampleData.cs │ ├── MultiColumnComboBoxEditAreaRegistration.cs │ └── Views │ │ ├── Home │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── MultiSelectFormPostStronglyTyped │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── City.cs │ │ └── CountryInfo.cs │ ├── MultiSelectFormPostStronglyTypedAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── MultiSelectGetPostData │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── MultiSelectItem.cs │ │ └── sampleModel.cs │ ├── MultiSelectGetPostDataAreaRegistration.cs │ └── Views │ │ ├── Home │ │ ├── Details.cshtml │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── ODataWebApiWidgets │ ├── Controllers │ │ ├── CategoriesController.cs │ │ ├── HomeController.cs │ │ └── ProductsController.cs │ ├── Models │ │ ├── Category.cs │ │ ├── Employee.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ ├── Northwind.tt │ │ └── Product.cs │ ├── ODataWebApiWidgetsAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── ODataWebApiWrappers │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── ODataWebApiWrappersEmployeesController.cs │ │ └── ODataWebApiWrappersProductsController.cs │ ├── Models │ │ ├── NorthwindEntities.Context.cs │ │ ├── NorthwindEntities.Context.tt │ │ ├── NorthwindEntities.Designer.cs │ │ ├── NorthwindEntities.cs │ │ ├── NorthwindEntities.edmx │ │ ├── NorthwindEntities.edmx.diagram │ │ ├── NorthwindEntities.tt │ │ ├── ODataWebApiWrappersCategory.cs │ │ ├── ODataWebApiWrappersEmployee.cs │ │ └── ODataWebApiWrappersProduct.cs │ ├── ODataWebApiWrappersAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── PanelBarHierarchyBinding │ ├── Controllers │ │ └── HomeController.cs │ ├── PanelBarHierarchyBindingAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── PanelBarSelectItemInitially │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── LocalPanelBarItem.cs │ ├── PanelBarHierarchyBindingAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── PdfExportingServerSide │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSelectionByFieldAreaRegistration.cs │ ├── Images │ │ └── documentajax.png │ ├── Models │ │ └── CreatePdfDocument.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── RequireJS │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── Product.cs │ ├── RequireJSAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerCustomView │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── DateGreaterThan.cs │ │ ├── MeetingViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── SchedulerCustomViewMeeting.cs │ │ ├── SchedulerCustomViewMeetingAttendee.cs │ │ └── SchedulerMeetingService.cs │ ├── Resources │ │ ├── Site.css │ │ └── toDoViewStyles.css │ ├── SchedulerCustomViewAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerDragAndDrop │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── DateGreaterThan.cs │ │ ├── MeetingViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── SchedulerDragAndDropMeeting.cs │ │ ├── SchedulerDragAndDropMeetingAttendee.cs │ │ └── SchedulerMeetingService.cs │ ├── SchedulerDragAndDropAreaRegistration.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── CustomEditorTemplate.cshtml │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerEditingCustomEditor │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── DateGreaterThan.cs │ │ ├── MeetingViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── SchedulerEditingCustomEditorMeeting.cs │ │ ├── SchedulerEditingCustomEditorMeetingAttendee.cs │ │ └── SchedulerMeetingService.cs │ ├── SchedulerEditingCustomEditorAreaRegistration.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── CustomEditorTemplate.cshtml │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerEditingResources │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── Attendie.cs │ │ ├── DateGreaterThan.cs │ │ ├── MeetingViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── SchedulerEditingResourcesMeeting.cs │ │ ├── SchedulerEditingResourcesMeetingAttendee.cs │ │ └── SchedulerMeetingService.cs │ ├── SchedulerEditingResourcesAreaRegistration.cs │ └── Views │ │ ├── Home │ │ ├── EditorTemplates │ │ │ └── CustomEditorTemplate.cshtml │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerEditingWebApi │ ├── Controllers │ │ ├── HomeController.cs │ │ └── TaskController.cs │ ├── GridSelectionByFieldAreaRegistration.cs │ ├── ModelBinders │ │ └── DataSourceRequestModelBinder.cs │ ├── Models │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── SchedulerEditingWebApiMeeting.cs │ │ ├── SchedulerEditingWebApiMeetingAtendee.cs │ │ ├── SchedulerEditingWebApiTask.cs │ │ └── TaskViewModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerGoogleAPI │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── SchedulerEventModel.cs │ │ └── Task.cs │ ├── SchedulerGoogleAPIAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerServerFiltering │ ├── Controllers │ │ ├── FilterRange.cs │ │ └── HomeController.cs │ ├── Models │ │ ├── Meeting.cs │ │ ├── MeetingAtendee.cs │ │ ├── SchedulerSample.Context.cs │ │ ├── SchedulerSample.Context.tt │ │ ├── SchedulerSample.Designer.cs │ │ ├── SchedulerSample.cs │ │ ├── SchedulerSample.edmx │ │ ├── SchedulerSample.edmx.diagram │ │ ├── SchedulerSample.tt │ │ ├── SchedulerTaskService.cs │ │ ├── Task.cs │ │ └── TaskViewModel.cs │ ├── SchedulerServerFilteringAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerSignalRLocalHub │ ├── Controllers │ │ └── HomeController.cs │ ├── Hubs │ │ └── ProductHub.cs │ ├── Models │ │ ├── Category.cs │ │ ├── CategoryViewModel.cs │ │ ├── Customer.cs │ │ ├── Employee.cs │ │ ├── EmployeeTerritory.cs │ │ ├── Meeting.cs │ │ ├── MeetingAttendee.cs │ │ ├── MeetingViewModel.cs │ │ ├── Order.cs │ │ ├── Order_Detail.cs │ │ ├── Product.cs │ │ ├── ProductService.cs │ │ ├── ProductViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── SchedulerMeetingService.cs │ │ └── Task.cs │ ├── SchedulerSignalRLocalHubAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerSignalRServerFiltering │ ├── Controllers │ │ └── HomeController.cs │ ├── Hubs │ │ ├── FilterRange.cs │ │ └── ProductHub.cs │ ├── Models │ │ ├── Meeting.cs │ │ ├── MeetingViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ └── SchedulerMeetingService.cs │ ├── SchedulerSignalRServerFilteringAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerTooltip │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── DateGreaterThan.cs │ │ ├── Meeting.cs │ │ ├── MeetingAttendee.cs │ │ ├── MeetingViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ └── SchedulerMeetingService.cs │ ├── SchedulerTooltipAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── SchedulerValidatingTimeslot │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── MeetingViewModel.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ ├── Sample.tt │ │ ├── SchedulerMeetingService.cs │ │ ├── SchedulerValidatingTimeslotCategory.cs │ │ ├── SchedulerValidatingTimeslotCustomer.cs │ │ ├── SchedulerValidatingTimeslotCustomerDemographic.cs │ │ ├── SchedulerValidatingTimeslotEmployee.cs │ │ ├── SchedulerValidatingTimeslotIntraday.cs │ │ ├── SchedulerValidatingTimeslotMeeting.cs │ │ ├── SchedulerValidatingTimeslotMeetingAtendee.cs │ │ ├── SchedulerValidatingTimeslotOrder.cs │ │ ├── SchedulerValidatingTimeslotOrder_Detail.cs │ │ ├── SchedulerValidatingTimeslotProduct.cs │ │ ├── SchedulerValidatingTimeslotRegion.cs │ │ ├── SchedulerValidatingTimeslotShipper.cs │ │ ├── SchedulerValidatingTimeslotSupplier.cs │ │ ├── SchedulerValidatingTimeslotTask.cs │ │ ├── SchedulerValidatingTimeslotTerritory.cs │ │ └── SchedulerValidatingTimeslotWeather.cs │ ├── SchedulerValidatingTimeslotAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── ThemeChangeOnClient │ ├── Controllers │ │ └── HomeController.cs │ ├── ThemeChangeOnClientAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── TreeListExportingMultiple │ ├── Controllers │ │ ├── EmployeeDirectoryController.cs │ │ └── HomeController.cs │ ├── Models │ │ ├── Employee.cs │ │ ├── EmployeeDirectory.cs │ │ ├── EmployeeDirectoryModel.cs │ │ ├── EmployeeDirectoryService.cs │ │ ├── EmployeeTerritory.cs │ │ ├── Sample.Context.cs │ │ ├── Sample.Context.tt │ │ ├── Sample.Designer.cs │ │ ├── Sample.cs │ │ ├── Sample.edmx │ │ ├── Sample.edmx.diagram │ │ └── Sample.tt │ ├── TreeListExportingMultipleAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── TreeViewBindingToXml │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── Employee.cs │ ├── TreeViewBindingToXmlAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── TreeViewExpandSelectedItemAsync │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── Customer.cs │ │ ├── CustomerDemographic.cs │ │ ├── HierarchicalViewModel.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ ├── Northwind.tt │ │ ├── Order_Detail.cs │ │ ├── Region.cs │ │ ├── Shipper.cs │ │ ├── Supplier.cs │ │ ├── Territory.cs │ │ ├── TreeViewExpandSelectedItemAsyncCategory.cs │ │ ├── TreeViewExpandSelectedItemAsyncEmployee.cs │ │ ├── TreeViewExpandSelectedItemAsyncOrder.cs │ │ ├── TreeViewExpandSelectedItemAsyncProduct.cs │ │ └── sysdiagram.cs │ ├── TreeViewExpandSelectedItemAsyncAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── TreeViewLoadConditionally │ ├── Controllers │ │ └── HomeController.cs │ ├── GridSelectionByFieldAreaRegistration.cs │ ├── Models │ │ ├── ComboItemModel.cs │ │ └── TreeViewItemModel.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── TreeViewSaveItemState │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ViewModel.cs │ ├── TreeViewSaveItemStateAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── UploadAmazonS3 │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── S3Config.cs │ ├── UploadAmazonS3AreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── UploadDownloadFileLinks │ ├── Controllers │ │ └── HomeController.cs │ ├── UploadDownloadFileLinksAreaRegistration.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config ├── UploadFilesToDataBase │ ├── Controllers │ │ └── HomeController.cs │ ├── EditorUploadingFilesToDataBaseAreaRegistration.cs │ ├── Models │ │ ├── UserFile.cs │ │ ├── UserFileViewModel.cs │ │ ├── UserFiles.Context.cs │ │ ├── UserFiles.Context.tt │ │ ├── UserFiles.Designer.cs │ │ ├── UserFiles.cs │ │ ├── UserFiles.edmx │ │ ├── UserFiles.edmx.diagram │ │ └── UserFiles.tt │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config └── WindowFormWithAjax │ ├── Controllers │ ├── HomeController.cs │ └── OrdersDataController.cs │ ├── Helpers │ └── OrdersBinderHelper.cs │ ├── Models │ └── OrderViewModel.cs │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ └── _OrderCreate.cshtml │ ├── _ViewStart.cshtml │ └── web.config │ └── WindowFormWithAjaxAreaRegistration.cs ├── Content ├── Site.css ├── bootstrap-grid.css ├── bootstrap-grid.css.map ├── bootstrap-grid.min.css ├── bootstrap-grid.min.css.map ├── bootstrap-grid.rtl.css ├── bootstrap-grid.rtl.css.map ├── bootstrap-grid.rtl.min.css ├── bootstrap-grid.rtl.min.css.map ├── bootstrap-reboot.css ├── bootstrap-reboot.css.map ├── bootstrap-reboot.min.css ├── bootstrap-reboot.min.css.map ├── bootstrap-reboot.rtl.css ├── bootstrap-reboot.rtl.css.map ├── bootstrap-reboot.rtl.min.css ├── bootstrap-reboot.rtl.min.css.map ├── bootstrap-utilities.css ├── bootstrap-utilities.css.map ├── bootstrap-utilities.min.css ├── bootstrap-utilities.min.css.map ├── bootstrap-utilities.rtl.css ├── bootstrap-utilities.rtl.css.map ├── bootstrap-utilities.rtl.min.css ├── bootstrap-utilities.rtl.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── bootstrap.min.css.map ├── bootstrap.rtl.css ├── bootstrap.rtl.css.map ├── bootstrap.rtl.min.css └── bootstrap.rtl.min.css.map ├── Controllers └── HomeController.cs ├── Global.asax ├── Global.asax.cs ├── ILLink └── ILLink.Descriptors.LibraryBuild.xml ├── Images ├── 200.png ├── accent.png ├── bullet.png ├── country-flags │ ├── bg.png │ ├── br.png │ ├── fr.png │ ├── gb.png │ ├── in.png │ ├── it.png │ └── us.png ├── foods │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 2.jpg │ ├── 20.jpg │ ├── 21.jpg │ ├── 22.jpg │ ├── 23.jpg │ ├── 24.jpg │ ├── 25.jpg │ ├── 26.jpg │ ├── 27.jpg │ ├── 28.jpg │ ├── 29.jpg │ ├── 3.jpg │ ├── 30.jpg │ ├── 31.jpg │ ├── 32.jpg │ ├── 33.jpg │ ├── 34.jpg │ ├── 35.jpg │ ├── 36.jpg │ ├── 37.jpg │ ├── 38.jpg │ ├── 39.jpg │ ├── 4.jpg │ ├── 40.jpg │ ├── 41.jpg │ ├── 42.jpg │ ├── 43.jpg │ ├── 44.jpg │ ├── 45.jpg │ ├── 46.jpg │ ├── 47.jpg │ ├── 48.jpg │ ├── 49.jpg │ ├── 5.jpg │ ├── 50.jpg │ ├── 51.jpg │ ├── 52.jpg │ ├── 53.jpg │ ├── 54.jpg │ ├── 55.jpg │ ├── 56.jpg │ ├── 57.jpg │ ├── 58.jpg │ ├── 59.jpg │ ├── 6.jpg │ ├── 60.jpg │ ├── 61.jpg │ ├── 62.jpg │ ├── 63.jpg │ ├── 64.jpg │ ├── 65.jpg │ ├── 66.jpg │ ├── 67.jpg │ ├── 68.jpg │ ├── 69.jpg │ ├── 7.jpg │ ├── 70.jpg │ ├── 71.jpg │ ├── 72.jpg │ ├── 73.jpg │ ├── 74.jpg │ ├── 75.jpg │ ├── 76.jpg │ ├── 77.jpg │ ├── 78.jpg │ ├── 79.jpg │ ├── 8.jpg │ ├── 80.jpg │ └── 9.jpg ├── heroAccent.png └── readme-images │ ├── model-browser.png │ └── naming.png ├── Models ├── Category.cs ├── GridViewModel.cs ├── Person.cs ├── Product.cs ├── ResultEntry.cs ├── ResultEntryViewModel.cs └── Role.cs ├── Project_Readme.html ├── Properties └── AssemblyInfo.cs ├── Scripts ├── _references.js ├── bootstrap.bundle.js ├── bootstrap.bundle.js.map ├── bootstrap.bundle.min.js ├── bootstrap.bundle.min.js.map ├── bootstrap.esm.js ├── bootstrap.esm.js.map ├── bootstrap.esm.min.js ├── bootstrap.esm.min.js.map ├── bootstrap.js ├── bootstrap.js.map ├── bootstrap.min.js ├── bootstrap.min.js.map ├── jquery-3.7.1.intellisense.js ├── jquery-3.7.1.js ├── jquery-3.7.1.min.js ├── jquery-3.7.1.min.map ├── jquery-3.7.1.slim.js ├── jquery-3.7.1.slim.min.js ├── jquery-3.7.1.slim.min.map ├── jquery.signalR-2.4.3.min.js ├── jquery.validate-vsdoc.js ├── jquery.validate.js ├── jquery.validate.min.js ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── Telerik.Examples.Mvc.csproj ├── Views ├── Home │ ├── About.cshtml │ ├── Contact.cshtml │ └── Index.cshtml ├── Shared │ ├── EditorTemplates │ │ ├── Boolean.cshtml │ │ ├── Country.cshtml │ │ ├── Currency.cshtml │ │ ├── Date.cshtml │ │ ├── DateTime.cshtml │ │ ├── Email.cshtml │ │ ├── EmailAddress.cshtml │ │ ├── GridForeignKey.cshtml │ │ ├── Integer.cshtml │ │ ├── Number.cshtml │ │ ├── Password.cshtml │ │ ├── String.cshtml │ │ ├── Time.cshtml │ │ └── Url.cshtml │ ├── Error.cshtml │ └── _Layout.cshtml ├── _ViewStart.cshtml └── web.config ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico └── packages.config /.gitignore: -------------------------------------------------------------------------------- 1 | *.tmp 2 | *.gpState 3 | *.pdb 4 | *.suo 5 | *.swp 6 | *.user 7 | *.mdb 8 | *.suo 9 | obj/ 10 | bin/ 11 | packages/ 12 | .DS_Store 13 | .vs/ 14 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @IvanDanchev @eyupyusein @VicTachev 2 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ImageBrowser.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ImageBrowser.mdf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ImageBrowser_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ImageBrowser_log.ldf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ProductsDatabase.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ProductsDatabase.mdf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ProductsDatabase_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/ProductsDatabase_log.ldf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/SDLC.mpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/SDLC.mpp -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/Sample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/Sample.docx -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/Sample.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/Sample.mdf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/Sample_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/Sample_log.ldf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/UserFiles.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/UserFiles.mdf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/UserFiles_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Data/UserFiles_log.ldf -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace Telerik.Examples.Mvc 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Bundles/Styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Bundles/Styles/index.css -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Bundles/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Home Page"; 3 | } 4 | 5 | @(Html.Kendo().TabStrip() 6 | .Name("TabStrip") 7 | .Items(tabs => 8 | { 9 | tabs.Add().Text("First").Content(@ 10 | First tab 11 | ).Selected(true); 12 | 13 | tabs.Add().Text("Second").Content(@ 14 | Second tab 15 | ); 16 | }) 17 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Bundles/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Areas/Bundles/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/479a8ab8-402d-4af1-91b2-b43e7787a8bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/479a8ab8-402d-4af1-91b2-b43e7787a8bf.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/479a8ab8-402d-4af1-91b2-b43e7787a8bf.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/479a8ab8-402d-4af1-91b2-b43e7787a8bf.wav -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/6733c999-f235-4bc4-86e3-94310f6469c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/6733c999-f235-4bc4-86e3-94310f6469c1.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/6733c999-f235-4bc4-86e3-94310f6469c1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/6733c999-f235-4bc4-86e3-94310f6469c1.wav -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/bb5460c1-2c98-45bc-ac9f-62130bf7edea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/bb5460c1-2c98-45bc-ac9f-62130bf7edea.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/bb5460c1-2c98-45bc-ac9f-62130bf7edea.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Files/bb5460c1-2c98-45bc-ac9f-62130bf7edea.wav -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Models/UserViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.Captcha.Models 7 | { 8 | public class UserViewModel 9 | { 10 | public int UserId { get; set; } 11 | public string Name { get; set; } 12 | public DateTime BirthDate { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/Captcha/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/CdnFallback/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Kendo.Mvc.Extensions; 2 | using Kendo.Mvc.UI; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Web; 7 | using System.Web.Mvc; 8 | 9 | namespace Telerik.Examples.Mvc.Areas.CdnFallback.Controllers 10 | { 11 | public class HomeController : Controller 12 | { 13 | public ActionResult Index() 14 | { 15 | return View(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/CdnFallback/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Areas/CdnFallback/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartDynamicSeries/Models/MySeriesData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.ChartDynamicSeries.Models 7 | { 8 | public class MySeriesData 9 | { 10 | public string Name { get; set; } 11 | public string Stack { get; set; } 12 | public IEnumerable Data { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartDynamicSeries/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model Telerik.Examples.Mvc.Areas.ChartDynamicSeries.Models.MyViewModel 2 | 3 | @(Html.Kendo().Chart() 4 | .Name("Chart") 5 | .Series(series => { 6 | foreach (var def in Model.Series) { 7 | series.Column(def.Data).Name(def.Name).Stack(def.Stack); 8 | } 9 | }) 10 | .CategoryAxis(axis => axis 11 | .Categories(Model.Categories) 12 | ) 13 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartDynamicSeries/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartInGrid/Models/ViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.ChartInGrid.Models 7 | { 8 | public class ViewModel 9 | { 10 | public int ID { get; set; } 11 | public List ChartData { get; set; } 12 | } 13 | 14 | public class ChartItem 15 | { 16 | public int Value { get; set; } 17 | public int Value1 { get; set; } 18 | public string Category { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartInGrid/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartSignalR/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Examples.Mvc.Areas.ChartSignalR.Models; 2 | using Kendo.Mvc.Extensions; 3 | using Kendo.Mvc.UI; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Web; 8 | using System.Web.Mvc; 9 | 10 | namespace Telerik.Examples.Mvc.Areas.ChartSignalR.Controllers 11 | { 12 | public class HomeController : Controller 13 | { 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartSignalR/Models/CategoryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.ChartSignalR.Models 7 | { 8 | public class CategoryViewModel 9 | { 10 | public int CategoryID { get; set; } 11 | public string CategoryName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartSignalR/Models/Sample.Designer.cs: -------------------------------------------------------------------------------- 1 | // Default code generation is disabled for model 'C:\Work\temp\tests\signalR-bound-grid\Telerik.Examples.Mvc.Areas.ChartSignalR\Models\Sample.edmx'. 2 | // To enable default code generation, change the value of the 'Code Generation Strategy' designer 3 | // property to an alternate value. This property is available in the Properties Window when the model is 4 | // open in the designer. -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartSignalR/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChartSignalR/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChatPeerToPeer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.ChatPeerToPeer.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | public ActionResult Index() 12 | { 13 | return View(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChatPeerToPeer/Hubs/ChatHub.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNet.SignalR; 2 | 3 | namespace Telerik.Examples.Mvc.Areas.ChatPeerToPeer.Hubs 4 | { 5 | public class ChatHub : Hub 6 | { 7 | public void Send(object sender, string message) 8 | { 9 | Clients.Others.broadcastMessage(sender, message); 10 | } 11 | public void SendTyping(object sender) 12 | { 13 | Clients.Others.typing(sender); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ChatPeerToPeer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/DefineCustomHtmlHelper/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/DropDownListCustomDataSource/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/DropDownListVirtualization/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/DropDownListWebApi/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.DropDownListWebApi.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | public ActionResult Index() 12 | { 13 | ViewBag.Message = "Welcome to ASP.NET MVC!"; 14 | 15 | return View(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/DropDownListWebApi/Models/Specialty.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.DropDownListWebApi.Models 7 | { 8 | public class Specialty 9 | { 10 | public string Name { get; set; } 11 | public int Value { get; set; } 12 | public int TypeId { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/DropDownListWebApi/Models/Type.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.DropDownListWebApi.Models 7 | { 8 | public class Type 9 | { 10 | public string Name { get; set; } 11 | public int Id { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/DropDownListWebApi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/EditorDatabaseImageBrowser/Models/Files.Designer.cs: -------------------------------------------------------------------------------- 1 | // Default code generation is disabled for model 'c:\users\korchev\documents\visual studio 2012\Projects\DatabaseImageBrowser\DatabaseImageBrowser\Models\Files.edmx'. 2 | // To enable default code generation, change the value of the 'Code Generation Strategy' designer 3 | // property to an alternate value. This property is available in the Properties Window when the model is 4 | // open in the designer. -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/EditorDatabaseImageBrowser/Models/Files.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/EditorDatabaseImageBrowser/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/EditorEnterLinebreakShiftEnterParagraph/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/EditorImportExport/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/EditorUploadImage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GanttImportExportUsingMpxj/Models/DependencyViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Kendo.Mvc.UI; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GanttImportExportUsingMpxj.Models 8 | { 9 | public class DependencyViewModel : IGanttDependency 10 | { 11 | public int DependencyID { get; set; } 12 | 13 | public int PredecessorID { get; set; } 14 | 15 | public int SuccessorID { get; set; } 16 | 17 | public DependencyType Type { get; set; } 18 | } 19 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GanttImportExportUsingMpxj/Models/GanttDataContainer.cs: -------------------------------------------------------------------------------- 1 | namespace Telerik.Examples.Mvc.Areas.GanttImportExportUsingMpxj.Models 2 | { 3 | using System.Collections.Generic; 4 | 5 | public class GanttDataContainer 6 | { 7 | public IList Tasks { get; set; } 8 | 9 | public IList Dependencies { get; set; } 10 | 11 | public IList Resources { get; set; } 12 | 13 | public IList Assignments { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GanttImportExportUsingMpxj/Models/ResourceAssignmentViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GanttImportExportUsingMpxj.Models 7 | { 8 | public class ResourceAssignmentViewModel 9 | { 10 | public int ID { get; set; } 11 | 12 | public int TaskID { get; set; } 13 | 14 | public int ResourceID { get; set; } 15 | 16 | public double Units { get; set; } 17 | } 18 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GanttImportExportUsingMpxj/Models/ResourceViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Kendo.Mvc.UI; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GanttImportExportUsingMpxj.Models 8 | { 9 | public class ResourceViewModel 10 | { 11 | public int ID { get; set; } 12 | 13 | public string Color { get; set; } 14 | 15 | public string Name { get; set; } 16 | } 17 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GanttImportExportUsingMpxj/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAjaxBindingCustomJsonResult/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridAjaxBindingCustomJsonResult.Models 7 | { 8 | public class Product 9 | { 10 | public int ID { get; set; } 11 | public string Name { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAjaxBindingCustomJsonResult/Serialization/CustomJavaScriptSerializer.cs: -------------------------------------------------------------------------------- 1 | using Kendo.Mvc.Infrastructure; 2 | using Newtonsoft.Json; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Web; 7 | 8 | namespace Telerik.Examples.Mvc.Areas.GridAjaxBindingCustomJsonResult.Serialization 9 | { 10 | public class CustomJavaScriptSerializer : IJavaScriptSerializer 11 | { 12 | public string Serialize(object value) 13 | { 14 | return JsonConvert.SerializeObject(value); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAjaxBindingCustomJsonResult/Serialization/CustomJsonInitializer.cs: -------------------------------------------------------------------------------- 1 | using Kendo.Mvc.Infrastructure; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridAjaxBindingCustomJsonResult.Serialization 8 | { 9 | public class CustomJsonInitializer : JavaScriptInitializer 10 | { 11 | public override IJavaScriptSerializer CreateSerializer() 12 | { 13 | return new CustomJavaScriptSerializer(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAjaxBindingCustomJsonResult/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAjaxBindingDatabase/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAjaxBindingDatabase/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAlternatingRows/Models/Student.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridAlternatingRows.Models 7 | { 8 | public class Student 9 | { 10 | public int Id { get; set; } 11 | public string FirstName { get; set; } 12 | 13 | public string LastName { get; set; } 14 | 15 | public DateTime Birthday { get; set; } 16 | 17 | public int Age { get; set; } 18 | } 19 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridAlternatingRows/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBatchEditingDatabase/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBatchEditingDatabase/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/bulletproof-web-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/bulletproof-web-design.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/eloquent-javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/eloquent-javascript.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/handcrafted-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/handcrafted-css.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/high-performance-javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/high-performance-javascript.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/javascript-patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/javascript-patterns.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/javascript-the-good-parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/javascript-the-good-parts.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/responsive-web-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/responsive-web-design.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/secrets-of-the-javascript-ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/secrets-of-the-javascript-ninja.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/stunning-css3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Content/xml-data/stunning-css3.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindToXMLKendoUI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindingDataTable/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindingDynamicCollection/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridBindingDynamicCollection/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCRUDWithObjectColumn/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCRUDWithObjectColumn.Models 7 | { 8 | public class Category 9 | { 10 | public int CategoryID { get; set; } 11 | 12 | public string CategoryName { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCRUDWithObjectColumn/Views/Home/EditorTemplates/DropDownEditor.cshtml: -------------------------------------------------------------------------------- 1 | @(Html.Kendo().DropDownListFor(x => x).Name("Category").DataSource(x => x.Read(y => y.Action("AllCategories", "Home"))).DataTextField("CategoryName").DataValueField("CategoryID")) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCRUDWithObjectColumn/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridCSP.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | // GET: GridCSP/Home 12 | public ActionResult Index() 13 | { 14 | return View(); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Models/CategoryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCSP.Models 7 | { 8 | public class CategoryViewModel 9 | { 10 | public int CategoryID { get; set; } 11 | public string CategoryName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Models/CountryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCSP.Models 7 | { 8 | public class CountryViewModel 9 | { 10 | public int CountryID { get; set; } 11 | public string CountryNameShort { get; set; } 12 | public string CountryNameLong { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Models/Demo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCSP.Models 7 | { 8 | public class Demo 9 | { 10 | public string ComponentName 11 | { 12 | get; 13 | set; 14 | } 15 | public string ActionName 16 | { 17 | get; 18 | set; 19 | } 20 | public string ControllerName 21 | { 22 | get; 23 | set; 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Models/EmployeeViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCSP.Models 7 | { 8 | public class EmployeeViewModel 9 | { 10 | public int Id { get; set; } 11 | 12 | public string Name { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCSP.Models 7 | { 8 | public class ErrorViewModel 9 | { 10 | public string RequestId { get; set; } 11 | 12 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Models/Location.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCSP.Models 7 | { 8 | public class Location 9 | { 10 | public int Id { get; set; } 11 | 12 | public string Name { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewBag.Title = "Index"; 4 | } 5 | 6 |

Telerik UI for ASP.NET MVC Content Security Policy examples

7 |

Please choose one of the available examples in the menu above.

8 | 9 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCSP/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Areas/GridCSP/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCancellationToken/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCascadingDropDownFilters/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCascadingDropDownFilters/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCheckboxClientTemplate/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridClientDetailTemplate/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridContextMenu/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridContextMenu.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeID { get; set; } 11 | public string Name { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridContextMenu/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridContextMenuDisabledItems/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridContextMenuDisabledItems.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | public double UnitPrice { get; set; } 13 | public int UnitsInStock { get; set; } 14 | public bool Discontinued { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridContextMenuDisabledItems/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCsvServerExport/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomAjaxBinding/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomAjaxBinding/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/add.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/cancel.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/edit.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Content/icons/ok.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandButtons/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/add.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/cancel.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/edit.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Content/icons/ok.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Images/accent.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Images/bullet.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Images/heroAccent.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCustomCommandsImageButtons.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeId; 11 | public string Name; 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCustomCommandsImageButtons.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public DateTime OrderDate { get; set; } 12 | public string OrderDescription { get; set; } 13 | public int EmployeeId { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomCommandsImageButtons/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomConfirmationWindow/Models/Person.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridCustomConfirmationWindow.Models 7 | { 8 | public class Person 9 | { 10 | public int PersonID { get; set; } 11 | public string Name { get; set; } 12 | public DateTime BirthDate { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomConfirmationWindow/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomServerBinding/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridCustomServerBinding/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDateIgnoreTimeZones/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDateTimeOffset/Models/Car.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridDateTimeOffset.Models 7 | { 8 | public class Car 9 | { 10 | public Guid Id { get; set; } 11 | 12 | public string Make { get; set; } 13 | 14 | public string Model { get; set; } 15 | 16 | public DateTimeOffset ProductionDate { get; set; } 17 | } 18 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDateTimeOffset/Models/CarViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridDateTimeOffset.Models 7 | { 8 | public class CarViewModel 9 | { 10 | public Guid Id { get; set; } 11 | 12 | public string Make { get; set; } 13 | 14 | public string Model { get; set; } 15 | 16 | public DateTime ProductionDate { get; set; } 17 | } 18 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDateTimeOffset/Models/Student.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridDateTimeOffset.Models 7 | { 8 | public class Student 9 | { 10 | public int Id { get; set; } 11 | public string FirstName { get; set; } 12 | 13 | public string LastName { get; set; } 14 | 15 | public DateTime Birthday { get; set; } 16 | 17 | public int Age { get; set; } 18 | 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDateTimeOffset/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDateUtcOnServerAndClient/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDropDownListEditorBoundToNullableField/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridDropDownListEditorBoundToNullableField.Models 7 | { 8 | public class Category 9 | { 10 | public int CategoryID { get; set; } 11 | public string CategoryName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDropDownListEditorBoundToNullableField/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridDropDownListEditorBoundToNullableField.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | 12 | public string ProductName { get; set; } 13 | 14 | public int? CategoryID { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDropDownListEditorBoundToNullableField/Views/Home/EditorTemplates/NullableDropDown.cshtml: -------------------------------------------------------------------------------- 1 | @using Kendo.Mvc.UI 2 | @model int? 3 | 4 | @(Html.Kendo().DropDownListFor(m => m) 5 | //enable ValuePrimitive 6 | .ValuePrimitive(true) 7 | //or alternatively .HtmlAttributes(new { data_value_primitive = "true" }) 8 | .OptionLabel("Select a category") 9 | .BindTo((System.Collections.IEnumerable)ViewData["categories"]) 10 | .DataValueField("CategoryID") 11 | .DataTextField("CategoryName") 12 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridDropDownListEditorBoundToNullableField/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditPopUpServerValidation/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridEditPopUpServerValidation.Models 8 | { 9 | public class Product 10 | { 11 | [ScaffoldColumn(false)] 12 | public int Id { get; set; } 13 | [Required] 14 | public string Name { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditPopUpServerValidation/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditSyncChangesWithOneRequest/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditSyncChangesWithOneRequest.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeID; 11 | public string Name; 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditSyncChangesWithOneRequest/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditSyncChangesWithOneRequest.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public DateTime OrderDate { get; set; } 12 | public string OrderDescription { get; set; } 13 | public int EmployeeID { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditSyncChangesWithOneRequest/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditTimespan/Models/ViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridEditTimespan.Models 8 | { 9 | public class ViewModel 10 | { 11 | public int ID { get; set; } 12 | [Required] 13 | public TimeSpan Time { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditTimespan/Views/Home/EditorTemplates/NumericEditor.cshtml: -------------------------------------------------------------------------------- 1 | @model TimeSpan 2 | 3 | 4 | @Html.Kendo().IntegerTextBoxFor(model => model.Hours).HtmlAttributes(new { style = "width: 60px;"}).Spinners(false) : 5 | @Html.Kendo().IntegerTextBoxFor(model => model.Minutes).HtmlAttributes(new { style = "width: 60px;" }).Spinners(false) : 6 | @Html.Kendo().IntegerTextBoxFor(model => model.Seconds).HtmlAttributes(new { style = "width: 60px;" }).Spinners(false) 7 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditTimespan/Views/Home/EditorTemplates/TimePickerEditor.cshtml: -------------------------------------------------------------------------------- 1 | @model TimeSpan? 2 | 3 | @( 4 | Html.Kendo().TimePicker().HtmlAttributes(new { data_skip=true, data_bind = "timespan:Time" }) 5 | .Name("timepicker") 6 | .Format("HH:mm:ss") 7 | ) 8 | @Html.HiddenFor(model => model) 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditTimespan/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditing3LevelHierarchy/Controllers/BaseController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using Telerik.Examples.Mvc.Areas.GridEditing3LevelHierarchy.Models; 7 | 8 | namespace Telerik.Examples.Mvc.Areas.GridEditing3LevelHierarchy.Controllers 9 | { 10 | public class BaseController : Controller 11 | { 12 | protected GridEditing3LevelHierarchyEntities context = new GridEditing3LevelHierarchyEntities(); 13 | 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditing3LevelHierarchy/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditing3LevelHierarchy/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingAjaxWithEnumeration/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingAjaxWithEnumeration.Models 7 | { 8 | public enum Category 9 | { 10 | Beverages, 11 | Foods 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingAjaxWithEnumeration/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingAjaxWithEnumeration.Models 7 | { 8 | public class Product 9 | { 10 | public int ID { get; set; } 11 | public string Name { get; set; } 12 | public Category Category { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingAjaxWithEnumeration/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingAutoCompleteNewItem/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingBatchMultiSelectionDelete/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingBatchWithCheckboxes/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingCustomPopupEditor/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingEFCodeFirst/Models/CustomerContext.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Data.Entity; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridEditingEFCodeFirst.Models 8 | { 9 | public class CustomerContext : DbContext 10 | { 11 | public DbSet Customers { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingEFCodeFirst/Models/CustomerViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingEFCodeFirst.Models 7 | { 8 | public class CustomerViewModel 9 | { 10 | public int CustomerID { get; set; } 11 | public string Name { get; set; } 12 | public string Phone { get; set; } 13 | public string Email { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingEFCodeFirst/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingExternalContainer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellCascadingDropDownLists/Models/Customer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingInCellCascadingDropDownLists.Models 7 | { 8 | public class Customer 9 | { 10 | public int CustomerId { get; set; } 11 | public string CustomerName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellCascadingDropDownLists/Models/ForeignKeyValues.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingInCellCascadingDropDownLists.Models 7 | { 8 | public class ForeignKeyValues 9 | { 10 | public IEnumerable Customers { get; set; } 11 | public IEnumerable Vendors { get; set; } 12 | public IEnumerable Products { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellCascadingDropDownLists/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingInCellCascadingDropDownLists.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductId { get; set; } 11 | public string ProductName { get; set; } 12 | public int VendorId { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellCascadingDropDownLists/Models/Vendor.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingInCellCascadingDropDownLists.Models 7 | { 8 | public class Vendor 9 | { 10 | public int VendorId { get; set; } 11 | public int CustomerId { get; set; } 12 | public string VendorName { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellCascadingDropDownLists/Views/Home/EditorTemplates/CustomerId.cshtml: -------------------------------------------------------------------------------- 1 | @using Kendo.Mvc.UI 2 |  3 | @model int 4 | 5 | @(Html.Kendo().DropDownListFor(m => m) 6 | .ValuePrimitive(true) 7 | .OptionLabel("Select Customer...") 8 | .DataTextField("CustomerName") 9 | .DataValueField("CustomerId") 10 | .DataSource(dataSource => 11 | { 12 | dataSource.Read(read => read.Action("GetCustomers", "Home")) 13 | .ServerFiltering(true); 14 | }) 15 | ) 16 | 17 | @Html.ValidationMessageFor(m => m) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellCascadingDropDownLists/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellRadioButtonColumn/Models/Role.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingInCellRadioButtonColumn.Models 7 | { 8 | public enum Role 9 | { 10 | Admin, 11 | User, 12 | SuperUser 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellRadioButtonColumn/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellWebApi/Models/NorthwindEntities.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellWebApi/Models/ProductsRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingInCellWebApi.Models 7 | { 8 | public class ProductsRequest 9 | { 10 | //This property should be named Models in order to correctly map the request paramter send by the DataSource 11 | public IEnumerable Models { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInCellWebApi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInLineColorSelection/Models/PaintOrder.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridEditingInLineColorSelection.Models 8 | { 9 | public class PaintOrder 10 | { 11 | public int PaintOrderID { get; set; } 12 | public DateTime Date { get; set; } 13 | public string Description { get; set; } 14 | [UIHint("ColorPicker")] 15 | public string PaintColor { get; set; } 16 | } 17 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInLineColorSelection/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInLineDatabase/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInLineDatabase/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingInLineNullableBoolean/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingModelStateError/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingModelStateError/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPoPupRequiredDropDownListFor/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpAccessModel/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingPopUpAccessModel.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeId; 11 | public string Name; 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpAccessModel/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingPopUpAccessModel.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public DateTime OrderDate { get; set; } 12 | public string OrderDescription { get; set; } 13 | public int EmployeeId { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpAccessModel/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpMultiSelect/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpMultiSelect/Views/Home/EditorTemplates/TerritoriesEditor.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | 3 | @( 4 | Html.Kendo().MultiSelectFor(m => m) 5 | .DataTextField("TerritoryDescription") 6 | .DataValueField("TerritoryID") 7 | .BindTo((IEnumerable)ViewData["territories"]) 8 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpMultiselect/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGrid/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGrid/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGridBatch/Controllers/BaseController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using Telerik.Examples.Mvc.Areas.GridEditingPopUpNestedGridBatch.Models; 7 | 8 | namespace Telerik.Examples.Mvc.Areas.GridEditingPopUpNestedGridBatch.Controllers 9 | { 10 | public class BaseController : Controller 11 | { 12 | protected GridEditingPopUpNestedGridBatchEntities context = new GridEditingPopUpNestedGridBatchEntities(); 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGridBatch/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridEditingPopUpNestedGridBatch.Controllers 8 | { 9 | public class HomeController : BaseController 10 | { 11 | public ActionResult Index() 12 | { 13 | ViewBag.Message = "Welcome to ASP.NET MVC!"; 14 | 15 | return View(); 16 | } 17 | 18 | public ActionResult About() 19 | { 20 | return View(); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGridBatch/Models/EmployeeViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingPopUpNestedGridBatch.Models 7 | { 8 | public class EmployeeViewModel 9 | { 10 | public int EmployeeID { get; set; } 11 | 12 | public string FirstName { get; set; } 13 | 14 | public string LastName { get; set; } 15 | 16 | public string Title { get; set; } 17 | 18 | public string Country { get; set; } 19 | 20 | public string City { get; set; } 21 | } 22 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGridBatch/Models/OrderViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingPopUpNestedGridBatch.Models 7 | { 8 | public class OrderViewModel 9 | { 10 | public int OrderID { get; set; } 11 | 12 | public string ShipCountry { get; set; } 13 | 14 | public string ShipAddress { get; set; } 15 | 16 | public string ShipName { get; set; } 17 | 18 | public DateTime? ShippedDate { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGridBatch/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpNestedGridBatch/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpServerValidation/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | 3 | namespace Telerik.Examples.Mvc.Areas.GridEditingPopUpServerValidation.Models 4 | { 5 | public class Product 6 | { 7 | [ScaffoldColumn(false)] 8 | public int Id { get; set; } 9 | [Required] 10 | public string Name { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpServerValidation/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpTreeView/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingPopUpTreeView/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Desert.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Hydrangeas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Hydrangeas.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Lighthouse.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/CategoryImage/Tulips.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridEditingUploadInPopUp.Models 8 | { 9 | public class Category 10 | { 11 | [ScaffoldColumn(false)] 12 | public int Id { get; set; } 13 | 14 | public string Name { get; set; } 15 | 16 | [UIHint("FileUpload")] 17 | [Required] 18 | public string ImageUrl { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/Views/Home/EditorTemplates/FileUpload.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | @Html.HiddenFor(m => m) 4 | @Html.ValidationMessageFor(m => m) 5 | 6 | 13 | 14 | @(Html.Kendo().Upload() 15 | .Name("file") 16 | .Multiple(false) 17 | .Async(a => a 18 | .Save("Save", "Home") 19 | .AutoUpload(true) 20 | ) 21 | .Events( e => e.Success("success")) 22 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingUploadInPopUp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWebApi/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWebApi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithCascadingDropDownLists/Models/Customer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingWithCascadingDropDownLists.Models 7 | { 8 | public class Customer 9 | { 10 | public int CustomerId { get; set; } 11 | public string CustomerName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithCascadingDropDownLists/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingWithCascadingDropDownLists.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductId { get; set; } 11 | public string ProductName { get; set; } 12 | public int VendorId { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithCascadingDropDownLists/Models/Vendor.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingWithCascadingDropDownLists.Models 7 | { 8 | public class Vendor 9 | { 10 | public int VendorId { get; set; } 11 | public int CustomerId { get; set; } 12 | public string VendorName { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithCascadingDropDownLists/Views/Home/EditorTemplates/CustomerId.cshtml: -------------------------------------------------------------------------------- 1 | @using Kendo.Mvc.UI 2 |  3 | @model int 4 | 5 | @(Html.Kendo().DropDownListFor(m => m) 6 | .ValuePrimitive(true) 7 | .OptionLabel("Select Customer...") 8 | .DataTextField("CustomerName") 9 | .DataValueField("CustomerId") 10 | .DataSource(dataSource => 11 | { 12 | dataSource.Read(read => read.Action("GetCustomers", "Home")) 13 | .ServerFiltering(true); 14 | }) 15 | ) 16 | 17 | @Html.ValidationMessageFor(m => m) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithCascadingDropDownLists/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithComboBoxServerFiltering/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingWithComboBoxServerFiltering.Models 7 | { 8 | public class Category 9 | { 10 | public int CategoryID { get; set; } 11 | public string CategoryName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithComboBoxServerFiltering/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridEditingWithComboBoxServerFiltering.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductId { get; set; } 11 | public string ProductName { get; set; } 12 | public int VendorId { get; set; } 13 | public Category Category { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridEditingWithComboBoxServerFiltering/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridExcelExportCellFormat/Models/Student.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridExcelExportCellFormat.Models 7 | { 8 | public class Student 9 | { 10 | public int Id { get; set; } 11 | public string FirstName { get; set; } 12 | public string LastName { get; set; } 13 | public DateTime Birthday { get; set; } 14 | public int Age { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridExcelExportCellFormat/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridExcelExportColumnTemplate/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridExcelExportColumnTemplate.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public int Freight { get; set; } 12 | public DateTime OrderDate { get; set; } 13 | public string ShipName { get; set; } 14 | public string ShipCity { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridExcelExportColumnTemplate/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridExportingExcelMultiple/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridExportingExcelMultiple/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridFilterAsYouType/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridFilterExcelLike/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridFilterExcelLike/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyColumnCRUD/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeyColumnCRUD.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeId; 11 | public string Name; 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyColumnCRUD/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeyColumnCRUD.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public DateTime OrderDate { get; set; } 12 | public string OrderDescription { get; set; } 13 | public int EmployeeId { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyColumnCRUD/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyComboBoxColumn/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeyComboBoxColumn.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeId; 11 | public string Name; 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyComboBoxColumn/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeyComboBoxColumn.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public DateTime OrderDate { get; set; } 12 | public string OrderDescription { get; set; } 13 | public int EmployeeId { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyComboBoxColumn/Views/Home/EditorTemplates/ComboBox.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @( 4 | Html.Kendo().ComboBoxFor(m => m) 5 | .BindTo((SelectList)ViewData[ViewData.TemplateInfo.GetFullHtmlFieldName("") + "_Data"]) 6 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyComboBoxColumn/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyGroupHeaderTemplate/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeyGroupHeaderTemplate.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeId; 11 | public string Name; 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyGroupHeaderTemplate/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeyGroupHeaderTemplate.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public DateTime OrderDate { get; set; } 12 | public string OrderDescription { get; set; } 13 | public int EmployeeId { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeyGroupHeaderTemplate/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeySorting/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeySorting.Models 7 | { 8 | public class Category 9 | { 10 | public int CategoryID { get; set; } 11 | public string CategoryName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeySorting/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridForeignKeySorting.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | public int CategoryID { get; set; } 13 | public string CategoryName { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeySorting/Views/Home/EditorTemplates/GridForeignKey.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | 11 | @( 12 | Html.Kendo().DropDownListFor(m => m) 13 | .Events(e => e.Change("onChange")) 14 | .BindTo((SelectList)ViewData[ViewData.TemplateInfo.GetFullHtmlFieldName("") + "_Data"]) 15 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridForeignKeySorting/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHandleServerError/Models/CategoryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridHandleServerError.Models 7 | { 8 | public class CategoryViewModel 9 | { 10 | public int CategoryID 11 | { 12 | get; 13 | set; 14 | } 15 | 16 | public string CategoryName 17 | { 18 | get; 19 | set; 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHandleServerError/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHeightBasedOnScreenlockedColumns/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Areas/GridHeightBasedOnScreenlockedColumns/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyClientDetailTemplate/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyClientDetailTemplate/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyDynamicModelLoadingAndDataTable/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyEditingWithCheckboxes/Controllers/BaseController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using Telerik.Examples.Mvc.Areas.GridHierarchyEditingWithCheckboxes.Models; 7 | 8 | namespace Telerik.Examples.Mvc.Areas.GridHierarchyEditingWithCheckboxes.Controllers 9 | { 10 | public class BaseController : Controller 11 | { 12 | protected GridHierarchyEditingWithCheckboxesEntities context = new GridHierarchyEditingWithCheckboxesEntities(); 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyEditingWithCheckboxes/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridHierarchyEditingWithCheckboxes.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | // GET: GridHierarchyEditingWithCheckboxes/Home 12 | public ActionResult Index() 13 | { 14 | return View(); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyEditingWithCheckboxes/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyEditingWithCheckboxes/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyExcelExportAllPages/Models/OrderViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridHierarchyExcelExportAllPages.Models 7 | { 8 | public class OrderViewModel 9 | { 10 | public int? EmployeeID { get; set; } 11 | 12 | public int OrderID { get; set; } 13 | 14 | public string ShipCountry { get; set; } 15 | 16 | public string ShipAddress { get; set; } 17 | 18 | public string ShipName { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyExcelExportAllPages/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyExcelExportAllPages/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyInCellEditing/Controllers/BaseController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using Telerik.Examples.Mvc.Areas.GridHierarchyInCellEditing.Models; 7 | 8 | namespace Telerik.Examples.Mvc.Areas.GridHierarchyInCellEditing.Controllers 9 | { 10 | public class BaseController : Controller 11 | { 12 | protected GridHierarchyInCellEditingEntities context = new GridHierarchyInCellEditingEntities(); 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyInCellEditing/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridHierarchyInCellEditing.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | // GET: GridHierarchyInCellEditing/Home 12 | public ActionResult Index() 13 | { 14 | return View(); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyInCellEditing/Models/EmployeeViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridHierarchyInCellEditing.Models 7 | { 8 | public class EmployeeViewModel 9 | { 10 | public int EmployeeID { get; set; } 11 | 12 | public string FirstName { get; set; } 13 | 14 | public string LastName { get; set; } 15 | 16 | public string Title { get; set; } 17 | 18 | public string Country { get; set; } 19 | 20 | public string City { get; set; } 21 | } 22 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyInCellEditing/Models/OrderViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridHierarchyInCellEditing.Models 7 | { 8 | public class OrderViewModel 9 | { 10 | public int OrderID { get; set; } 11 | 12 | public string ShipCountry { get; set; } 13 | 14 | public string ShipAddress { get; set; } 15 | 16 | public string ShipName { get; set; } 17 | 18 | public DateTime? ShippedDate { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyInCellEditing/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyInCellEditing/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchySelfReferencing/Models/Customer.cs: -------------------------------------------------------------------------------- 1 | namespace Telerik.Examples.Mvc.Areas.GridHierarchySelfReferencing.Models 2 | { 3 | public class Customer 4 | { 5 | public int Id { get; set; } 6 | public int ParentId { get; set; } 7 | public string Name { get; set; } 8 | public double Sales { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchySelfReferencing/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyServer/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyServerDetailTemplate/Models/SampleModel.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridHierarchyServerDetailTemplate/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridInPartialViewLoadedInTabStrip/Models/Customer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridInPartialViewLoadedInTabStrip.Models 7 | { 8 | public class Customer 9 | { 10 | public int ID { get; set; } 11 | public string Name { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridInPartialViewLoadedInTabStrip/Views/Home/Grid.cshtml: -------------------------------------------------------------------------------- 1 | @using Kendo.Mvc.UI 2 |  3 | @(Html.Kendo().Grid() 4 | .Name("grid") 5 | .Columns(columns => 6 | { 7 | columns.Bound(c => c.ID).Width(200); 8 | columns.Bound(c => c.Name); 9 | }) 10 | .Pageable() 11 | .DataSource(dataSource => dataSource 12 | .Ajax() 13 | .PageSize(15) 14 | .Read(read => read.Action("Select", "Home")) 15 | ) 16 | ) 17 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridInPartialViewLoadedInTabStrip/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @using Kendo.Mvc.UI 2 |  3 | @{ 4 | ViewBag.Title = "Home Page"; 5 | } 6 | 7 | @(Html.Kendo().TabStrip() 8 | .Name("tabstrip") 9 | .Items(tabs => 10 | { 11 | tabs.Add().Text("First").Content("Select the 'Grid' tab").Selected(true); 12 | tabs.Add().Text("Grid").LoadContentFrom("Grid", "Home"); 13 | }) 14 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridInPartialViewLoadedInTabStrip/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridMasterDetail/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridMasterDetail/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridModifyFiltersOnTheServer/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridModifyFiltersOnTheServer.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeID { get; set; } 11 | public string Name { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridModifyFiltersOnTheServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridMultiSelect/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridMultiSelect/Views/Home/EditorTemplates/TerritoriesEditor.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | 3 | @( 4 | Html.Kendo().MultiSelectFor(m => m) 5 | .DataTextField("TerritoryDescription") 6 | .DataValueField("TerritoryID") 7 | .BindTo((IEnumerable)ViewData["territories"]) 8 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridMultiSelect/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridMultiSelectFilter/Models/ViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace Telerik.Examples.Mvc.Areas.GridMultiSelectFilter.Models 8 | { 9 | public class ViewModel 10 | { 11 | public int ID { get; set; } 12 | 13 | [Display(Name = "Tags")] 14 | public List Tags { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridMultiSelectFilter/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridPostWithForm/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridPostWithForm.Models 7 | { 8 | public class Category 9 | { 10 | public int CategoryID { get; set; } 11 | public string Name { get; set; } 12 | public IEnumerable Products { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridPostWithForm/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridPostWithForm.Models 7 | { 8 | public class Product 9 | { 10 | public string Name { get; set; } 11 | 12 | public int ProductID { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridPostWithForm/Views/Home/Save.cshtml: -------------------------------------------------------------------------------- 1 | @model Telerik.Examples.Mvc.Areas.GridPostWithForm.Models.Category 2 | 3 |

Category data (@Model.CategoryID)

4 | 5 | @Html.LabelFor(category => category.Name): @Html.DisplayFor(category => category.Name) 6 | 7 | @Html.LabelFor(category => category.Products): 8 |
    9 | @foreach (var product in Model.Products) 10 | { 11 |
  • 12 | @Html.LabelFor(category => product.Name): @Html.DisplayFor(category => product.Name) 13 |
  • 14 | } 15 |
-------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridPostWithForm/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridPreserveServerToolbarTemplateAfterSetOptions/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/alt.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/clock.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/cut.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/download.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/forward.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/music.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/play.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/server.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Content/icons/web.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRenderAndPreviewByteAndBase64Images/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRowsBackgroundConditional/Models/EmployeeViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridRowsBackgroundConditional.Models 7 | { 8 | public class EmployeeViewModel 9 | { 10 | public int EmployeeId { get; set; } 11 | public string FirstName { get; set; } 12 | public string LastName { get; set; } 13 | public string Address { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridRowsBackgroundConditional/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveAllChangesOneRequest/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridSaveAllChangesOneRequest.Models 7 | { 8 | public class Employee 9 | { 10 | public int EmployeeID; 11 | public string Name; 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveAllChangesOneRequest/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridSaveAllChangesOneRequest.Models 7 | { 8 | public class Order 9 | { 10 | public int OrderID { get; set; } 11 | public DateTime OrderDate { get; set; } 12 | public string OrderDescription { get; set; } 13 | public int EmployeeID { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveAllChangesOneRequest/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveStateInSessionServerSide/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridSaveStateInSessionServerSide.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | public double UnitPrice { get; set; } 13 | public int UnitsInStock { get; set; } 14 | public bool Discontinued { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveStateInSessionServerSide/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveStateOnServerSide/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridSaveStateOnServerSide.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | public double UnitPrice { get; set; } 13 | public int UnitsInStock { get; set; } 14 | public bool Discontinued { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveStateOnServerSide/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveStateWithBrowserHistoryAPI/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridSaveStateWithBrowserHistoryAPI.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | public string QuantityPerUnit { get; set; } 13 | public Nullable UnitPrice { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSaveStateWithBrowserHistoryAPI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSelectionByField/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridSelectionByField.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | public double UnitPrice { get; set; } 13 | public int UnitsInStock { get; set; } 14 | public bool Discontinued { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSelectionByField/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSelectionColumnWithCheckBox/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSignalR/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Examples.Mvc.Areas.GridSignalR.Models; 2 | using Kendo.Mvc.Extensions; 3 | using Kendo.Mvc.UI; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Web; 8 | using System.Web.Mvc; 9 | 10 | namespace Telerik.Examples.Mvc.Areas.GridSignalR.Controllers 11 | { 12 | public class HomeController : Controller 13 | { 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSignalR/Models/CategoryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.GridSignalR.Models 7 | { 8 | public class CategoryViewModel 9 | { 10 | public int CategoryID { get; set; } 11 | public string CategoryName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSignalR/Models/Sample.Designer.cs: -------------------------------------------------------------------------------- 1 | // Default code generation is disabled for model 'C:\Work\temp\tests\signalR-bound-grid\Telerik.Examples.Mvc.Areas.GridSignalR\Models\Sample.edmx'. 2 | // To enable default code generation, change the value of the 'Code Generation Strategy' designer 3 | // property to an alternate value. This property is available in the Properties Window when the model is 4 | // open in the designer. -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSignalR/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridSignalR/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridTimestamp/Models/ProductContexInitializer.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity; 2 | 3 | namespace Telerik.Examples.Mvc.Areas.GridTimestamp.Models 4 | { 5 | public class ProductContext : DbContext 6 | { 7 | public ProductContext() : base("ProductsConnection") { } 8 | 9 | public DbSet Products { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridTimestamp/Models/ProductContext.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity; 2 | 3 | namespace Telerik.Examples.Mvc.Areas.GridTimestamp.Models 4 | { 5 | 6 | public class ProductContexInitializer : CreateDatabaseIfNotExists 7 | { 8 | protected override void Seed(ProductContext context) 9 | { 10 | context.Products.Add(new Product 11 | { 12 | ProductName = "Chai" 13 | }); 14 | 15 | context.SaveChanges(); 16 | 17 | base.Seed(context); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/GridTimestamp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuOpenWindowWithAjax/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSameControllersInDifferentAreas/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Kendo.Mvc.Extensions; 2 | using Kendo.Mvc.UI; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Web; 7 | using System.Web.Mvc; 8 | 9 | namespace Telerik.Examples.Mvc.Areas.MenuSameControllersInDifferentAreas.Controllers 10 | { 11 | public class HomeController : Controller 12 | { 13 | public ActionResult Index() 14 | { 15 | return View(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSameControllersInDifferentAreas/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Confirm Email"; 3 | } 4 | 5 |

@ViewBag.Title.

6 |
7 |

8 | Thank you for confirming your email. Please @Html.ActionLink("Click here to Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" }) 9 |

10 |
11 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewBag.Title.

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Forgot Password Confirmation"; 3 | } 4 | 5 |
6 |

@ViewBag.Title.

7 |
8 |
9 |

10 | Please check your email to reset your password. 11 |

12 |
13 | 14 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Reset password confirmation"; 3 | } 4 | 5 |
6 |

@ViewBag.Title.

7 |
8 |
9 |

10 | Your password has been reset. Please @Html.ActionLink("click here to log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" }) 11 |

12 |
13 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |

Only logged in users can view this page.

8 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Contact"; 3 | } 4 |

@ViewBag.Title.

5 |

@ViewBag.Message

6 | 7 |

Only logged in users can view this page.

-------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | 3 | @{ 4 | ViewBag.Title = "Error"; 5 | } 6 | 7 |

Error.

8 |

An error occurred while processing your request.

9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | 3 | @{ 4 | ViewBag.Title = "Locked Out"; 5 | } 6 | 7 |
8 |

Locked out.

9 |

This account has been locked out, please try again later.

10 |
11 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MenuSecurityTrimming/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiColumnComboBoxEdit/Models/SampleData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.MultiColumnComboBoxEdit.Models 7 | { 8 | public class SampleData 9 | { 10 | public int Value { get; set; } 11 | public string Text { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiColumnComboBoxEdit/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiSelectFormPostStronglyTyped/Models/City.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.MultiSelectFormPostStronglyTyped.Models 7 | { 8 | public class City 9 | { 10 | public int ID { get; set; } 11 | public string Name { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiSelectFormPostStronglyTyped/Models/CountryInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.MultiSelectFormPostStronglyTyped.Models 7 | { 8 | public class CountryInfo 9 | { 10 | public int[] SelectedCities { get; set; } 11 | public List Cities { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiSelectFormPostStronglyTyped/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiSelectGetPostData/Models/MultiSelectItem.cs: -------------------------------------------------------------------------------- 1 | namespace Telerik.Examples.Mvc.Areas.MultiSelectGetPostData.Models 2 | { 3 | public class MultiSelectItem 4 | { 5 | public int TheValue { get; set; } 6 | public string TheText { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiSelectGetPostData/Models/sampleModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace Telerik.Examples.Mvc.Areas.MultiSelectGetPostData.Models 4 | { 5 | public class sampleModel 6 | { 7 | public string SomeField { get; set; } 8 | public List ChosenItems {get;set;} 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/MultiSelectGetPostData/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ODataWebApiWidgets/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ODataWebApiWidgets/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ODataWebApiWrappers/Models/NorthwindEntities.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ODataWebApiWrappers/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/PanelBarHierarchyBinding/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/PanelBarSelectItemInitially/Models/LocalPanelBarItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.PanelBarSelectItemInitially.Models 7 | { 8 | public class LocalPanelBarItem 9 | { 10 | public string MenuName { get; set; } 11 | public string MenuUrl { get; set; } 12 | public List ChildItems { get; set; } 13 | public bool IsPreSelected { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/PanelBarSelectItemInitially/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/PdfExportingServerSide/Images/documentajax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/PdfExportingServerSide/Images/documentajax.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/PdfExportingServerSide/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/RequireJS/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.RequireJS.Models 7 | { 8 | public class Product 9 | { 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/RequireJS/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerCustomView/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerCustomView/Resources/toDoViewStyles.css: -------------------------------------------------------------------------------- 1 | .k-task-delete { 2 | display: none; 3 | } 4 | 5 | .k-task:hover .k-task-delete, 6 | td:hover > .k-task .k-task-delete { 7 | display: inline-block; 8 | } 9 | 10 | .k-task { 11 | cursor: default; 12 | height: 1.4em; 13 | } 14 | 15 | .k-scheduler-content td { 16 | vertical-align: middle; 17 | } 18 | 19 | .k-event > .k-link, .k-task > .k-link { 20 | top: 0px !important; 21 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerCustomView/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerDragAndDrop/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerDragAndDrop/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerEditingCustomEditor/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerEditingCustomEditor/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerEditingResources/Models/Attendie.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.SchedulerEditingResources.Models 7 | { 8 | public class Attendee 9 | { 10 | public string Text { get; set; } 11 | public int Value { get; set; } 12 | public string Color { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerEditingResources/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerEditingResources/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerEditingWebApi/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerEditingWebApi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerGoogleAPI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerServerFiltering/Models/SchedulerSample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerServerFiltering/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerSignalRLocalHub/Models/CategoryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.SchedulerSignalRLocalHub.Models 7 | { 8 | public class CategoryViewModel 9 | { 10 | public int CategoryID { get; set; } 11 | public string CategoryName { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerSignalRLocalHub/Models/Sample.Designer.cs: -------------------------------------------------------------------------------- 1 | // Default code generation is disabled for model 'C:\Users\viliev\Desktop\signalrlocalhubLOCKINGRECORDSADDED\Telerik.Examples.Mvc.Areas.SchedulerSignalRLocalHub\Models\Sample.edmx'. 2 | // To enable default code generation, change the value of the 'Code Generation Strategy' designer 3 | // property to an alternate value. This property is available in the Properties Window when the model is 4 | // open in the designer. -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerSignalRLocalHub/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerSignalRLocalHub/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerSignalRServerFiltering/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerSignalRServerFiltering/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerTooltip/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerTooltip/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerValidatingTimeslot/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/SchedulerValidatingTimeslot/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ThemeChangeOnClient/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Kendo.Mvc.Extensions; 2 | using Kendo.Mvc.UI; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Web; 7 | using System.Web.Mvc; 8 | 9 | namespace Telerik.Examples.Mvc.Areas.ThemeChangeOnClient.Controllers 10 | { 11 | public class HomeController : Controller 12 | { 13 | public ActionResult Index() 14 | { 15 | ViewBag.Message = "Welcome to ASP.NET MVC!"; 16 | 17 | return View(); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/ThemeChangeOnClient/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeListExportingMultiple/Models/Sample.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeListExportingMultiple/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewBindingToXml/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.TreeViewBindingToXml.Models 7 | { 8 | public class Employee 9 | { 10 | public int id { get; set; } 11 | public string name { get; set; } 12 | public bool hasChildren { get; set; } 13 | public List items { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewBindingToXml/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewExpandSelectedItemAsync/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewExpandSelectedItemAsync/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewLoadConditionally/Models/ComboItemModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.TreeViewLoadConditionally.Models 7 | { 8 | public class ComboItemModel 9 | { 10 | public int ID { get; set; } 11 | 12 | public string Name { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewLoadConditionally/Models/TreeViewItemModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.TreeViewLoadConditionally.Models 7 | { 8 | public class TreeViewItemModel 9 | { 10 | public int Id { get; set; } 11 | 12 | public int? ParentId { get; set; } 13 | 14 | public string Text { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewLoadConditionally/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewSaveItemState/Models/ViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.TreeViewSaveItemState.Models 7 | { 8 | public class ViewModel 9 | { 10 | public int ID { get; set; } 11 | public int? ParentID { get; set; } 12 | public string Name { get; set; } 13 | public bool IsChecked { get; set; } 14 | public bool Expanded { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/TreeViewSaveItemState/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/UploadAmazonS3/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/UploadDownloadFileLinks/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/UploadFilesToDataBase/Models/UserFileViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Areas.UploadFilesToDataBase.Models 7 | { 8 | public class UserFileViewModel 9 | { 10 | public int Id { get; set; } 11 | public string Name { get; set; } 12 | public int? DataLength { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/UploadFilesToDataBase/Models/UserFiles.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/UploadFilesToDataBase/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Areas/WindowFormWithAjax/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application CodeBehind="Global.asax.cs" Inherits="Telerik.Examples.Mvc.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/ILLink/ILLink.Descriptors.LibraryBuild.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/200.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/accent.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/bullet.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/bg.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/br.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/fr.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/gb.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/in.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/it.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/country-flags/us.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/1.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/10.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/11.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/12.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/13.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/14.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/15.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/16.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/17.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/18.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/19.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/2.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/20.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/21.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/22.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/23.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/24.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/25.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/26.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/27.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/28.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/29.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/3.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/30.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/31.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/32.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/33.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/34.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/35.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/36.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/37.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/38.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/39.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/4.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/40.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/41.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/42.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/43.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/44.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/45.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/46.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/47.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/48.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/49.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/5.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/50.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/51.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/52.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/53.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/54.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/55.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/56.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/57.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/58.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/59.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/6.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/60.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/61.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/62.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/63.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/64.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/65.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/66.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/67.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/68.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/69.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/7.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/70.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/71.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/72.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/73.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/74.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/75.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/76.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/77.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/78.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/79.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/8.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/80.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/foods/9.jpg -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/heroAccent.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/readme-images/model-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/readme-images/model-browser.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/readme-images/naming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Images/readme-images/naming.png -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Models 7 | { 8 | public enum Category 9 | { 10 | Beverages, 11 | Foods 12 | } 13 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Models 7 | { 8 | public class Product 9 | { 10 | public int ID { get; set; } 11 | public string Name { get; set; } 12 | public Category Category { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Models/Role.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace Telerik.Examples.Mvc.Models 7 | { 8 | public enum Role 9 | { 10 | Admin, 11 | User, 12 | SuperUser 13 | } 14 | } -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/Scripts/_references.js -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Boolean.cshtml: -------------------------------------------------------------------------------- 1 | @model bool? 2 | 3 | @(Html.Kendo().CheckBoxFor(m => m).HtmlAttributes(new { title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")})) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Currency.cshtml: -------------------------------------------------------------------------------- 1 | @model decimal? 2 | 3 | @(Html.Kendo().CurrencyTextBoxFor(m => m) 4 | .HtmlAttributes(new { style = "width:100%", title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")}) 5 | .Min(0) 6 | ) 7 | 8 | 9 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Date.cshtml: -------------------------------------------------------------------------------- 1 | @model DateTime? 2 | 3 | @(Html.Kendo().DatePickerFor(m => m).HtmlAttributes(new { title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")})) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/DateTime.cshtml: -------------------------------------------------------------------------------- 1 | @model DateTime? 2 | 3 | @(Html.Kendo().DateTimePickerFor(m => m).HtmlAttributes(new { title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")})) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Email.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | 4 | @Html.TextBoxFor(model => model, new { @class = "k-input-inner"}) 5 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/EmailAddress.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | 4 | @Html.TextBoxFor(model => model, new { @class = "k-input-inner", type = "email" }) 5 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/GridForeignKey.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @( 4 | Html.Kendo().DropDownListFor(m => m) 5 | .BindTo((SelectList)ViewData[ViewData.TemplateInfo.GetFullHtmlFieldName("") + "_Data"]) 6 | .HtmlAttributes(new { title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")}) 7 | ) 8 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Integer.cshtml: -------------------------------------------------------------------------------- 1 | @model int? 2 | 3 | @(Html.Kendo().IntegerTextBoxFor(m => m) 4 | .HtmlAttributes(new { style = "width:100%", title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")}) 5 | .Min(int.MinValue) 6 | .Max(int.MaxValue) 7 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Number.cshtml: -------------------------------------------------------------------------------- 1 | @model double? 2 | 3 | @(Html.Kendo().NumericTextBoxFor(m => m) 4 | .HtmlAttributes(new { style = "width:100%" }) 5 | .HtmlAttributes(new { title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")}) 6 | ) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Password.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | 4 | @Html.TextBoxFor(model => model, new { @class = "k-input-inner", type = "password" }) 5 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/String.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @Html.Kendo().TextBoxFor(model => model) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Time.cshtml: -------------------------------------------------------------------------------- 1 | @model DateTime? 2 | 3 | @(Html.Kendo().TimePickerFor(m => m).HtmlAttributes(new {title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("")})) -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/EditorTemplates/Url.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | 4 | @Html.TextBoxFor(model => model, new { @class = "k-input-inner", type = "url" }) 5 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Error 6 | 7 | 8 |
9 |

Error.

10 |

An error occurred while processing your request.

11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /Telerik.Examples.Mvc/Telerik.Examples.Mvc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/ui-for-aspnet-mvc-examples/d9b597545996f006538756f3a23f3952db9405b6/Telerik.Examples.Mvc/Telerik.Examples.Mvc/favicon.ico --------------------------------------------------------------------------------