Christian Weiske (http://pear.php.net/
user/cweiske) has voted +1 on the proposal for
Structures::Structures_DataGrid_Renderer_Flexy.
Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=418
Vote information:
http://pear.php.net/pepr/pepr-vote-show.php
?id=418&handle=cweiske
Comment:
I don't know if I will need it, but since it's well
documented and
programmed, I give my +1.
$row_class =
$this->_options['oddRowAttribute'];
$i % 2 ? 0 : $row_class =
$this->_options['evenRowAttribute'];
Yes, there is a way:
$row_class = $i % 2 ?
$this->_options['evenRowAttribute']
:$this->_options['oddRowAttribute'];
--
Sent by PEPr, the automatic proposal system at http://pear.php.net
--
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|