Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
/ kendo Public archive

Server-side models for the Kendo UI library such as filters and sorters.

License

Notifications You must be signed in to change notification settings

dimesoftware/kendo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dime.Kendo

Build Status Dime.Kendo package in Dime.Scheduler feed in Azure Artifacts

Introduction

Server-side models for the Kendo UI library such as filters and sorters.

Getting Started

  • You must have Visual Studio 2019 Community or higher.
  • The dotnet cli is also highly recommended.

About this project

The most notable types in this assembly include:

  • Filter
  • Sort

These classes are useful when a ASP.NET (Core) Web API is used as a proxy to Kendo UI's widgets. They can be declared in the action's parameters.

Build and Test

  • Run dotnet restore
  • Run dotnet build
  • Run dotnet test

Installation

Use the package manager NuGet to install Dime.Kendo:

dotnet add package Dime.Kendo

Usage

[HttpPost]
[Route(Routes.Appointments.Get)]
public async Task<IPage<BackOfficeAppointmentDto>> Get([FromBody]DataSourceRequest request)
    => await Service.GetAsync(request.Take, request.Skip, request.Page, request.PageSize, request.Filter, request.Sort);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

License

About

Server-side models for the Kendo UI library such as filters and sorters.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages