How can I enlarge my Editor dijit?

772
2
Jump to solution
08-18-2014 04:53 PM
MichaelJenkins
Occasional Contributor III

How can I enlarge my editor dijit so I don't get annoying scroll bars and lots of useless white space?   I have tried to dig into the CSS and find a way, but with no success.   Unlike many other classes in the JSAPI, the documentation makes no mention of CSS classes to use when styling the dijit.

GISP
0 Kudos
1 Solution

Accepted Solutions
JakeSkinner
Esri Esteemed Contributor

Hi Michael,

The TemplatePicker class has a CSS property, templatePicker.  You can add this to your CSS to adjust the height.  Ex:

.templatePicker{

        height:800px;

}

View solution in original post

2 Replies
JakeSkinner
Esri Esteemed Contributor

Hi Michael,

The TemplatePicker class has a CSS property, templatePicker.  You can add this to your CSS to adjust the height.  Ex:

.templatePicker{

        height:800px;

}

MichaelJenkins
Occasional Contributor III

Thank you for that excellent and correct response.   It doesn't seem to like percentages for the height, but setting it in absolute pixels works great.

GISP
0 Kudos