size String
(default: "auto")
Set predefined size to the dialog. The width
and height
configuration options override the predefined size
.
Possible values are:
- auto
- small
- medium
- large
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
size: "wide"
});
</script>