can you use HorizontalAlign on the filter boxes in a datagrid with QfilteredDatagrid
Fri, 07/01/2011 - 21:20
Hi.
Since QfilteredDatagrid became part of the QCubed package I am no longer able to affect the Search boxes (filter boxes) that are created. I probably just don't know where to do that since the change. I want to left-align the filter boxes instead their current center-alignment.
Thanks in adfvance

This should work:
<?php$objRowStyle = $this->dtgYourTable->FilterRowStyle;
$objRowStyle->HorizontalAlign = QHorizontalAlign::Left;
?>
Thanks.
Just could not find in any of the docs. (docs?)
Dave