how to make 2 buttons in 1 column header. example.
function ListOptions_Load() {
$item = &$this->ListOptions->Add(“tidak”);
$item = &$this->ListOptions->Add(“ya”);
$item->OnLeft = TRUE;
$item->Header = “Review”; // Set the column header (for List page)
$item->OnLeft = TRUE; // Link on left
$item->ShowInButtonGroup = FALSE;
$item->ShowInDropDown = FALSE;
$item->MoveTo(0);
}
I want to be a column between the yes and no buttons.
I tried the script. but the button still keeps the header blank. how should i write the code? thanks