problems with applications under IE in build of 12-jul ?

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

problems with applications under IE in build of 12-jul ?

Doug Young

Hi,

 Yesterday I downloaded the nightly build so I could use some of the latest bug fixes.

I moved our PMP app across to the latest version (previously we were using a version from late June). So far everything looks good under firefox but not so good under IE.

It looks like under IE events are not being delivered when something changes. When you type in a box the code does not realize something has changed and also the save button no longer works.

The application is too big to attach but I have attached an xforms example that runs in the sand box. In the sandbox at orbeon.com it runs the same under IE and firefox, type something in the inpit box and then click outside the box and the message dirty appears.

However if I run it locally with the OPS from 12 July then under IE the message does not appear.

 

What is the version of OPS running in the sandbox ? Is it a day or two behind ?

 

 

cheers

  Doug

 

 

Doug Young

Software Engineer

 

Teleflex IT

1 Michaelson Square
Livingston
West Lothian
Scotland
EH54 7DP

+44 (0) 1506 407107

 



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

ex3.xml (3K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: problems with applications under IE in build of 12-jul ?

Erik Bruchez
Administrator
Doug,

I can reproduce this. I entered a high-priority bug:

http://forge.objectweb.org/tracker/index.php?func=detail&aid=305727&group_id=168&atid=350207

-Erik

Doug Young wrote:

> Hi,
>
>  Yesterday I downloaded the nightly build so I could use some of the
> latest bug fixes.
>
> I moved our PMP app across to the latest version (previously we were
> using a version from late June). So far everything looks good under
> firefox but not so good under IE.
>
> It looks like under IE events are not being delivered when something
> changes. When you type in a box the code does not realize something has
> changed and also the save button no longer works.
>
> The application is too big to attach but I have attached an xforms
> example that runs in the sand box. In the sandbox at orbeon.com it runs
> the same under IE and firefox, type something in the inpit box and then
> click outside the box and the message dirty appears.
>
> However if I run it locally with the OPS from 12 July then under IE the
> message does not appear.
>
>  
>
> What is the version of OPS running in the sandbox ? Is it a day or two
> behind ?
>
>  
>
>  
>
> cheers
>
>   Doug
>
>  
>
>  
>
> Doug Young
>
> Software Engineer
>
>  
>
> Teleflex IT
>
> 1 Michaelson Square
> Livingston
> West Lothian
> Scotland
> EH54 7DP
>
> +44 (0) 1506 407107
>
>  
>
>
> ------------------------------------------------------------------------
>
> <?xml version="1.0" encoding="UTF-8"?>
> <html xmlns:xs="http://www.w3.org/2001/XMLSchema"
>       xmlns:xforms="http://www.w3.org/2002/xforms"
>       xmlns:ev="http://www.w3.org/2001/xml-events"
>       xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
>       xmlns:xi="http://www.w3.org/2001/XInclude"
>       xmlns:xxi="http://orbeon.org/oxf/xml/xinclude"
>       xmlns:f="http://orbeon.org/oxf/xml/formatting"
>       xmlns:xhtml="http://www.w3.org/1999/xhtml"
>       xmlns="http://www.w3.org/1999/xhtml">
>
>     <head>
>         <xforms:model id="main-model">
>            
>
>             <xforms:setvalue ev:event="xforms-insert" ref="instance('control-instance')/data-status">dirty</xforms:setvalue>
>             <xforms:setvalue ev:event="xforms-delete" ref="instance('control-instance')/data-status">dirty</xforms:setvalue>
>          
>             <xforms:instance id="main-instance" >
>                 <stuff xmlns="">
>                     <s1>s1</s1>
>                 </stuff>
>             </xforms:instance>
>
>
>             <!-- Control instance -->
>             <xforms:instance id="control-instance">
>                 <control xmlns="">
>                     <data><d1>fred</d1></data>
>                     <save-trigger/>
>                     <data-status/>
>                     <save-progress/>
>                     <message/>            
>                 </control>
>             </xforms:instance>
>
>             <xforms:bind nodeset="instance('control-instance')">
>
>                 <!-- Data status -->
>                 <xforms:bind nodeset="data-status" relevant=". = 'dirty'"/>
>
>                 <!-- save trigger -->
>                 <xforms:bind nodeset="save-trigger" readonly="not(instance('control-instance')/data-status = 'dirty')"/>
>             </xforms:bind>
>
>             <!-- Save submission -->
>             <xforms:submission id="save-submission" ref="instance('main-instance')"
>                                method="post" replace="none" action="/xxx/xxx">
>   <!-- real submission code removed -->
>             </xforms:submission>
>
>         </xforms:model>
>
>     </head>
>    
>     <body>
>
>             <div>
>                 <xforms:group ref="instance('control-instance')" id="control-group">
>                     Messages:
>                     <xforms:switch>
>                         <xforms:case id="no-message">
>                         </xforms:case>
>                         <xforms:case id="save-success-message">
>                             <xforms:output xhtml:style="color: green" ref="message"></xforms:output>
>                         </xforms:case>
>                         <xforms:case id="save-validation-message">
>                             <xforms:output xhtml:style="color: orange" ref="message"></xforms:output>
>                         </xforms:case>
>                         <xforms:case id="save-error-message">
>                             <xforms:output xhtml:style="color: red" ref="message"></xforms:output>
>                         </xforms:case>
>                     </xforms:switch>
>                     <br/>
>                     <xforms:group ref="data-status">
>                         <xforms:output xhtml:style="color: green"/>
>                     </xforms:group>
>                 </xforms:group>
>             </div>
>
>
>
>        
>
>         <xforms:group ref="instance('control-instance')/data" id="data-group">
>             <xforms:input ref="d1">
>                 <xforms:label/>
>             </xforms:input>
>            
>             <xforms:setvalue ev:event="xforms-value-changed" ref="instance('control-instance')/data-status">dirty</xforms:setvalue>
>            
>             <xforms:toggle ev:event="DOMFocusIn" case="no-message"/>
>
>
>             <xforms:submit ref="instance('control-instance')/save-trigger" submission="save-submission">
>                 <xforms:label>SAVE</xforms:label>
>             </xforms:submit>
>
>
>         </xforms:group>
>
>     </body>
> </html>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: problems with applications under IE in build of 12-jul ?

Erik Bruchez
Administrator
Doug,

This bug is now fixed.

-Erik

Erik Bruchez wrote:

> Doug,
>
> I can reproduce this. I entered a high-priority bug:
>
> http://forge.objectweb.org/tracker/index.php?func=detail&aid=305727&group_id=168&atid=350207 
>
>
> -Erik
>
> Doug Young wrote:
>> Hi,
>>
>>  Yesterday I downloaded the nightly build so I could use some of the
>> latest bug fixes.
>>
>> I moved our PMP app across to the latest version (previously we were
>> using a version from late June). So far everything looks good under
>> firefox but not so good under IE.
>>
>> It looks like under IE events are not being delivered when something
>> changes. When you type in a box the code does not realize something
>> has changed and also the save button no longer works.
>>
>> The application is too big to attach but I have attached an xforms
>> example that runs in the sand box. In the sandbox at orbeon.com it
>> runs the same under IE and firefox, type something in the inpit box
>> and then click outside the box and the message dirty appears.
>>
>> However if I run it locally with the OPS from 12 July then under IE
>> the message does not appear.
>>
>>  
>>
>> What is the version of OPS running in the sandbox ? Is it a day or two
>> behind ?
>>
>>  
>>
>>  
>>
>> cheers
>>
>>   Doug
>>
>>  
>>
>>  
>>
>> Doug Young
>>
>> Software Engineer
>>
>>  
>>
>> Teleflex IT
>>
>> 1 Michaelson Square
>> Livingston
>> West Lothian
>> Scotland
>> EH54 7DP
>>
>> +44 (0) 1506 407107
>>
>>  
>>
>>
>> ------------------------------------------------------------------------
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <html xmlns:xs="http://www.w3.org/2001/XMLSchema"
>>       xmlns:xforms="http://www.w3.org/2002/xforms"
>>       xmlns:ev="http://www.w3.org/2001/xml-events"
>>       xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
>>       xmlns:xi="http://www.w3.org/2001/XInclude"
>>       xmlns:xxi="http://orbeon.org/oxf/xml/xinclude"
>>       xmlns:f="http://orbeon.org/oxf/xml/formatting"
>>       xmlns:xhtml="http://www.w3.org/1999/xhtml"
>>       xmlns="http://www.w3.org/1999/xhtml">
>>
>>     <head>
>>         <xforms:model id="main-model">
>>            
>>             <xforms:setvalue ev:event="xforms-insert"
>> ref="instance('control-instance')/data-status">dirty</xforms:setvalue>
>>             <xforms:setvalue ev:event="xforms-delete"
>> ref="instance('control-instance')/data-status">dirty</xforms:setvalue>
>>                       <xforms:instance id="main-instance" >
>>                 <stuff xmlns="">
>>                     <s1>s1</s1>
>>                 </stuff>
>>             </xforms:instance>
>>
>>
>>             <!-- Control instance -->
>>             <xforms:instance id="control-instance">
>>                 <control xmlns="">
>>                     <data><d1>fred</d1></data>
>>                     <save-trigger/>
>>                     <data-status/>
>>                     <save-progress/>
>>                     <message/>                            </control>
>>             </xforms:instance>
>>
>>             <xforms:bind nodeset="instance('control-instance')">
>>
>>                 <!-- Data status -->
>>                 <xforms:bind nodeset="data-status" relevant=". =
>> 'dirty'"/>
>>
>>                 <!-- save trigger -->
>>                 <xforms:bind nodeset="save-trigger"
>> readonly="not(instance('control-instance')/data-status = 'dirty')"/>
>>             </xforms:bind>
>>
>>             <!-- Save submission -->
>>             <xforms:submission id="save-submission"
>> ref="instance('main-instance')"
>>                                method="post" replace="none"
>> action="/xxx/xxx">
>>                                <!-- real submission code removed -->
>>             </xforms:submission>
>>
>>         </xforms:model>
>>
>>     </head>
>>         <body>
>>
>>             <div>
>>                 <xforms:group ref="instance('control-instance')"
>> id="control-group">
>>                     Messages:
>>                     <xforms:switch>
>>                         <xforms:case id="no-message">
>>                         </xforms:case>
>>                         <xforms:case id="save-success-message">
>>                             <xforms:output xhtml:style="color: green"
>> ref="message"></xforms:output>
>>                         </xforms:case>
>>                         <xforms:case id="save-validation-message">
>>                             <xforms:output xhtml:style="color: orange"
>> ref="message"></xforms:output>
>>                         </xforms:case>
>>                         <xforms:case id="save-error-message">
>>                             <xforms:output xhtml:style="color: red"
>> ref="message"></xforms:output>
>>                         </xforms:case>
>>                     </xforms:switch>
>>                     <br/>
>>                     <xforms:group ref="data-status">
>>                         <xforms:output xhtml:style="color: green"/>
>>                     </xforms:group>
>>                 </xforms:group>
>>             </div>
>>
>>
>>
>>        
>>         <xforms:group ref="instance('control-instance')/data"
>> id="data-group">
>>             <xforms:input ref="d1">
>>                 <xforms:label/>
>>             </xforms:input>
>>                         <xforms:setvalue
>> ev:event="xforms-value-changed"
>> ref="instance('control-instance')/data-status">dirty</xforms:setvalue>
>>                         <xforms:toggle ev:event="DOMFocusIn"
>> case="no-message"/>
>>
>>
>>             <xforms:submit
>> ref="instance('control-instance')/save-trigger"
>> submission="save-submission">
>>                 <xforms:label>SAVE</xforms:label>
>>             </xforms:submit>
>>
>>
>>         </xforms:group>
>>
>>     </body>
>> </html>
>>
>>
>> ------------------------------------------------------------------------
>>
>>
>> --
>> You receive this message as a subscriber of the
>> [hidden email] mailing list.
>> To unsubscribe: mailto:[hidden email]
>> For general help: mailto:[hidden email]?subject=help
>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>

--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws