Hello,
On 2/14/2010 5:13 PM, jimendeath wrote:
I would like to insert a check box (o5 rdio button) inside a cell
table.
You can manage to do this easily by upgrading to 0.12dev.
When I want to create a table I do it like this:
||Header 1||Heder2||Header 3||
||content 1|| content 2 || content 3||
What I'm trying to do is to show a check box inside a cell but I don't
know how. What I've done is to insert html code but it doesn't work
properly. I've change the text you can see "content 2" for:
{{{
#!html
<div align="center"><br>
<input type="checkbox" name="option1" value="Aplicación">
Aplicación<br>
<input type="checkbox" name="option2" value="Formularios" checked>
Formularios<br>
<input type="checkbox" name="option3" value="Plantillas">
Plantillas<br>
<br>
</div>
}}}
You could then write:
||=Header 1=||=Heder2=||=Header 3=||
{{{#!td
content1
}}}
{{{#!td
{{{#!div align="center">
{{{#!html
<br/>
<input type="checkbox" name="option1" value="Aplicación" >Aplicación<br/>
<input type="checkbox" name="option2" value="Formularios"
checked>Formularios<br/>
<input type="checkbox" name="option3" value="Plantillas" >Plantillas<br/>
<br/>
}}}
}}}
}}}
{{{#!td
content3
}}}
See http://trac.edgewall.org/demo-0.12/wiki/SampleTable
-- Christian
--
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en.