PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
yajra
/
laravel-datatables-html
/
src
/
Html
/
Options
/
Plugins
<?php namespace Yajra\DataTables\Html\Options\Plugins; /** * DataTables - Responsive plugin option builder. * * @see https://datatables.net/extensions/responsive * @see https://datatables.net/reference/option/responsive * @see https://datatables.net/reference/option/#responsive */ trait Responsive { /** * Set responsive option value. * * @param bool|array $value * @return $this * @see https://datatables.net/reference/option/responsive */ public function responsive($value = true) { $this->attributes['responsive'] = $value; return $this; } /** * Set responsive breakpoints option value. * * @param mixed $value * @return $this * @see https://datatables.net/reference/option/responsive.breakpoints */ public function responsiveBreakpoints($value) { $this->attributes['responsive']['breakpoints'] = $value; return $this; } /** * Set responsive details option value. * * @param mixed $value * @return $this * @see https://datatables.net/reference/option/responsive.details */ public function responsiveDetails($value) { $this->attributes['responsive']['details'] = $value; return $this; } /** * Set responsive details display option value. * * @param mixed $value * @return $this * @see https://datatables.net/reference/option/responsive.details.display */ public function responsiveDetailsDisplay($value) { $this->attributes['responsive']['details']['display'] = $value; return $this; } /** * Set responsive details renderer option value. * * @param mixed $value * @return $this * @see https://datatables.net/reference/option/responsive.details.renderer */ public function responsiveDetailsRenderer($value) { $this->attributes['responsive']['details']['renderer'] = $value; return $this; } /** * Set responsive details target option value. * * @param mixed $value * @return $this * @see https://datatables.net/reference/option/responsive.details.target */ public function responsiveDetailsTarget($value) { $this->attributes['responsive']['details']['target'] = $value; return $this; } /** * Set responsive details type option value. * * @param mixed $value * @return $this * @see https://datatables.net/reference/option/responsive.details.type */ public function responsiveDetailsType($value) { $this->attributes['responsive']['details']['type'] = $value; return $this; } /** * Set responsive orthogonal option value. * * @param mixed $value * @return $this * @see https://datatables.net/reference/option/responsive.orthogonal */ public function responsiveOrthogonal($value) { $this->attributes['responsive']['orthogonal'] = $value; return $this; } }
[-] FixedColumns.php
[edit]
[-] FixedHeader.php
[edit]
[-] KeyTable.php
[edit]
[+]
..
[-] Responsive.php
[edit]
[-] ColReorder.php
[edit]
[-] Buttons.php
[edit]
[-] Select.php
[edit]
[-] RowReorder.php
[edit]
[-] AutoFill.php
[edit]
[-] RowGroup.php
[edit]
[-] Scroller.php
[edit]
[-] SearchPanes.php
[edit]