Dear team
I have this button an action on a table:
Button::create('tdate')->label("")->type("primary")
->size("sm")
->text("Detail")
->onClick(function($value, $row){
return Client::dashboard("InstrumentDayBoard")
->load([
"p_temperatures"=>"global",
"pdays"=>1,
"psorting"=>"order by moment desc",
"p_tdate"=>$row["tdate"],
]);
}),
Never open the new dashboard called "InstrumentDayBoard" (and exists). the action response is:
What am I doing wrong?.
The idea is: Open a new dashboard from button on table,
Best