Hello, I'm needing some help here.
In my Table widget, I'm trying to sort rows by using Table's widget sort feature after apply group by. But nothing happens.
Table::create(array(
    "dataSoure"=>$this->dataStore("test"),
    "grouping" => array("category")
    "sorting"=>array(
        "orderDate"=>"desc",
    )
));
Can someone help me?