Bonjour,

J'essaie de construire un compositeField dans un formulaire.
Ce compositeField comprend un textField suivi d'un DisplayField, (3 fois)
Les exemples sont assez clairs ; mais je ne parviens pas à faire apparaitre le fieldlabel du textField comme il semble possible de le faire.

Voici la potion de code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
{items:[
	{xtype:'fieldset',title: 'Charges',collapsible:false, autoHeight:true, layout:'column',
            items:[
		{xtype: 'compositefield', columnWidth:.33, layout: 'form',
		items: [
		{xtype:'textfield',	fieldLabel: 'Charge prévisionnelle', width:50, name: 'C_P',value: '0'},
	       {xtype: 'displayfield', value: 'j/h'}	]
		},
		{xtype: 'compositefield',  columnWidth:.33, layout: 'form',
			items :[ {
               xtype:'textfield',fieldLabel: 'Charge actuelle', width:50, name: 'C_A',value: '0'},
               {xtype: 'displayfield', value: 'j/h'}			]
		},
		{xtype: 'compositefield', columnWidth:.33,layout: 'form',
		items :[
                  {xtype:'textfield',fieldLabel: 'Reste à Faire',width:50, name: 'RAF',value: '0'}, 
                {xtype: 'displayfield', value: 'j/h'}				]
		}
	 ]				}
	 				]	
			},
Quelqu'un sait-il comment faire ?

merci de votre aide