how to make 2 buttons in 1 column

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

Google either “css merge two columns” or “jquery merge two columns”.

newbiephp wrote:

$item = &$this->ListOptions->Add(“tidak”);
$item = &$this->ListOptions->Add(“ya”);

You added 2 columns.

$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);

The “$item” in above code only refers to the last item you added.