Problem searching formatted rows, server side

Problem searching formatted rows, server side

dionii1dionii1 Posts: 1Questions: 1Answers: 0

Hello,

I am using server side datatables width ssp.class.php. The problem is that when I format a row for example:
array( 'db' => 'ProductUserID', 'dt' => 5, 'formatter' => function( $d, $row ) { global $func; $Username = $func->getname('UserName', $d); return $Username; } ),
It all appears okay on datatable, but when i use the search function on datatable for example in this case, I search for username it says that it doesnt exists. What am I doing wrong?

This discussion has been closed.