All girds in application are Sortable , Pageable and Scrollable. Is it possible to create a general configuration for Kendo UI for setting these properties in asp.net mvc projects ?
Update: one solution is using extension helper for Kendo UI
Any other solution ?
No there is no other solution . If you want to add telerik in your existing project you need to use the extension . But if you are creating new project then when you click at new project then in the list of application types from where you select ASP.NET MVC web application , you need to select Telerik ASP.NET MVC application .
Related
In a Multitenancy B2C application, the interface created by the Application Startup Template applies well to the backoffice, but for the storefront website I think it would be necessary to create a blank UI project (angular or MVC).
What would be the best practice for keep the ABP infrastructure that provides functionality such as customization by Tenant, Tag Hellpers, Proxies, Localization, etc. without bringing unnecessary dependencies such as JS libraries and other components like menus, datatables, sidebars?
What you are looking for is a Public application template. Abp framework is created modularity in mind so that you can use modules in each other if they are developed in modular way.
I don't think it is feasable to say "add these projects and libraries".
However, you can check the microservice demo, PublicWebSite application at abp-samples to see which libraries are added so that you can modify an empty project as you desire.
Overriding a View Component The ABP Framework, pre-built themes and modules define some re-usable view components. These view components can be replaced just like a page described above.
https://docs.abp.io/en/abp/latest/UI/AspNetCore/Customization-User-Interface#overriding-a-view-component
Replacing ALL UI Theme Package with your custom Project by copy the Basic Theme (from Github).
MVC https://community.abp.io/articles/creating-a-new-ui-theme-by-copying-the-basic-theme-for-mvc-ui-yt9b18io
Blazor https://community.abp.io/articles/creating-a-new-ui-theme-by-copying-the-basic-theme-for-blazor-ui-qaf5ho1b
Or check these others links https://community.abp.io/articles/changing-ui-theme-for-abp-mvc-razor-pages-ui-ravx6a0o.
I have a Kendo grid and backend in ASP.WebApi
In Kendo Mvc there is the class DataSourceRequest and with the extension ToDataSourceResult you can filter your datasources with the parameters from the grid in the view.
Now i'm creating an application with HTML5 and Angular. For this solution i don't find a dll provided by Telerik.
Is there a way to easy take in the grid parameters (paging, sorting, filtering) and apply them to my IQueryable datasource?
There are two ways to do that:
Use the Kendo.DynamicLinq open source library
Use UI for ASP.NET MVC. There is a help article that shows how to do that from JavaScript.
I trying to use spring mvc template, the wizard windows says 'requires downloading' but next button is disabled. I dont know what to do.
Just type in a project name in the field (on the top of the dialog). Then the Next button will be enabled.
I have an ASP.NET Web Forms application in one project. Under the same solution I have two different projects: one Repository layer and one Service layer.
Eventually I will rewrite my ASP.NET Web Forms application in MVC, therefore I want to implement all the new functionality by using MVC.
I have to create a registration form for customers and at one point if a condition verifies, I have to bring the customer to another form and then back to the registration form.
Will it work if I create an MVC application project within the same solution? The application will also use the Service and Repository layers. What about the Session object?
Just add the MVC controllers/views to your Web Forms application. They can run side-by-side just fine. This will allow you to upgrade parts of the site to MVC while keeping your existing Web Forms pages running.
The web layer (which has both MVC and Web Forms) can still access all of your application framework logic (repository, service, session, etc...)
Scott Hanselman created a Nuget Package for easily upgrading your web forms app to Mvc 3:
http://nuget.org/packages/AddMvc3ToWebForms
What's the best way to structure the base functionality of an ASP.NET MVC 3 solution so it can be reused in subsequent solutions? For example, I'm going to develop a basic skeleton MVC app with user registration using email verification, enhanced users/right/roles, blogging with comments, and a forum. I understand maintaining the business logic in class libraries but how about the controllers and views? Do I basically have to just copy and paste my base solution to create each of my new solutions?
Creating a Custom ASP.NET MVC Project Template
templify