add and move new column

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

Try to play with 3 or 2.

no go, only displays on the far right or far leftI need this items to go in-between existing columns…not sure what i’m doing wrong