Add Column with int of number index position. Trying to get property 'orderable' of non-object #40
jakarin-khiewcharoen
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
this error because in file DataTableColumnDefs.php function add()
this code array_splice( $this->columns, $position, 0, $column).
It makes data of $this->columns can't use .
me fix it by array_splice( $this->columns, $position, 0, array($column)); let it work.
Beta Was this translation helpful? Give feedback.
All reactions