Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2602 Rev 2603
Line 640... Line 640...
640
	        	panneauSecondeColonne.doLayout();
640
	        	panneauSecondeColonne.doLayout();
Line 641... Line 641...
641
	        		        
641
	        		        
642
	        	htmllocalitePanel.doLayout();
642
	        	htmllocalitePanel.doLayout();
Line 643... Line 643...
643
	        	htmlPanel.doLayout();
643
	        	htmlPanel.doLayout();
Line 644... Line 644...
644
	        	
644
	        	
645
	        	redimensionnerChampsEtendus();
645
				redimensionnerChampsEtendus();
646
	        
646
	        
Line 750... Line 750...
750
				};
750
				};
751
				popUpAjoutChampEtendu.add(formChamp);
751
				popUpAjoutChampEtendu.add(formChamp);
752
				popUpAjoutChampEtendu.center();		
752
				popUpAjoutChampEtendu.center();		
753
				popUpAjoutChampEtendu.setModal(true);
753
				popUpAjoutChampEtendu.setModal(true);
754
				popUpAjoutChampEtendu.show();
754
				popUpAjoutChampEtendu.show();
-
 
755
				formChamp.redimensionner(popUpAjoutChampEtendu.getOffsetWidth() - 13);
755
			}
756
			}
756
		});
757
		});
757
	}
758
	}
Line 758... Line 759...
758
	
759
	
Line 1930... Line 1931...
1930
			t.schedule(150);
1931
			t.schedule(150);
1931
		} else {
1932
		} else {
1932
			for (Iterator<String> iterator = listeChampsEtendus.keySet().iterator(); iterator
1933
			for (Iterator<String> iterator = listeChampsEtendus.keySet().iterator(); iterator
1933
					.hasNext();) {
1934
					.hasNext();) {
1934
				ChampSaisieEtendu ch = listeChampsEtendus.get(iterator.next());
1935
				ChampSaisieEtendu ch = listeChampsEtendus.get(iterator.next());
1935
				ch.redimensionner(largeur - 15);		
1936
				ch.redimensionner(largeur - 15);	
-
 
1937
				if(ch.getFieldWidth() < ch.getLabelWidth()) {
-
 
1938
					cel2.LogVersFirebug(ch.getLabelText()+" : "+ch.getFieldWidth()+" < "+ch.getLabelWidth());
-
 
1939
					ch.addClass("panneauModePetiteLargeur");
-
 
1940
					ch.agrandirChamp(largeur - 82);
-
 
1941
				} else {
-
 
1942
					//ch.removeClass("panneauModePetiteLargeur");
-
 
1943
				}
1936
			}
1944
			}
1937
		}
1945
		}
1938
	}
1946
	}
Line 1939... Line 1947...
1939
 
1947