Hi Gary,
The link you've provided, seems to match the issue.
I've looked into some components Renderable.js and wanted to use the initRenderTpl instead it uses the initFramingTpl somehow the frame attribute of the
getFrameInfo is always true.
Code:
getFrameInfo: function() {
if (Ext.supports.CSS3BorderRadius || !this.frame) {
return false;
}
getElConfig: function() {
var me = this,
autoEl = me.autoEl,
frameInfo = me.getFrameInfo(),
config = {
tag: 'div',
tpl: frameInfo ? me.initFramingTpl(frameInfo.table) : me.initRenderTpl()
},
protoEl = me.protoEl,
frameData;
Additional information.
I upgraded from version 5.0.0 to 5.1
Before frame:
Before-Frame.PNG
After Frame:
After-Frame.PNG
Do you have any workaround for this?