load : function(data) {
    var me = this;

    me.$.filtered.innerHTML = "";

    if (UT.isNotEmpty(data) && UT.isNotEmpty(data.text))
    {
        me.$.editor.instance.setData("", {callback:function()
            {
                this.setData(data.text.replace(/\n/ig, "<br\/>"));
                me.$.editor.syncValue();
            }});
    }
    else
    {
        me.$.editor.instance.setData("", {callback:function()
            {
                this.setData("");
                me.$.editor.syncValue();
            }});
    }

    UT.request(me.$.findCodeWithAttr);
},