Is it possible to disable the minimized icon of a popup
window using window.open. Not using iframe concept?
Answers were Sorted based on User's Feedback
Answer / spice
function showWin()
{
var newlookup = window.showModalDialog("http://www.yahoo.com",
"", "","status=0;help=0;dialogHeight=" + 400 + ";dialogWidth=" +600 )
}
Is This Answer Correct ? | 1 Yes | 3 No |
Answer / vaibhav telange
Yes,It possible to disable the minimize icon of a popup
window using following javascript....
window.open(url,
name,
'width=' + w + ', height=' + h + ', ' +
'left=' + wleft + ', top=' + wtop + ', ' +
' +
'minimize=no');
Is This Answer Correct ? | 1 Yes | 26 No |
Where sessions are stored?
How you will improve web application performance?
what is view state and its use
10 Answers DELL, Efextra, HCL,
Can you nest updatepanel within each other?
What are the authentication types in asp.net?
Which is faster viewdata or viewbag?
What is MSIL?
Explain difference between dataset and recordset?
How do we invoke queries from the application?
What’s difference between “optimistic” and “pessimistic” locking?
Can you explain page lifecycle in net?
What is view state management in asp net?