swilson
Posts: 84
|
| Posted: 11/15/2005, 5:08 PM |
|
I placed a checkbox list in a row of my record grid. The checkbox items run together and display on one line. I tried inserting a br in the html and it has no effect.
How can I format the checkbox list so each item diplays one line each within the table row?
_________________
It continues to amaze me, how often the solutions to seemingly complex problems are so very simple. |
 |
 |
matheus
Posts: 386
|
| Posted: 11/16/2005, 4:58 AM |
|
Can insert br code in the html.
_________________
Matheus Trevizan
Dynamix Software Ltda.
Blumenau SC Brasil
www.dynamix.com.br |
 |
 |
swilson
Posts: 84
|
| Posted: 11/16/2005, 5:00 AM |
|
I did that, but it has no effect.
_________________
It continues to amaze me, how often the solutions to seemingly complex problems are so very simple. |
 |
 |
swilson
Posts: 84
|
| Posted: 11/16/2005, 5:01 AM |
|
<tr>
<td class="CobaltFieldCaptionTD" nowrap>Factory Options</td>
<td class="" colspan="2">
<p>
<!-- BEGIN CheckBoxList FactoryOptions --><input type="checkbox" name="{FactoryOptions_Name}" value="{Value}" {Check}>{Description}<br>
<!-- END CheckBoxList FactoryOptions --></p>
</td>
</tr>
This is not working.
_________________
It continues to amaze me, how often the solutions to seemingly complex problems are so very simple. |
 |
 |
E43509
Posts: 283
|
| Posted: 11/16/2005, 5:07 AM |
|
what language? In asp.net you do this programmatically
mycontrol.RepeatDirection = RepeatDirection.Vertical
in the before show
|
 |
 |
swilson
Posts: 84
|
| Posted: 11/16/2005, 5:38 AM |
|
Yes! That was the answer. For me it was:
AircraftFactoryOption.RepeatDirection = RepeatDirection.Vertical
THANK YOU!
What technique will repeat this in two or three columns? asp.net, yes
_________________
It continues to amaze me, how often the solutions to seemingly complex problems are so very simple. |
 |
 |
E43509
Posts: 283
|
| Posted: 11/16/2005, 6:02 AM |
|
I'm only 50% confident in this answer ...
CCS is using a preconfigured control in .net and you are limited to its methods and properties. If you want the checkbox list to do more, you need to build your own custom control. You can check MSDN for methods and properties on this control.
|
 |
 |
Stan
|
| Posted: 11/17/2005, 12:18 AM |
|
It's pretty easy. In the before show
AircraftFactoryOption.RepeatColumns = 2
|
|
|
 |