Sencha Touch 心得

1、Sencha Touch 默认 style=" 100% !important;"时如何去掉这个设置?

updateRecord: function(record) {
var me = this;
me.element.setStyle('width','');
}

使用setStyle方法重新定义宽度,实际上是清除了上述style。

原文地址:https://www.cnblogs.com/yzy666/p/4111773.html