[
https://issues.apache.org/jira/browse/OFBIZ-3450?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12869501#action_12869501
]
Sascha Rodekamp edited comment on OFBIZ-3450 at 5/20/10 2:58 AM:
-----------------------------------------------------------------
Salut Jacques,
so last night i create a little (quiet simple) patch for the lost Session
Problem. Yesterday it was to late to submit it ;-) but here it is.
@Ankit/ Atul
I found a little IE Bug not a big deal but for learning:
If you create a Prototype new Element Object and try to define a class for the
element, like:
{code:xml}
var nE = new Element ('DIV'), {
id: 'something'
class: 'cssClass'
});
{/code}
It won't work in IE because the IE thinks you mean a JavaScript class and not
an element attribute.
So you have to create the Object and then add the css class with
setAttribute('class', 'cssClass');. For IE7 and 6 the Attribute Key is
className not class :-)
So not a big deal, just for your Information.
Have a nice day everybody.
Sascha
was (Author: sascha):
Salut Jacques,
so last night i create a little (quiet simple) patch for the lost Session
Problem. Yesterday it was to late to submit it ;-) but here it is.
@Ankit/ Atul
I found a little IE Bug not a big deal but for learning:
If you create a Prototype new Element Object and try to define a class for the
element, like:
{code:xml}
... new Element ('DIV'), {
id: 'something'
class: 'cssClass'
});
{/code}
It won't work in IE because the IE thinks you mean a JavaScript class and not
an element attribute.
So you have to create the Object and then add the css class with
setAttribute('class', 'cssClass');. For IE7 and 6 the Attribute Key is
className not class :-)
So not a big deal, just for your Information.
Have a nice day everybody.
Sascha
> When you get disconnected (time out) from a layered lookup, you then get
> afterward ugly screens
> -----------------------------------------------------------------------------------------------
>
> Key: OFBIZ-3450
> URL: https://issues.apache.org/jira/browse/OFBIZ-3450
> Project: OFBiz
> Issue Type: Sub-task
> Reporter: Jacques Le Roux
> Assignee: Jacques Le Roux
> Priority: Minor
> Attachments: OFBIZ-3450_SessionProblem.patch
>
>
> When user session is destroyed: Log into an application (accounting for
> example) and select a form - layered lookups work correct. In another tab log
> into another application and then log out. Then on the first tab (accounting)
> try to use a lookup. In the lookup screen you will get the login screen
> (that's OK) but once you enter your username and password you get a blank
> screen.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.