You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Saúl Ortega e7b93b8b15
Create generic.go
6 years ago
.gitignore Initial commit 6 years ago
LICENSE Initial commit 6 years ago
README.md Update README.md 6 years ago
filter.go Update and rename datatables.go to filter.go 6 years ago
generic.go Create generic.go 6 years ago
response.go Create response.go 6 years ago

README.md

datatables

Simple parser for DataTables server-side processing.

Install

go get -u github.com/saulortega/datatables

Usage

import "github.com/saulortega/datatables"

//Parse receive *http.Request and returns a Filter struct
filter, err = datatables.Parse(r)
if err != nil {
	//Handle error
}

Struct

type Filter struct {
	Draw        int
	Start       int
	Length      int
	Order       []Order
	Columns     []Column
	SearchValue string
	SearchRegex bool
}

type Column struct {
	Data        string
	Name        string
	Index       int
	Orderable   bool
	Searchable  bool
	SearchValue string
	SearchRegex bool
}

type Order struct {
	Column Column
	Dir    string
}