Sencha panel title click시, 화면 refresh하기
2024. 10. 1. 19:21ㆍJavascript/Sencha
{
xtype: 'panel',
width: leftWidth,
bodyStyle: 'background-color:black',
html: '<h2><font color="white" style="cursor: pointer"> Home</font></h2>',
listeners: {
click: {
element: 'el',
fn: function() {
window.location.reload();
}
}
}
},
'Javascript > Sencha' 카테고리의 다른 글
Spring Boot에서 이미지 가져오기 (0) | 2024.10.19 |
---|---|
Sencha form에 image 추가 (1) | 2024.10.19 |
Sencha panel에 서버에서 받은 정보를 화면 구성시 출력하기 (0) | 2024.10.01 |
Sencha textfield xtype 접근하기 (0) | 2024.10.01 |
Sencha 컴포넌트(xtype)의 config에 스크립트로 값 지정하기 (0) | 2024.10.01 |