Sencha this 사용시 주의사항
2025. 1. 21. 22:56ㆍJavascript/Sencha
{} 안에서 this가 적용되기 때문에 onClick_search()를 찾지 못함
onAfterRender_App: function(ctrl, eOpts) {
this.refreshNamespace(() => {
this.onClick_search();
});
}
{} 밖에 this를 정의하여 호출하면, onClick_search()을 찾을 수 있음
onAfterRender_App: function(ctrl, eOpts) {
const me = this;
this.refreshNamespace(() => {
me.onClick_search();
});
}
'Javascript > Sencha' 카테고리의 다른 글
Sencha 팝업 호출시 get방식으로 파라메터 전달 (0) | 2025.01.21 |
---|---|
Sencha callback 함수 샘플 (0) | 2025.01.21 |
Sencha split and collapsible sample (0) | 2025.01.19 |
Sencha callback함수 처리 (0) | 2025.01.18 |
Sencha store로 grid 찾아내기 (0) | 2025.01.18 |