HI Dennis,
No I think you dont
since this is still on the control
I want to remove it from the control
Here its in the control js code(the css)
onAfterRendering: function(oEvent) {
var $this = this.$();
$this.css('width', '20px');
$this.css('border-collapse', 'separate');
}, self._getListBox());
I need something like this but it doesnt work.
onAfterRendering: function(oEvent) {
}, self._getListBox().addStyleClass(myClass));
and my class in the css file should be
.myClass{
"width": "20px",
"border-collapse": "separate"
}
I want to remove the css code from my js file somehow.
Thanks,
Joerg