Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 949 Rev 974
Line 425... Line 425...
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();
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
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
430
			if (!cle.startsWith("gxt."))	{
430
			if (!cle.startsWith("gxt.")&&!cle.matches("^_.+_$"))	{
431
				post += getPrefixe() + "_" +  cle + "=" + URL.encodeComponent(renvoyerValeurCorrecte(cle));
431
				post += getPrefixe() + "_" +  cle + "=" + URL.encodeComponent(renvoyerValeurCorrecte(cle));
432
				if (it.hasNext())	{
432
				if (it.hasNext())	{
433
					post += "&";
433
					post += "&";
434
				}
434
				}