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

getAlternatingItemStyle() public method

public getAlternatingItemStyle ( ) : TTableItemStyle
return TTableItemStyle the style for each alternating item
    public function getAlternatingItemStyle()
    {
        if (($style = $this->getViewState('AlternatingItemStyle', null)) === null) {
            $style = new TTableItemStyle();
            $this->setViewState('AlternatingItemStyle', $style, null);
        }
        return $style;
    }
TDataList