the sample in the help file does not work as it standsfunction ListOptions_Load() {
$item = &$this->ListOptions->add(“new”);
$item->Header = “MyCaption”; // Set the column header (for List page)
$item->OnLeft = TRUE; // Link on left
$item->moveTo(4); // Move the column to the specified index
}
does not display the column at location 3added:
function ListOptions_Rendered() {
$item = &$this->ListOptions->getItem("new");
$item->ShowInDropDown = FALSE;
$item->MoveTo(4);
}… displays the column but does not move it to desired location