We are using extjs 3.4 version. We are also using normal html, not html5.
Asked
Active
Viewed 3,136 times
0
-
3Possible duplicate of [How can I make window.showmodaldialog work in chrome 37?](http://stackoverflow.com/questions/25663053/how-can-i-make-window-showmodaldialog-work-in-chrome-37) – Reinstate Monica Cellio Oct 29 '15 at 09:28
-
The linked question above will give you an explanation, but there is no answer other than create your own. – Reinstate Monica Cellio Oct 29 '15 at 09:28
-
We have to fix this using only javascript, above explanation is not working. I want a modal window. but showmodaldialog is not working in chrome. – CodeMachine Oct 29 '15 at 10:54
-
It's been deprecated. You need to create your own dialog or use an existing framework that includes one, like bootstrap or jQuery UI. – Reinstate Monica Cellio Oct 29 '15 at 11:12
1 Answers
1
Its a known issue in chrome browser
you can use window.open();
window.open("http://www.google.com", "_blank", "toolbar=yes, scrollbars=yes, resizable=yes, top=200, left=500, width=800, height=600");

Luca Detomi
- 5,564
- 7
- 52
- 77

Arunkumar Muthuvel
- 423
- 3
- 18