Firefox + xforms:select1: odd behaviour

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

Firefox + xforms:select1: odd behaviour

StephR
I followed the example in the bookcast tutorial :

 <xforms:instance id="country-instance">
        <countries xmlns="">
          <country>
            <name>Algeria</name>
            <value>DZ</value>
          </country>
          <country>
            <name>Australia</name>
            <value>AU</value>
          </country>

[...]
in the model and


  <xforms:select1 ref="Country">
     <xforms:label class="profile-label">Country</xforms:label>
     <xforms:item>
       <xforms:label>Choose One...</xforms:label>
       <xforms:value/>
     </xforms:item>
     <xforms:itemset nodeset="instance('country-instance')/country">
       <xforms:label ref="name"/>
       <xforms:value ref="value"/>
     </xforms:itemset>
  </xforms:select1>

in the body. The ouput is fine. The strange behaviour is that with Firefox, the page will load, and everything appears, but Firefox will keep "loading" : I mean that the logo on the top right will keep turning and the "blue loading bar" down right stays blue instead of disappearing when in principle the client has closed the connection with the server. Firebug doesn't seem to say anything.

Any idea how to remove this... because it doesn't make my form really serious.

Thanks.


--
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
OW2 mailing lists service home page: http://www.ow2.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox + xforms:select1: odd behaviour

Erik Bruchez
Administrator
Mmmh, I have not seen that. How can this be reproduced?

-Erik

On Nov 28, 2007, at 4:05 PM, Stephane Ruchet wrote:

> I followed the example in the bookcast tutorial :
>
>  <xforms:instance id="country-instance">
>         <countries xmlns="">
>           <country>
>             <name>Algeria</name>
>             <value>DZ</value>
>           </country>
>           <country>
>             <name>Australia</name>
>             <value>AU</value>
>           </country>
>
> [...]
> in the model and
>
>
>   <xforms:select1 ref="Country">
>      <xforms:label class="profile-label">Country</xforms:label>
>      <xforms:item>
>        <xforms:label>Choose One...</xforms:label>
>        <xforms:value/>
>      </xforms:item>
>      <xforms:itemset nodeset="instance('country-instance')/country">
>        <xforms:label ref="name"/>
>        <xforms:value ref="value"/>
>      </xforms:itemset>
>   </xforms:select1>
>
> in the body. The ouput is fine. The strange behaviour is that with  
> Firefox, the page will load, and everything appears, but Firefox  
> will keep "loading" : I mean that the logo on the top right will  
> keep turning and the "blue loading bar" down right stays blue  
> instead of disappearing when in principle the client has closed the  
> connection with the server. Firebug doesn't seem to say anything.
>
> Any idea how to remove this... because it doesn't make my form  
> really serious.
>
> Thanks.
>
> --
> 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
> OW2 mailing lists service home page: http://www.ow2.org/wws
--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
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
OW2 mailing lists service home page: http://www.ow2.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Firefox + xforms:select1: odd behaviour

Park, Michael
In reply to this post by StephR

I’ve also noticed the progress bar in FF stays active when everything is complete.  However, it happens on a repeat for me.

 


From: Stephane Ruchet [mailto:[hidden email]]
Sent: Wednesday, November 28, 2007 7:06 PM
To: [hidden email]
Subject: [ops-users] Firefox + xforms:select1: odd behaviour

 

I followed the example in the bookcast tutorial :

 <xforms:instance id="country-instance">
        <countries xmlns="">
          <country>
            <name>Algeria</name>
            <value>DZ</value>
          </country>
          <country>
            <name>Australia</name>
            <value>AU</value>
          </country>

[...]
in the model and


  <xforms:select1 ref="Country">
     <xforms:label class="profile-label">Country</xforms:label>
     <xforms:item>
       <xforms:label>Choose One...</xforms:label>
       <xforms:value/>
     </xforms:item>
     <xforms:itemset nodeset="instance('country-instance')/country">
       <xforms:label ref="name"/>
       <xforms:value ref="value"/>
     </xforms:itemset>
  </xforms:select1>

in the body. The ouput is fine. The strange behaviour is that with Firefox, the page will load, and everything appears, but Firefox will keep "loading" : I mean that the logo on the top right will keep turning and the "blue loading bar" down right stays blue instead of disappearing when in principle the client has closed the connection with the server. Firebug doesn't seem to say anything.

Any idea how to remove this... because it doesn't make my form really serious.

Thanks.



--
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
OW2 mailing lists service home page: http://www.ow2.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox + xforms:select1: odd behaviour

StephR
In reply to this post by Erik Bruchez
Hi Erik,

Took me a while to find a bit more about this. Attached you have a file that you can test in the sandbox.

What I have observed :

  • With only one tab, only the select1 it will work fine
  • With two tabs, but the select1 tab selected first, it will load fine the first time. Indeed, click on the second tab, and then click again on the first one! You will see what I'm talking about !
  • With two tabs, but the select1 tab is NOT the first tab (i.e selected="true" is on the 2nd tab in the code, but you have to change this to see what I mean). As soon as I click on the select1 tab, it will not load fully.
It's quite annoying :(

Steph


Erik Bruchez a écrit :
Mmmh, I have not seen that. How can this be reproduced?

-Erik

On Nov 28, 2007, at 4:05 PM, Stephane Ruchet wrote:

I followed the example in the bookcast tutorial :

 <xforms:instance id="country-instance">
        <countries xmlns="">
          <country>
            <name>Algeria</name>
            <value>DZ</value>
          </country>
          <country>
            <name>Australia</name>
            <value>AU</value>
          </country>

[...]
in the model and


  <xforms:select1 ref="Country">
     <xforms:label class="profile-label">Country</xforms:label>
     <xforms:item>
       <xforms:label>Choose One...</xforms:label>
       <xforms:value/>
     </xforms:item>
     <xforms:itemset nodeset="instance('country-instance')/country">
       <xforms:label ref="name"/>
       <xforms:value ref="value"/>
     </xforms:itemset>
  </xforms:select1>

in the body. The ouput is fine. The strange behaviour is that with Firefox, the page will load, and everything appears, but Firefox will keep "loading" : I mean that the logo on the top right will keep turning and the "blue loading bar" down right stays blue instead of disappearing when in principle the client has closed the connection with the server. Firebug doesn't seem to say anything.

Any idea how to remove this... because it doesn't make my form really serious.

Thanks.

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

--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
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
OW2 mailing lists service home page: http://www.ow2.org/wws

test.xhtml (7K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Firefox + xforms:select1: odd behaviour

Erik Bruchez
Administrator
Steph,

What's more annoying is that I can't reproduce this. I seem to be able  
to go back and forth just fine between the tabs, and change the value  
of the select1, whether the first tab or the second tab is selected by  
default.

I am using Firefox 2.0.0.10 on Mac OS X.

-Erik

On Nov 29, 2007, at 7:46 AM, Stephane Ruchet wrote:

> Hi Erik,
>
> Took me a while to find a bit more about this. Attached you have a  
> file that you can test in the sandbox.
>
> What I have observed :
>   • With only one tab, only the select1 it will work fine
> • With two tabs, but the select1 tab selected first, it will load  
> fine the first time. Indeed, click on the second tab, and then click  
> again on the first one! You will see what I'm talking about !
> • With two tabs, but the select1 tab is NOT the first tab (i.e  
> selected="true" is on the 2nd tab in the code, but you have to  
> change this to see what I mean). As soon as I click on the select1  
> tab, it will not load fully.
> It's quite annoying :(
>
> Steph
>
>
> Erik Bruchez a écrit :
>>
>> Mmmh, I have not seen that. How can this be reproduced?
>>
>> -Erik
>>
>> On Nov 28, 2007, at 4:05 PM, Stephane Ruchet wrote:
>>
>>> I followed the example in the bookcast tutorial :
>>>
>>>  <xforms:instance id="country-instance">
>>>         <countries xmlns="">
>>>           <country>
>>>             <name>Algeria</name>
>>>             <value>DZ</value>
>>>           </country>
>>>           <country>
>>>             <name>Australia</name>
>>>             <value>AU</value>
>>>           </country>
>>>
>>> [...]
>>> in the model and
>>>
>>>
>>>   <xforms:select1 ref="Country">
>>>      <xforms:label class="profile-label">Country</xforms:label>
>>>      <xforms:item>
>>>        <xforms:label>Choose One...</xforms:label>
>>>        <xforms:value/>
>>>      </xforms:item>
>>>      <xforms:itemset nodeset="instance('country-instance')/country">
>>>        <xforms:label ref="name"/>
>>>        <xforms:value ref="value"/>
>>>      </xforms:itemset>
>>>   </xforms:select1>
>>>
>>> in the body. The ouput is fine. The strange behaviour is that with  
>>> Firefox, the page will load, and everything appears, but Firefox  
>>> will keep "loading" : I mean that the logo on the top right will  
>>> keep turning and the "blue loading bar" down right stays blue  
>>> instead of disappearing when in principle the client has closed  
>>> the connection with the server. Firebug doesn't seem to say  
>>> anything.
>>>
>>> Any idea how to remove this... because it doesn't make my form  
>>> really serious.
>>>
>>> Thanks.
>>>
>>> --
>>> 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
>>> OW2 mailing lists service home page: http://www.ow2.org/wws
>>
>> --
>> Orbeon Forms - Web Forms for the Enterprise Done the Right Way
>> http://www.orbeon.com/
>>
> <test.xhtml>
> --
> 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
> OW2 mailing lists service home page: http://www.ow2.org/wws
--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
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
OW2 mailing lists service home page: http://www.ow2.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox + xforms:select1: odd behaviour

Erik Bruchez
Administrator
In reply to this post by StephR
Steph,

What's more annoying is that I can't reproduce this. I seem to be able  
to go back and forth just fine between the tabs, and change the value  
of the select1, whether the first tab or the second tab is selected by  
default.

I am using Firefox 2.0.0.10 on Mac OS X.

-Erik

On Nov 29, 2007, at 7:46 AM, Stephane Ruchet wrote:

> Hi Erik,
>
> Took me a while to find a bit more about this. Attached you have a  
> file that you can test in the sandbox.
>
> What I have observed :
> • With only one tab, only the select1 it will work fine
> • With two tabs, but the select1 tab selected first, it will load  
> fine the first time. Indeed, click on the second tab, and then click  
> again on the first one! You will see what I'm talking about !
> • With two tabs, but the select1 tab is NOT the first tab (i.e  
> selected="true" is on the 2nd tab in the code, but you have to  
> change this to see what I mean). As soon as I click on the select1  
> tab, it will not load fully.
> It's quite annoying :(
>
> Steph
>
>
> Erik Bruchez a écrit :
>>
>> Mmmh, I have not seen that. How can this be reproduced?
>>
>> -Erik
>>
>> On Nov 28, 2007, at 4:05 PM, Stephane Ruchet wrote:
>>
>>> I followed the example in the bookcast tutorial :
>>>
>>> <xforms:instance id="country-instance">
>>>        <countries xmlns="">
>>>          <country>
>>>            <name>Algeria</name>
>>>            <value>DZ</value>
>>>          </country>
>>>          <country>
>>>            <name>Australia</name>
>>>            <value>AU</value>
>>>          </country>
>>>
>>> [...]
>>> in the model and
>>>
>>>
>>>  <xforms:select1 ref="Country">
>>>     <xforms:label class="profile-label">Country</xforms:label>
>>>     <xforms:item>
>>>       <xforms:label>Choose One...</xforms:label>
>>>       <xforms:value/>
>>>     </xforms:item>
>>>     <xforms:itemset nodeset="instance('country-instance')/country">
>>>       <xforms:label ref="name"/>
>>>       <xforms:value ref="value"/>
>>>     </xforms:itemset>
>>>  </xforms:select1>
>>>
>>> in the body. The ouput is fine. The strange behaviour is that with  
>>> Firefox, the page will load, and everything appears, but Firefox  
>>> will keep "loading" : I mean that the logo on the top right will  
>>> keep turning and the "blue loading bar" down right stays blue  
>>> instead of disappearing when in principle the client has closed  
>>> the connection with the server. Firebug doesn't seem to say  
>>> anything.
>>>
>>> Any idea how to remove this... because it doesn't make my form  
>>> really serious.
>>>
>>> Thanks.
>>>
>>> --
>>> 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
>>> OW2 mailing lists service home page: http://www.ow2.org/wws
>>
>> --
>> Orbeon Forms - Web Forms for the Enterprise Done the Right Way
>> http://www.orbeon.com/
>>
> <test.xhtml>
> --
> 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
> OW2 mailing lists service home page: http://www.ow2.org/wws
--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
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
OW2 mailing lists service home page: http://www.ow2.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox + xforms:select1: odd behaviour

StephR
In reply to this post by Erik Bruchez
I confirm what you have said Erik, a friend tested in on a mac, and I tested it on Vista + Firefox 2.0.0.7 and it works.

I'm working on XP with Firefox 2.0.0.10... I don't understand.

I will try on some other computers later on. Just to be sure, everything "works" fine.. it's just that Firefox indicates that he is still loading "something"! The circle up right is turning, the progress bar doesn't disappear.

:(





Steph



Erik Bruchez a écrit :
Steph,

What's more annoying is that I can't reproduce this. I seem to be able to go back and forth just fine between the tabs, and change the value of the select1, whether the first tab or the second tab is selected by default.

I am using Firefox 2.0.0.10 on Mac OS X.

-Erik

On Nov 29, 2007, at 7:46 AM, Stephane Ruchet wrote:

Hi Erik,

Took me a while to find a bit more about this. Attached you have a file that you can test in the sandbox.

What I have observed :
     • With only one tab, only the select1 it will work fine
    • With two tabs, but the select1 tab selected first, it will load fine the first time. Indeed, click on the second tab, and then click again on the first one! You will see what I'm talking about !
    • With two tabs, but the select1 tab is NOT the first tab (i.e selected="true" is on the 2nd tab in the code, but you have to change this to see what I mean). As soon as I click on the select1 tab, it will not load fully.
It's quite annoying :(

Steph


Erik Bruchez a écrit :

Mmmh, I have not seen that. How can this be reproduced?

-Erik

On Nov 28, 2007, at 4:05 PM, Stephane Ruchet wrote:

I followed the example in the bookcast tutorial :

 <xforms:instance id="country-instance">
        <countries xmlns="">
          <country>
            <name>Algeria</name>
            <value>DZ</value>
          </country>
          <country>
            <name>Australia</name>
            <value>AU</value>
          </country>

[...]
in the model and


  <xforms:select1 ref="Country">
     <xforms:label class="profile-label">Country</xforms:label>
     <xforms:item>
       <xforms:label>Choose One...</xforms:label>
       <xforms:value/>
     </xforms:item>
     <xforms:itemset nodeset="instance('country-instance')/country">
       <xforms:label ref="name"/>
       <xforms:value ref="value"/>
     </xforms:itemset>
  </xforms:select1>

in the body. The ouput is fine. The strange behaviour is that with Firefox, the page will load, and everything appears, but Firefox will keep "loading" : I mean that the logo on the top right will keep turning and the "blue loading bar" down right stays blue instead of disappearing when in principle the client has closed the connection with the server. Firebug doesn't seem to say anything.

Any idea how to remove this... because it doesn't make my form really serious.

Thanks.

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

-- 
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/

<test.xhtml>
--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: [hidden email]
For general help: [hidden email]
OW2 mailing lists service home page: http://www.ow2.org/wws

--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
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
OW2 mailing lists service home page: http://www.ow2.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox + xforms:select1: odd behaviour

Erik Bruchez
Administrator
Did you try clearing your browser cache on that XP machine?

-Erik

On Dec 1, 2007, at 3:24 AM, Stephane Ruchet wrote:

> I confirm what you have said Erik, a friend tested in on a mac, and  
> I tested it on Vista + Firefox 2.0.0.7 and it works.
>
> I'm working on XP with Firefox 2.0.0.10... I don't understand.
>
> I will try on some other computers later on. Just to be sure,  
> everything "works" fine.. it's just that Firefox indicates that he  
> is still loading "something"! The circle up right is turning, the  
> progress bar doesn't disappear.
>
> :(
>
>
>
>
>
> Steph
>
>
>
> Erik Bruchez a écrit :
>>
>> Steph,
>>
>> What's more annoying is that I can't reproduce this. I seem to be  
>> able to go back and forth just fine between the tabs, and change  
>> the value of the select1, whether the first tab or the second tab  
>> is selected by default.
>>
>> I am using Firefox 2.0.0.10 on Mac OS X.
>>
>> -Erik
>>
>> On Nov 29, 2007, at 7:46 AM, Stephane Ruchet wrote:
>>
>>> Hi Erik,
>>>
>>> Took me a while to find a bit more about this. Attached you have a  
>>> file that you can test in the sandbox.
>>>
>>> What I have observed :
>>>      • With only one tab, only the select1 it will work fine
>>>     • With two tabs, but the select1 tab selected first, it will  
>>> load fine the first time. Indeed, click on the second tab, and  
>>> then click again on the first one! You will see what I'm talking  
>>> about !
>>>     • With two tabs, but the select1 tab is NOT the first tab (i.e  
>>> selected="true" is on the 2nd tab in the code, but you have to  
>>> change this to see what I mean). As soon as I click on the select1  
>>> tab, it will not load fully.
>>> It's quite annoying :(
>>>
>>> Steph
>>>
>>>
>>> Erik Bruchez a écrit :
>>>>
>>>> Mmmh, I have not seen that. How can this be reproduced?
>>>>
>>>> -Erik
>>>>
>>>> On Nov 28, 2007, at 4:05 PM, Stephane Ruchet wrote:
>>>>
>>>>> I followed the example in the bookcast tutorial :
>>>>>
>>>>>  <xforms:instance id="country-instance">
>>>>>         <countries xmlns="">
>>>>>           <country>
>>>>>             <name>Algeria</name>
>>>>>             <value>DZ</value>
>>>>>           </country>
>>>>>           <country>
>>>>>             <name>Australia</name>
>>>>>             <value>AU</value>
>>>>>           </country>
>>>>>
>>>>> [...]
>>>>> in the model and
>>>>>
>>>>>
>>>>>   <xforms:select1 ref="Country">
>>>>>      <xforms:label class="profile-label">Country</xforms:label>
>>>>>      <xforms:item>
>>>>>        <xforms:label>Choose One...</xforms:label>
>>>>>        <xforms:value/>
>>>>>      </xforms:item>
>>>>>      <xforms:itemset nodeset="instance('country-instance')/
>>>>> country">
>>>>>        <xforms:label ref="name"/>
>>>>>        <xforms:value ref="value"/>
>>>>>      </xforms:itemset>
>>>>>   </xforms:select1>
>>>>>
>>>>> in the body. The ouput is fine. The strange behaviour is that  
>>>>> with Firefox, the page will load, and everything appears, but  
>>>>> Firefox will keep "loading" : I mean that the logo on the top  
>>>>> right will keep turning and the "blue loading bar" down right  
>>>>> stays blue instead of disappearing when in principle the client  
>>>>> has closed the connection with the server. Firebug doesn't seem  
>>>>> to say anything.
>>>>>
>>>>> Any idea how to remove this... because it doesn't make my form  
>>>>> really serious.
>>>>>
>>>>> Thanks.
>>>>>
>>>>> --
>>>>> You receive this message as a subscriber of the ops-
>>>>> [hidden email] mailing list.
>>>>> To unsubscribe: mailto:[hidden email]
>>>>> For general help: mailto:[hidden email]?subject=help
>>>>> OW2 mailing lists service home page: http://www.ow2.org/wws
>>>>
>>>> --
>>>> Orbeon Forms - Web Forms for the Enterprise Done the Right Way
>>>> http://www.orbeon.com/
>>>>
>>> <test.xhtml>
>>> --
>>> 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
>>> OW2 mailing lists service home page: http://www.ow2.org/wws
>>
>> --
>> Orbeon Forms - Web Forms for the Enterprise Done the Right Way
>> http://www.orbeon.com/
>>
>
> --
> 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
> OW2 mailing lists service home page: http://www.ow2.org/wws
--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
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
OW2 mailing lists service home page: http://www.ow2.org/wws