pombreda / pythea-levi

Automatically exported from code.google.com/p/pythea-levi
0 stars 0 forks source link

Foutmeldingen in /client/register #22

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Login als hans.then XX
2. Klik op mijn gegevens
3. Vul een ongeldig tel. nr en klik op submit
4. Er verschijnt nu een foutmelding
5. Corrigeer het telefoonnummer en klik op submit

What is the expected output? What do you see instead?
Ik had verwacht dat de foutmelding zou verdwijnen, maar dit is niet het geval.

Please use labels and text to provide additional information.

Original issue reported on code.google.com by hans.t...@gmail.com on 5 Jun 2012 at 6:16

GoogleCodeExporter commented 9 years ago
Er gaat iets mis in $.address.value(location). De address module geeft een 
foutmelding Uncaught TypeError, cannot call method toString on null. Het is 
geminfied, dus debuggen van de address module is lastig. 

Original comment by hans.t...@gmail.com on 5 Jun 2012 at 6:38

GoogleCodeExporter commented 9 years ago
Misschien dat het probleem in de ajax call zit na een submit form. Als de 
locatie leeg is in het antwoord, wordt alsnog een redirect gedaan na die lege 
locatie.

96              if (location) {
                    //snip
                } else {
                    $("#"+target).html(data);
                    $.address.value(location);
                    appLoading(false);
                }
            },

Original comment by hans.t...@gmail.com on 5 Jun 2012 at 6:52

GoogleCodeExporter commented 9 years ago

Original comment by hans.t...@gmail.com on 5 Jun 2012 at 6:56

GoogleCodeExporter commented 9 years ago
Foutmeldingen verdwijnen nu door een forced refresh, maar dit heeft ook impact 
op de appStatus.
Moet dus nog getest worden.

Original comment by dkruyth...@gmail.com on 5 Jun 2012 at 9:11

GoogleCodeExporter commented 9 years ago
Probleem zit in de address module. Die wil geen $.address(location) accepteren 
naar dezelfde locatie als waar de address module denkt zich te bevinden. T 
maakt hem niet uit dat de ene keer een post was en de andere keer een get. Enig 
idee voor een oplossing?

Original comment by hans.t...@gmail.com on 5 Jun 2012 at 10:21

GoogleCodeExporter commented 9 years ago
Oplossing: als location hetzelfde is als het oude address, dan doen we een 
$.address.update()

Original comment by hans.t...@gmail.com on 5 Jun 2012 at 10:34

GoogleCodeExporter commented 9 years ago

Original comment by hans.t...@gmail.com on 3 Sep 2012 at 7:38