Rich Text Editor appearance issue with Multi-Column Layout
Posted: 2021-02-08 07:04
Hi there,
I am having a problem with Multi-Column Layout appearance for Rich Text Editor fields after upgrading to 5.94.
The field set to Rich (HTML) area is "notes".
Below is the js codes in my hooks file
This is what I see
If I remove the ".sizeLabels(3);" code, the text editor will appear, but not in the nice column spacing.
Like this Any help is appreciated. Thanks and stay safe.
I am having a problem with Multi-Column Layout appearance for Rich Text Editor fields after upgrading to 5.94.
The field set to Rich (HTML) area is "notes".
Below is the js codes in my hooks file
Code: Select all
var row_1 = new AppGiniLayout([6, 6])
.add(1, ["id", "sort_field", "group", "state", "active"])
.add(2, ["date1", "date2", "name", "value1", "value2", "value3"])
.sizeLabels(3);
var row_2 = new AppGiniLayout([12])
.add(1, ["notes"])
.sizeLabels(3);
Like this Any help is appreciated. Thanks and stay safe.