How to change an editor width dynamically?
How to change an editor width dynamically?
Width of the editor on a form can be changed using class --> .ui-dialog { min-width: NNNpx;}
The problem is that width changed for all editors on a form. How to change width only for certain dialogs on a form?
Probably it is possible to select editor based on its title, for example, and change width using jquery. Please advise
Thank you
This discussion has been closed.
Replies
I figure it out. On editor.Open event modify your class
$('yourClass').css('min-width', 'NNNpx');