Explorer 5.5 on Windows 2000

View: New views
6 Messages — Rating Filter:   Alert me  

Explorer 5.5 on Windows 2000

by alemaj :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


I have a problem on a Windows 2000 client with Internet Explorer 5.5.
In my application all is working correctly for almost all my clients,
but this one doesn't work.
Do you have any feedback about problems with a configuration like
this?
As the software is working over all other clients I think it wouldn't
be a problem on the use I do of Behaviour.js.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Behaviour Javascript Library" group.
To post to this group, send email to behaviour@...
To unsubscribe from this group, send email to behaviour-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/behaviour?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Explorer 5.5 on Windows 2000

by Jesdisciple :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The different IEs comply with the standards to different degrees.  They are slowly getting better but copies of the earlier versions will never improve.  But, since IE5 is still in considerable use, I doubt you want to just ignore it, so what's the problem it's giving you?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Behaviour Javascript Library" group.
To post to this group, send email to behaviour@...
To unsubscribe from this group, send email to behaviour-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/behaviour?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Explorer 5.5 on Windows 2000

by alemaj :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


I use Struts and the following is my code; if you have any suggestion
I will be happy to pay attention to it:

var ImportiRiapertura = {
                'input.coperturaColpita': function(el){
                        el.onchange = function(){
                                el.value = Money.fmt(el.value);
                                controvaloreRiapertura(el.name, el.value);
                                totaleRiserveRiaperturaCC();
                        }
                }
        }

        function totaleRiserveRiaperturaCC(){
                var myAjax = new Ajax.Updater(
                        {success: 'riserve_riapertura_cc_totale'},
                        'riapertura/totaleRiserveRiaperturaCC.do',
                        { method: 'post', parameters: Form.serialize('riaperturaForm')}
                );
        }

       function controvaloreRiapertura(id, value) {
                var myAjax = new Ajax.Updater(
                        {success: id+'ControvaloreRiapertura'},
                        'controvalore.do',
                        { method: 'post', parameters: Form.serialize('riaperturaForm')+
'&importo='+value,onFailure: reportControvaloreRiaperturaError}
                );
        }


Into the jsp I have written:

           ......

                                       <td class="sizeCol4"
align="center">
                                                <input class='ammontare coperturaColpita <c:out value="$
{borderClass}"/>'
                                                        type='text'
                                                        tabindex=<c:out value="${tabindex}"/>
                                                        name='coperture[<c:out value="${i.index}"/>].ammontare'
                                                        value='<c:out value="${coperturaColpita.ammontare}"/>'
                                                        maxlength='15' size = '22' />
                                                <span class="value">
                                                        <b><c:out value="${coperturaColpita.iso}"/></b>
                                                </span>
                                        </td>

         .......

        <tr id="riserve_riapertura_cc_totale">
                <c:import url="/jsp/riapertura/totaleRiserveRiaperturaCC.jsp"/>
        </tr>


        Behaviour.register(ImportiRiapertura);

On May 29, 2:43 pm, Chris <jesdisci...@...> wrote:
> The different IEs comply with the standards to different degrees.  They are
> slowly getting better but copies of the earlier versions will never
> improve.  But, since IE5 is still in considerable use, I doubt you want to
> jus t ignore it, so what's the problem it's giving you?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Behaviour Javascript Library" group.
To post to this group, send email to behaviour@...
To unsubscribe from this group, send email to behaviour-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/behaviour?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Explorer 5.5 on Windows 2000

by Jesdisciple :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Could I get the output from that page as Firefox sees it?  (Because I can't get to my server right now and couldn't depend on it to be the same as yours anyway.  And I have known IE to modify HTML before.)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Behaviour Javascript Library" group.
To post to this group, send email to behaviour@...
To unsubscribe from this group, send email to behaviour-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/behaviour?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Explorer 5.5 on Windows 2000

by alemaj :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Coperture Colpite
--------------------------------------------------------------------------------


Garanzia                                    Data               Stato
Copertura                   Importi Riserva              Tipo
Cid             Sottotipo Cid                   Stanza
R.C.A. Veicolo  (VEICOLO)  18/02/2008
ANNULLATA                      I__________I    EUR
N                 NON PREVISTO

 
Totale Riserve: 0,00 EUR

This is how the application looks like.
The textfiled in the column ImportiRiserva is the one named
'coperture[<c:out value="${i.index}"/>].ammontare'  in the code I
posted before.
When you end to digit the amount, the total must be updated by the
AJAX call....and it works always but with this client!!!!

Thank You!

On May 29, 4:07 pm, Chris <jesdisci...@...> wrote:
> Could I get the output from that page as Firefox sees it?  (Because I can't
> get to my server right now and couldn't depend on it to be the same as yours
> anyway.  And I have known IE to modify HTML before.)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Behaviour Javascript Library" group.
To post to this group, send email to behaviour@...
To unsubscribe from this group, send email to behaviour-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/behaviour?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Explorer 5.5 on Windows 2000

by alemaj :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


I'm sorry the layout in my post was very bad!!!Anyway, it looks like
this:

                        Importi Riserva
                         I__________I    EUR

                         I__________I    EUR

Totale Riserve:               0,00 EUR



On May 29, 5:08 pm, alemaj <alessandro.maj...@...> wrote:

> Coperture Colpite
> --------------------------------------------------------------------------------
>
> Garanzia                                    Data               Stato
> Copertura                   Importi Riserva              Tipo
> Cid             Sottotipo Cid                   Stanza
> R.C.A. Veicolo  (VEICOLO)  18/02/2008
> ANNULLATA                      I__________I    EUR
> N                 NON PREVISTO
>
> Totale Riserve: 0,00 EUR
>
> This is how the application looks like.
> The textfiled in the column ImportiRiserva is the one named
> 'coperture[<c:out value="${i.index}"/>].ammontare'  in the code I
> posted before.
> When you end to digit the amount, the total must be updated by the
> AJAX call....and it works always but with this client!!!!
>
> Thank You!
>
> On May 29, 4:07 pm, Chris <jesdisci...@...> wrote:
>
> > Could I get the output from that page as Firefox sees it?  (Because I can't
> > get to my server right now and couldn't depend on it to be the same as yours
> > anyway.  And I have known IE to modify HTML before.)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Behaviour Javascript Library" group.
To post to this group, send email to behaviour@...
To unsubscribe from this group, send email to behaviour-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/behaviour?hl=en
-~----------~----~----~----~------~----~------~--~---

LightInTheBox - Buy quality products at wholesale price