Prado\Web\UI\ActiveControls\TActiveListControlAdapter::updateListItems PHP Method

updateListItems() public method

Update the client-side list options.
public updateListItems ( )
    public function updateListItems()
    {
        if ($this->canUpdateClientSide()) {
            $items = $this->getControl()->getItems();
            if ($items instanceof TActiveListItemCollection && $items->getListHasChanged()) {
                $items->updateClientSide();
            }
        }
    }