RenderOutput display problem
Mon, 05/16/2011 - 12:19
File : QcontrolBase.class.php
Method: protected function RenderOutput
Problem:
if (!$this->blnDisplay)
$strStyle .= 'display:none;';
else if ($blnIsBlockElement)
$strStyle .= 'display:inline;';
Why inline and not block ?

Do a search on blnIsBlockElement. blnIsBlockElement controls whether the wrapper is output as divs or spans. The wrapper includes items like labels and control specific error messages. The actual control itself will be inline within the wrapper.