How to change an editor width dynamically?

How to change an editor width dynamically?

nkiyatkinnkiyatkin Posts: 5Questions: 2Answers: 0

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

Replies

  • nkiyatkinnkiyatkin Posts: 5Questions: 2Answers: 0

    I figure it out. On editor.Open event modify your class

    $('yourClass').css('min-width', 'NNNpx');

This discussion has been closed.