Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    RichTextEditor margin EditArea

    Hello developers,
    my CSS styles don't work in RichTextEditor

    .richTextEditorEditArea {
    margin-left: 10px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    }

    when drawing components, the value in margin-left is taken instead of margin-bottom.

    After searching in debug mode, I found in the file RichTextEditor .js such a function

    isc.A. getContentFrameHeight = function isc_RichTextCanvas_getContentFrameheight() {
    return this.getHeight() - this.getHMarginBorderPad()
    }

    wouldn't it be better to call getVMarginBorderPad at this point?

    Version v12.1p_2020-05-01

    #2
    We've made a change to address this issue - please retest with a build dated May 25 or later.

    Comment

    Working...
    X