Opened 13 years ago
Closed 13 years ago
#9082 closed Bug (invalid)
unable to customize row of ckeditor textarea
Reported by: | bhargav | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.6.3 |
Keywords: | Cc: |
Description (last modified by )
<textarea rows="${numberofline}" cols="${width}" name="itemValue_${columnID}_${columnTypeID}" id="itemValue_${columnID}_${columnTypeID}" cssStyle="height:100%;"><c:out value="${itemValue}"/></textarea> <script type="text/javascript"> var editor = CKEDITOR.replace("itemValue_${columnID}_${columnTypeID}"); </script>
i want change no. of row which pass in variable "numberofline" of textarea. This above code does not working.
Change History (2)
comment:1 Changed 13 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Editor has its own configuration for that - it does not take these values into account.
Please see: http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.width
http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.height
There may be other values mentioned in (you might want to get familiar with it) http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html that you may need E.g.
http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.resize_minWidth http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.resize_minHeight http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.resize_maxWidth http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.resize_maxHeight