All Projects → unosquare → tubular-dotnet

unosquare / tubular-dotnet

Licence: MIT License
Tubular .NET Library

Programming Languages

C#
18002 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to tubular-dotnet

Niui
Lightweight, feature-rich, accessible front-end library
Stars: ✭ 152 (+850%)
Mutual labels:  grid, forms
tubular
A set of AngularJS directives designed to rapidly build modern web applications
Stars: ✭ 44 (+175%)
Mutual labels:  grid, forms
vue-smart-widget
🗃️Smart widget is a flexible and extensible content container component for Vue2.x / Vue3.x in Next branch.
Stars: ✭ 110 (+587.5%)
Mutual labels:  grid
Katana
Katana is CSS Layout System made with Flexbox
Stars: ✭ 57 (+256.25%)
Mutual labels:  grid
jquery-ajaxSubmit
Effortlessly submit forms using AJAX and JSON.
Stars: ✭ 39 (+143.75%)
Mutual labels:  forms
ro.py
ro.py is a modern, asynchronous Python 3 wrapper for the Roblox API.
Stars: ✭ 65 (+306.25%)
Mutual labels:  webapi
mobx-form
Declarative, complex forms with Mobx/React with lots of dynamic/imperative hooks
Stars: ✭ 29 (+81.25%)
Mutual labels:  forms
gridjs-vue
A Vue.js wrapper component for Grid.js
Stars: ✭ 72 (+350%)
Mutual labels:  grid
WebApiJwt
Asp.NET Core 2.0 WebApi JWT Authentication with Identity & MySQL
Stars: ✭ 118 (+637.5%)
Mutual labels:  webapi
SparkTodo
TodoList WebApi Powered by ASP.Net Core and JWT token auth
Stars: ✭ 37 (+131.25%)
Mutual labels:  webapi
vue-virtual-scroll-grid
A Vue 3 component that can render a list with 1000+ items as a grid in a performant way.
Stars: ✭ 64 (+300%)
Mutual labels:  grid
react-emotion-multi-step-form
React multi-step form library with Emotion styling
Stars: ✭ 25 (+56.25%)
Mutual labels:  forms
minimal-apis.github.io
Tutorials and samples for ASP.NET Core Minimal APIs
Stars: ✭ 47 (+193.75%)
Mutual labels:  webapi
DotNETCarRental
Daily car rental simulation with ASP.NET.
Stars: ✭ 13 (-18.75%)
Mutual labels:  webapi
blazor-ui
A collection of examples related to Telerik UI for Blazor Components: https://www.telerik.com/blazor-ui
Stars: ✭ 182 (+1037.5%)
Mutual labels:  grid
road-to-orleans
This repository illustrates the road to orleans with practical, real-life examples. From most basic, to more advanced techniques.
Stars: ✭ 55 (+243.75%)
Mutual labels:  webapi
use-table-tools
React Hooks for building kickass react table components
Stars: ✭ 18 (+12.5%)
Mutual labels:  grid
ECommerceProjectWithWebAPI
.NET 5.0 Web API İle E-Ticaret Sitesi Yapımı MVC,Win Form,Angular ve Mobil
Stars: ✭ 35 (+118.75%)
Mutual labels:  webapi
docker-formio-api
Docker Form.io Server based on Debian w/s6 init, Zabbix Monitoring
Stars: ✭ 14 (-12.5%)
Mutual labels:  forms
ContactEtc
Laraval package to instantly add a customisable contact form to your site.
Stars: ✭ 21 (+31.25%)
Mutual labels:  forms

NuGet Analytics Buils status Build status Coverage Status Dependabot Status

Tubular DotNet

Please star this project if you find it useful!

Tubular provides .NET Framework and .NET Core Library to create REST service to use with Tubular Angular Components easily with any WebApi library (ASP.NET Web API for example).

Please visit the Tubular GitHub Page to learn how quickly you can start coding. See Related projects below to discover more Tubular libraries and backend solutions.

Installation NuGet version

PM> Install-Package Tubular.ServerSide

Sample

You can check out the Tubular GitHub Page to get a few examples. We still need to work on more samples and better documentation, but we feel what we have now will get you up to speed very quickly :).

The following snippet shows how to use Tubular Helper to create a basic response grid using Entity Framework and ASP.NET Web API.

 [RoutePrefix("api/users")]
    public class UsersController : ApiController
    {
        [HttpPost, Route("paged")]
        public IHttpActionResult GridData([FromBody] GridDataRequest request)
        {
            using (var context = new SampleDbContext(false)) {
                return Ok(request.CreateGridDataResponse(context.SystemUsers));
            }
        }
    }

Related Projects

Name Type Language/tech Description
Tubular for AngularJS (formerly Tubular) Library AngularJs Tubular provides a set of directives and services using AngularJS as framework.
Tubular for Angular6 (formerly Tubular2) Library Angular6 New Tubular2 with Angular6 (Angular2) and Angular Material 2.
Tubular React Library React Tubular-React is a DataGrid component using Material-UI
Tubular Common Library Javascript/Typescript Tubular Common provides TypeScript and Javascript models and data transformer to use any Tubular DataGrid component with an array of Javascript objects.
Tubular Dotnet Backend library C#/.NET Core Tubular provides .NET Framework and .NET Core Library to create REST service to use with Tubular Angular Components easily with any WebApi library (ASP.NET Web API for example).
Tubular Nodejs Backend Library Javascript Tubular Node.js provides an easy way to integrate Tubular Angular Components easily with any Node.js WebApi library.
Tubular Boilerplate C# Boilerplate C# Tubular Directives Boilerplate (includes AngularJS and Bootstrap)
Tubular Boilerplate Boilerplate Javascript/AngularJS Tubular Directives Boilerplate (includes AngularJS and Bootstrap).
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].