Go to file
2018-02-23 10:07:08 -05:00
.gitignore Initial commit 2018-02-23 10:01:30 -05:00
datatables.go Create datatables.go 2018-02-23 10:02:44 -05:00
LICENSE Initial commit 2018-02-23 10:01:30 -05:00
README.md Update README.md 2018-02-23 10:07:08 -05:00

datatables

Parser for Datatables

Usage

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
}