[Mono-bugs] [Bug 78913][Wis] New - absolute position is not working on mono 1.1.16
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu Jul 20 16:48:54 EDT 2006
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 rzbenavides10 at yahoo.com.
http://bugzilla.ximian.com/show_bug.cgi?id=78913
--- shadow/78913 2006-07-20 16:48:54.000000000 -0400
+++ shadow/78913.tmp.803 2006-07-20 16:48:54.000000000 -0400
@@ -0,0 +1,61 @@
+Bug#: 78913
+Product: Mono: Tools
+Version: 1.1
+OS: SUSE 9.2
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: XSP
+AssignedTo: gonzalo at ximian.com
+ReportedBy: rzbenavides10 at yahoo.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: absolute position is not working on mono 1.1.16
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+Whenever I use absolute position in a control, mono does not send it to
+the browser.
+
+
+Steps to reproduce the problem:
+
+1. Add a control with absolute position like this example:
+
+<div id="DIV1" style="BORDER-RIGHT: #4e88b1 1px solid; BORDER-TOP:
+#4e88b1 1px solid; BORDER-LEFT: #4e88b1 1px solid; WIDTH: 736px; BORDER-
+BOTTOM: #4e88b1 1px solid; POSITION: relative; HEIGHT: 332px"
+runat="server" ms_positioning="FlowLayout">
+<asp:textbox id="txtNombre" style="Z-INDEX: 101; LEFT: 295px; POSITION:
+absolute; TOP: 48px" runat="server" Font-Size="10pt" Width="197px" Font-
+Names="Arial"></asp:textbox>
+</div>
+
+Actual Results:
+Mono sends to the browser
+<div id="DIV1" ms_positioning="GridLayout">
+<input id="txtNombre" type="text" name="txtNombre"
+style="width:197px;font-family:Arial;font-size:10pt;" />
+</div>
+
+Expected Results:
+Mono-1.1.15 sends to the browser
+<div id="DIV1" style="BORDER-RIGHT: #4e88b1 1px solid; BORDER-TOP:
+#4e88b1 1px solid; BORDER-LEFT: #4e88b1 1px solid; WIDTH: 736px; BORDER-
+BOTTOM: #4e88b1 1px solid; POSITION: relative; HEIGHT: 332px"
+ms_positioning="GridLayout">
+<input id="txtNombre" type="text" name="txtNombre"
+style="width:197px;font-family:Arial;font-size:10pt;Z-INDEX: 101; LEFT:
+295px; POSITION: absolute; TOP: 48px" />
+</div>
+
+
+How often does this happen?
+Whenever you use absolute position in a control.
+
+Additional Information:
More information about the mono-bugs
mailing list