Wrap text functionality was working in 3.4. But this code is not working in latest upgrade.
{
type: 'checkbox',
style: 'margin-left:5px;',
//attr: 'checked="false"',
label: 'Wrap Text',
listener: function (evt) {
if ($(evt.target).prop("checked")) {
this.option({ wrap: true, hwrap: true });
} else {
this.option({ wrap: false, hwrap: false });
}
this.refresh();
}
},