Sencha Ext.Msg.alert에서 클릭시 특정 페이지로 redirect
2024. 10. 20. 00:10ㆍJavascript/Sencha
Ext.Msg.alert('Warning', 'Session is expired!!', function() {
// Redirect to a specific page after the user clicks 'OK'
window.location.href = 'https://example.com/login'; // Change the URL to your desired page
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha type: 'combobox' 값 변경시, 다른 combobox 변경하기 (0) | 2024.11.18 |
---|---|
Sencha chart에서 데이터 바인딩하기 (0) | 2024.11.15 |
Spring Boot에서 이미지 가져오기 (0) | 2024.10.19 |
Sencha form에 image 추가 (1) | 2024.10.19 |
Sencha panel title click시, 화면 refresh하기 (0) | 2024.10.01 |