Sreeranga Prasad
Sreeranga Prasad

Reputation: 61

How to fix Popup width and height to maximum level of the screen depend on Computer resolution

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

Answers (1)

Dmitriy Krupin
Dmitriy Krupin

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;}

Demo

Upvotes: 3

Related Questions