Subversion Repositories eFlore/Applications.coel

Rev

Rev 793 | Rev 848 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 793 Rev 826
Line 424... Line 424...
424
		Collection<String> cles = proprietees.keySet();
424
		Collection<String> cles = proprietees.keySet();
425
		Iterator<String> it = cles.iterator();
425
		Iterator<String> it = cles.iterator();
Line 426... Line 426...
426
		
426
		
427
		while (it.hasNext())	{
427
		while (it.hasNext())	{
-
 
428
			String cle = it.next();
-
 
429
			//Les Radio Box couplées à la fonction autobind créer des variables gxt.RadioGroup.X, qu'il ne faut pas mettre dans la requête
428
			String cle = it.next();
430
			if (!cle.startsWith("gxt."))	{
429
			post += getPrefixe() + "_" +  cle + "=" + URL.encodeComponent(renvoyerValeurCorrecte(cle));
431
				post += getPrefixe() + "_" +  cle + "=" + URL.encodeComponent(renvoyerValeurCorrecte(cle));
430
			if (it.hasNext())	{
432
				if (it.hasNext())	{
-
 
433
					post += "&";
431
				post += "&";
434
				}
432
			}
435
			}
Line 433... Line 436...
433
		}
436
		}
434
		
437