Bonjour,

Version ext : 4.0.7

Dans le programme qui suit, je donne aux utilisateurs le moyen de saisir de nouveaux objets appelés PRT.
Une liste de ces PRT est fournie à gauche de la page dans une grid.
Ce que je souhaite faire : c'est faire apparaitre le nouveau PRT créé dans cette grille quand l'utilisateur clique sur le bouton créer.
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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
 
function Saisie_PRT()
{
	Ext.onReady(function(){
 
    Ext.QuickTips.init();
	var myData;
	var data_etat = new Ext.data.SimpleStore({
		fields: ['code_E','lib_E'],
		data: [["1","Abandonné"],["2","Clos"],["3","En cours"],["4","Demandé"],["5","Refusé"], ["6","Suspendu"], ["7","Initialisation"], ["8","Supprimé"]] });
	var data_typo = new Ext.data.SimpleStore({
		fields: ['code_T','lib_T'],
		data: [["1","Maintenance"],["2","Projets Autres"],["3","Projets Plan"],["4","Récurrent"],["5","Etudes"],["6","Sujets Prévisionnels"]] });
 
	function Remplit_DS() {
		Ext.Ajax.request({
			url: 'Ajax_List_prt.php',
			method:"POST",
			async:false,
			success: function(result) {
				myData = {records : Ext.JSON.decode(result.responseText) }},
			failure: function (result) { 
				Ext.MessageBox.alert('Problème de récupération des prt', result.responseText) }
												})
	};
	Remplit_DS();
	var ds = Ext.create('Ext.data.JsonStore', {
		fields: [
				{name: 'Code_PRT', mapping : 'Code_PRT'},
				{name: 'Libelle_PRT', mapping : 'Libelle_PRT'},
				{name: 'Libelle_etat', mapping : 'Libelle_etat'},
				{name: 'Libelle_typo', mapping : 'Libelle_typo'}
				],
		data: myData.records	})
 
   	var gridForm = Ext.create('Ext.form.Panel', {
        id: 'prt',
        frame: true,
        title: 'Projets',
        bodyPadding: 5,
        width: 1070,
        layout: 'column',  
        fieldDefaults: {
            labelAlign: 'left',
            msgTarget: 'side'
        },
 
        items: [{
            columnWidth: 0.56,
            xtype: 'gridpanel',
	    id:'gp_prt',
            store: ds,
            height: 300,
            title:'Liste des PRT',
            columns: [
{id : 'Code_PRT', header: "Code PRT", width: 72, sortable: true, dataIndex: 'Code_PRT'},
{header: "Nom PRT", width: 310, sortable: true, dataIndex: 'Libelle_PRT'},
{header: "Etat PRT", width: 78, sortable: true, dataIndex: 'Libelle_etat'},
{header: "Typologie", width: 109, sortable: true, dataIndex: 'Libelle_typo'}
            ],
 
            listeners: {
                selectionchange: function(model, records) {
                    if (records[0]) {
						Ext.getCmp('Code').setValue(records[0].data[0]);
						Ext.getCmp('Lib').setValue(records[0].data[1]);
	Ext.getCmp('Mo').enable();
	Ext.getCmp('Raz').enable();
	Ext.getCmp('Cr').disable()
                    }
                }
            }
        }, {
            columnWidth: 0.44,
            margin: '0 0 0 10',
            xtype: 'fieldset',
            title:'Créer, Modifier un PRT',
            defaults: {
                width: 430,
                labelWidth: 60
            },
            defaultType: 'textfield',
            items: [{
                fieldLabel: 'Code',
				id:'Code',
				maskRe: /[A-Z0-9]/,
				maxLength:4,
				validator : function(value){
				var prt_expr = new RegExp(/[A-Z][A-Z0-9]{3}$/);
				Ok = prt_expr.test(value);
				if (Ok ) {Ext.getCmp('Cr').enable()}
				else {Ext.getCmp('Cr').disable()};
				return Ok 
    								}
            },{
                fieldLabel: 'Libellé',
				id:'Lib',
                name: 'Libellé',
				maskRe: /[A-Z0-9 -.:*//]/,
				maxLength:50
            },{
				xtype: 'combo',
                fieldLabel: 'Etat',
				id:'Etat',
                name: 'Etat',
				hiddenName: 'Etat',
				store: data_etat,
				displayField: 'lib_E',
				valueField: 'code_E',
				selectOnFocus: true,
				mode: 'local',
				typeAhead: true,
				editable: true,
				triggerAction: 'all',
				value : ''
			},{
				xtype: 'combo',
                fieldLabel: 'Typologie',
				id:'typo',
                name: 'typo',
				store: data_typo,
				displayField: 'lib_T',
				valueField: 'code_T',
				selectOnFocus: true,
				mode: 'local',
				typeAhead: true,
				editable: true,
				triggerAction: 'all',
				value : ''
			}
 
                ]
        }
		],
			buttons: ['->', {
            text: '<b>Créer</b>',
			id:'Cr',
			disabled : true,
			handler: function() {
				Ext.Ajax.request({
				url: 'Ajax_crea_prt.php',
				async:false,
				method:"POST",
				success: function(result,request) {
					if (result.responseText == 'OK') {
						Remplit_DS();
						// insertion dans la nomenclature
						Ext.Ajax.request({
							url: 'Ajax_crea_SQL_prt.php',
							async:false,
							method:"POST",
							success: function(result,request) {if (result.responseText != 'OK') {
	Ext.MessageBox.show( {
		minWidth:200,
		icon: Ext.MessageBox.ERROR,
		msg:'PRT déjà existant dans la nomenclature!', buttons:Ext.MessageBox.OK})		}	},
		failure: function (result, request) { 	Ext.MessageBox.alert('Problème enregistrement PRT Nomenclature', result.responseText) },
params: {code:Ext.getCmp('Code').getValue(), 
lib:Ext.getCmp('Lib').getValue(), eta:Ext.getCmp('Etat').getValue()}
	});
 
var p = Ext.getCmp('gp_prt').getStore(); 
 
p.loadData(myData);														}
	else
	{
	Ext.MessageBox.show( {
	        minWidth:200,
	        icon: Ext.MessageBox.ERROR,
		msg:'ce code PRT existe déjà !',
		buttons: Ext.MessageBox.OK})
		};
	Ext.getCmp('Raz').enable()
														},
failure: function (result, request) { 
Ext.MessageBox.alert('Problème enregistrement PRT', result.responseText); },
params: {	code:Ext.getCmp('Code').getValue(), 
lib:Ext.getCmp('Lib').getValue(), 
eta:Ext.getCmp('Etat').getValue(), 
typ:Ext.getCmp('typo').getValue()}
								})
								}
        }, {
			text: '<b>Modifier</b>',
			disabled : true,
			handler: function() {
        		Ext.MessageBox.alert('Modification du PRT!') },
			id:'Mo'
        }, {
			text: '<b>R.A.Z</b>',
			disabled : true,
			id:'Raz',
			handler: function() {
				Ext.getCmp('Code').setValue('');
				Ext.getCmp('Lib').setValue('');
				Ext.getCmp('Etat').setValue('');
				Ext.getCmp('typo').setValue('');
				Ext.getCmp('Cr').disable();
				Ext.getCmp('Mo').disable()
        		 }
        }],
        renderTo: document.getElementById('panel')
    })
 
						 })
}
Mais ...
Dans le handler du bouton, quand ma requête réussit et que je fais un loadData(), la grid devient vide !
Pourtant j'ai vérifié que le store contenait bien les données recherchées.

Je ne comprends pas.
Help !

merci