Re: [htmltmpl] HTML::Template - need to merge the columns of a table
Brought to you by:
samtregar
From: Senthil N. <rs...@gm...> - 2005-12-14 19:59:34
|
hey, thats not the one i expect. i tell the first row with the spacing as some amount of % and then check fo= r the bool var inside that loop. sample code is here, <TABLE BORDER=3D0 cellpadding=3D"0" width=3D"100%"> <TR bgcolor=3D"87b77b"> <td width=3D"15%" align=3D"center"> <font face=3D"Arial" size=3D"2"><b>Job ID</b></font></td> <td width=3D"10%" align=3D"center"> <font face=3D"Arial" size=3D"2"><b>Passed</b></font></td> <td width=3D"10%" align=3D"center"> <font face=3D"Arial" size=3D"2"><b>Failed</b></font></td> <td width=3D"10%" align=3D"center"> <font face=3D"Arial" size=3D"2"><b>Total</b></font></td> </TR> <TMPL_LOOP NAME=3D"job_loop"> <TD align=3D"center"><a href=3D"hiGuiResultsBrowser.cgi?jobid=3D<TM= PL_VAR NAME =3D"job_id">"> <TMPL_VAR NAME=3D"job_id"></TD> <TMPL_IF rep_found> <TD>Reports are missing in the location</TD> ------> this comes under only one column. remaining 2 columns are empty. i would like to merge all the columns and display. <TMPL_ELSE> <TD align=3D"center"><TMPL_VAR NAME=3D"passed"></TD> <TD align=3D"center"><TMPL_VAR NAME=3D"failed"></TD> <TD align=3D"center"><TMPL_VAR NAME=3D"total"></TD> </TMPL_IF> </TR> </TMPL_LOOP> </TABLE> On 12/15/05, Dan Horne <dan...@re...> wrote: > > <tmpl_if my_flag> > <!-- merged cells here --> > <tmpl_else> > <!-- non-merged cells--> > </tmpl_if> > > -----Original Message----- > *From:* htm...@li... [mailto: > htm...@li...] *On Behalf Of *Senthil > Nathan > *Sent:* Thursday, 15 December 2005 08:19 > *To:* Htm...@li... > *Subject:* [htmltmpl] HTML::Template - need to merge the columns of a > table > > Hi All, > > I need to merge the columns of a table during runtime in HTNL Template. > > I have a bool variable set, whenever the cells needs to be merged. > So, chking for that var if its set, need to merge the cells else need to > have the cells as defined earlier. > > How this can be done in HTML::Template?? > > Thanks > Senthil > > |