Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by [EMAIL PROTECTED]

http://bugzilla.ximian.com/show_bug.cgi?id=76815

--- shadow/76815        2005-11-28 17:41:10.000000000 -0500
+++ shadow/76815.tmp.21285      2005-11-30 14:02:13.000000000 -0500
@@ -1,13 +1,13 @@
 Bug#: 76815
 Product: Mono: Class Libraries
 Version: 1.1
 OS: Red Hat 9.0
 OS Details: i386
-Status: RESOLVED   
-Resolution: FIXED
+Status: REOPENED   
+Resolution: 
 Severity: Unknown
 Priority: Normal
 Component: Sys.Web
 AssignedTo: [EMAIL PROTECTED]                            
 ReportedBy: [EMAIL PROTECTED]               
 QAContact: [EMAIL PROTECTED]
@@ -136,6 +136,34 @@
 ------- Additional Comments From [EMAIL PROTECTED]  2005-11-25 04:10 -------
 No (that's why I entered the bug, cuate)
 
 ------- Additional Comments From [EMAIL PROTECTED]  2005-11-28 17:41 -------
 Fixed in svn r53593.
 Thanks.
+
+------- Additional Comments From [EMAIL PROTECTED]  2005-11-30 14:02 -------
+It works for the tables, but does not work for the cells, example:
+...
+objRow1.Controls.Add(objRow1Cell1);
+objRow1.Controls.Add(objRow1Cell2);
+objRow1.Controls.Add(objRow1Cell3);
+objTable.Controls.Add(objRow1);
+objTable.RenderControl(output);
+//please note that objRow1.Controls.Add(objcell)
+//would not work either
+.....
+This does not create the Cells, it creates an empty row like this
+<table cellpadding="0" cellspacing="0" width="100%" border="2"
+align="top">
+       <tr height="10">
+       </tr>
+</table>
+
+where it should be like this
+<table cellpadding="0" cellspacing="0" width="100%" border="2"
+align="top">
+       <tr height="10">
+               <td width="100">Menu title</td>
+               <td width="100">option 1</td>
+               <td width="100">option 2</td>
+       </tr>
+</table>
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to