I cant able to find the proberty for client side to set the Widh and Height of webdialogewindow.
any property to change the height and width in client side for Web Dialog window
Hi Ravikumar,
There are 2 properties width/height and a setSize method on client. The set_width/height are internally are implemented as wrappers for setSize, so, setSize is preferrable.Below examples of them:
var dialog = $find('<%=WebDialogWindow1.ClientID%>');dialog.set_width('300px');dialog.set_height('200px');dialog.setSize('300px', '200px');