Here is a workaround / fix for this bug:
Open W8 or Basic theme file e.g.: "C:\AwareIM\Tomcat\webapps\AwareIM\aware_ext\resources\basic-medium\resources\codaxy-theme-basic-all_01.css". The file in this example / step
is the minified version file i.e. a single line css file. You have to manually search for the classes and do the changes etc. (recommended). A quick fix is to just copy the TO classes below AFTER
the minified single line in the CSS file. This seems to work but again is not ideal.
Change:
FROM:
/* line 1, ../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-wrap {
position: absolute;
overflow: visible;
z-index: 2; }
/* line 8, ../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor {
position: absolute; }
/* line 12, ../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-buttons {
position: absolute;
white-space: nowrap; }
/* line 1, ../../../../ext/packages/ext-theme-base/sass/src/grid/plugin/RowExpander.scss */
.x-grid-row-expander {
font-size: 0;
line-height: 0; }
TO:
/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor {
position: absolute;
overflow: visible;
z-index: 1;
}
/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */
.x-grid-row-editor-buttons {
position: absolute;
white-space: nowrap;
}
/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */
.x-grid-row-expander {
font-size: 0;
line-height: 0;
}
Tested and working in Basic themes.