Sencha form에서 결과값 가져오기
2024. 12. 26. 18:41ㆍJavascript/Sencha
failure: function(form, action) {
let result = {};
try {
result = Ext.decode(action.response.responseText); // Attempt JSON parsing
} catch (e) {
result.message = 'Invalid server response';
}
console.log(result);
Ext.Msg.alert('Failure', result.message || 'File upload failed.');
}
'Javascript > Sencha' 카테고리의 다른 글
Sencha grid에 선택된 rows를 서버에 전송하기 (0) | 2024.12.27 |
---|---|
Sencha grid에 이미지 보여주기 (0) | 2024.12.27 |
Sencha 파일 업로드 (0) | 2024.12.26 |
Sencha html 태그에서 변수 호출하기 (0) | 2024.12.25 |
Sencha grid column의 default값 설정 (0) | 2024.12.25 |