Prado\Web\UI\WebControls\TDataList::onItemCreated PHP Method

onItemCreated() public method

This method is invoked after a data list item is created and instantiated with template, but before added to the page hierarchy. The datalist item control responsible for the event can be determined from the event parameter. If you override this method, be sure to call parent's implementation so that event handlers have chance to respond to the event.
public onItemCreated ( $param )
    public function onItemCreated($param)
    {
        $this->raiseEvent('OnItemCreated', $this, $param);
    }
TDataList