Reputation: 61
i am having requirement that kendo popup needs to maximize the height and width of popup to maximum level through out window depend upon the computer resolution iam working with kendo popup thank you help me out of this
Upvotes: 0
Views: 2316
Reputation: 591
A possible appoach is to maximize popup on the fly in the Grid's edit event.
edit: function(e) {$(e.container).data("kendoWindow").maximize();}
Also you have to use folowing css
.k-edit-form-container {width: auto;}
Upvotes: 3