Skip to content

Files

Latest commit

c0fda1f · Nov 17, 2017

History

History
19 lines (15 loc) · 474 Bytes

html-builder-parameters.md

File metadata and controls

19 lines (15 loc) · 474 Bytes

Html Builder Parameters

Parameters are basically the options you pass when declaring your DataTable js script.

See the datatables.net official documentation for the list of all possible options.

Example

$builder->parameters([
	'paging' => true,
	'searching' => true,
	'info' => false,
	'searchDelay' => 350,
	'language' => [
		'url' => url('js/dataTables/language.json')
	],
]);