windsor
(Davidfaith101)
1
The CActiveForm with class=form defaults to a bunch of rows like this (pseudo code):
<div class=form>
…
<div class=row>
dropdown
</div>
<div class=row>
dropdown
</div>
<div class=row>
textbox
</div>
etc.
Is there a simple way to have 2 activeForm elements on one row without messing with layout files? what is the best markup?
e.g.
<div class=row>
dropdown dropdown
</div>
<div class=row>
texbox
</div>
windsor
(Davidfaith101)
2
ANSWER is to embed <div class=cell>cell content</div> between rows.
fbc
(Barcenas Francisco)
3
Could someone post an example please? I’ve tried it but to no avail.