You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Geoff Callender (JIRA)" <de...@tapestry.apache.org> on 2008/10/02 14:59:44 UTC

[jira] Created: (TAPESTRY-2701) BeanDisplay formatting can be off in IE7 with short values

BeanDisplay formatting can be off in IE7 with short values
----------------------------------------------------------

                 Key: TAPESTRY-2701
                 URL: https://issues.apache.org/jira/browse/TAPESTRY-2701
             Project: Tapestry
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.0.15
            Reporter: Geoff Callender


I'm seeing strange formatting of BeanDisplay by IE7.  An example is the "Id" line of this page, in which the dd element value is 1:

	http://202.177.217.122:8080/jumpstart/examples/output/easy

I'm guessing IE7 has formatting issues with the dt/dd elements.




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAP5-267) BeanDisplay formatting can be off in IE7 with short values

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-267?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12643250#action_12643250 ] 

Howard M. Lewis Ship commented on TAP5-267:
-------------------------------------------

Isn't there a CSS syntax for "first within its container"?


> BeanDisplay formatting can be off in IE7 with short values
> ----------------------------------------------------------
>
>                 Key: TAP5-267
>                 URL: https://issues.apache.org/jira/browse/TAP5-267
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: Geoff Callender
>
> I'm seeing strange formatting of BeanDisplay by IE7.  An example is the "Id" line of this page, in which the dd element value is 1:
> 	http://202.177.217.122:8080/jumpstart/examples/output/easy
> I'm guessing IE7 has formatting issues with the dt/dd elements.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAPESTRY-2701) BeanDisplay formatting can be off in IE7 with short values

Posted by "Geoff Callender (JIRA)" <de...@tapestry.apache.org>.
    [ https://issues.apache.org/jira/browse/TAPESTRY-2701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638828#action_12638828 ] 

Geoff Callender commented on TAPESTRY-2701:
-------------------------------------------

Please add the following line to default.css.  It fixes the problem in IE 7 (which throws the dd element onto the next line) without disturbing Firefox 3 and Safari 3:

dl.t-beandisplay dd.id	{ display:inline; margin-left: 0px; }	// IE 7

It does appear to be just the combination of <dd> with class="id" and IE 7 that produces the problem.



> BeanDisplay formatting can be off in IE7 with short values
> ----------------------------------------------------------
>
>                 Key: TAPESTRY-2701
>                 URL: https://issues.apache.org/jira/browse/TAPESTRY-2701
>             Project: Tapestry
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.0.15
>            Reporter: Geoff Callender
>
> I'm seeing strange formatting of BeanDisplay by IE7.  An example is the "Id" line of this page, in which the dd element value is 1:
> 	http://202.177.217.122:8080/jumpstart/examples/output/easy
> I'm guessing IE7 has formatting issues with the dt/dd elements.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Updated: (TAP5-267) BeanDisplay formatting can be off in IE7 with short values

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-267?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-267:
--------------------------------------

    Priority: Minor  (was: Major)

> BeanDisplay formatting can be off in IE7 with short values
> ----------------------------------------------------------
>
>                 Key: TAP5-267
>                 URL: https://issues.apache.org/jira/browse/TAP5-267
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: Geoff Callender
>            Priority: Minor
>
> I'm seeing strange formatting of BeanDisplay by IE7.  An example is the "Id" line of this page, in which the dd element value is 1:
> 	http://202.177.217.122:8080/jumpstart/examples/output/easy
> I'm guessing IE7 has formatting issues with the dt/dd elements.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAPESTRY-2701) BeanDisplay formatting can be off in IE7 with short values

Posted by "Geoff Callender (JIRA)" <de...@tapestry.apache.org>.
    [ https://issues.apache.org/jira/browse/TAPESTRY-2701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12636359#action_12636359 ] 

Geoff Callender commented on TAPESTRY-2701:
-------------------------------------------

BeanDisplay outputs this particular dt and dd with class="id".  Maybe that class has special meaning for IE7? 

Here's the output of the problem line:

	<dt class="id">Id</dt><dd class="id">1</dd>

Here is that same line in context:

	<dl class="t-beandisplay"><dt class="id">Id</dt><dd class="id">1</dd><dt class="version">Version</dt><dd class="version">1</dd><dt class="firstName">First Name</dt><dd class="firstName">Humpty</dd><dt class="lastName">Last Name</dt><dd class="lastName">Dumpty</dd><dt class="startDate">Start Date</dt><dd class="startDate">Dec 5, 2007</dd></dl><br>

And here it is with my line feeds added to make it easier to read.

	<dl class="t-beandisplay">
		<dt class="id">Id</dt><dd class="id">1</dd>
		<dt class="version">Version</dt><dd class="version">1</dd>
		<dt class="firstName">First Name</dt><dd class="firstName">Humpty</dd>
		<dt class="lastName">Last Name</dt><dd class="lastName">Dumpty</dd>
		<dt class="startDate">Start Date</dt>
		<dd class="startDate">Dec 5, 2007</dd>
	</dl><br>

The styling used is just the defaults - no additional css etc. has been used.

> BeanDisplay formatting can be off in IE7 with short values
> ----------------------------------------------------------
>
>                 Key: TAPESTRY-2701
>                 URL: https://issues.apache.org/jira/browse/TAPESTRY-2701
>             Project: Tapestry
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.0.15
>            Reporter: Geoff Callender
>
> I'm seeing strange formatting of BeanDisplay by IE7.  An example is the "Id" line of this page, in which the dd element value is 1:
> 	http://202.177.217.122:8080/jumpstart/examples/output/easy
> I'm guessing IE7 has formatting issues with the dt/dd elements.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAPESTRY-2701) BeanDisplay formatting can be off in IE7 with short values

Posted by "Geoff Callender (JIRA)" <de...@tapestry.apache.org>.
    [ https://issues.apache.org/jira/browse/TAPESTRY-2701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638830#action_12638830 ] 

Geoff Callender commented on TAPESTRY-2701:
-------------------------------------------

Scratch that request - this problem occurs to the first <dd> element of every BeanDisplay I've tried in IE 7 regardless of its class.  
Eg. if the first <dd> has class="applesquantity" then I have to fix its layout with this css:

dl.t-beandisplay dd.applesquantity	{ display:inline; margin-left: 0px; }	// IE 7



> BeanDisplay formatting can be off in IE7 with short values
> ----------------------------------------------------------
>
>                 Key: TAPESTRY-2701
>                 URL: https://issues.apache.org/jira/browse/TAPESTRY-2701
>             Project: Tapestry
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.0.15
>            Reporter: Geoff Callender
>
> I'm seeing strange formatting of BeanDisplay by IE7.  An example is the "Id" line of this page, in which the dd element value is 1:
> 	http://202.177.217.122:8080/jumpstart/examples/output/easy
> I'm guessing IE7 has formatting issues with the dt/dd elements.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org