Sencha html 태그에서 변수 호출하기
2024. 12. 25. 17:04ㆍJavascript/Sencha
Uncaught ReferenceError: a is not defined
const test = a;
생략
{
text: 'Image',
dataIndex: 'image',
renderer: function(value) {
return '<a href="javascript:alert(a);">보기</a>';
}
}
해결방법1: 변수를 global로 정의
const test = a;
window.a = a;
해결방법2: 변수가 아닌 함수를 호출
const test = a;
function test() {
alert(a);
}
생략
{
text: 'Image',
dataIndex: 'image',
renderer: function(value) {
return '<a href="javascript:test();">보기</a>';
}
}
'Javascript > Sencha' 카테고리의 다른 글
Sencha form에서 결과값 가져오기 (0) | 2024.12.26 |
---|---|
Sencha 파일 업로드 (0) | 2024.12.26 |
Sencha grid column의 default값 설정 (0) | 2024.12.25 |
Sencha combobox 로딩시, 서버에서 값 가져오기 (0) | 2024.12.24 |
Sencha 특정 컬럼만 수정(modified)표시 제거하기 (0) | 2024.12.22 |