Using BootGrid, when I pull a blank field from mysql , it displays - How do I remove this?
I populate the modal form as follows:
$sql = "SELECT debt_master.id, debt_master
while( $row = mysqli_fetch_assoc($queryRecords) ) {
$data[] = $row;
}
$json_data = array(
"current" => intval($params['current']),
"rowCount" => 10,
"total" => intval($qtot->num_rows),
"rows" => $data // total data array
);
return $json_data;
The result is supposed to be blank with no spaces shown