Hi Deepak Raj,

make a extend of qx.ui.table.cellrenderer.Abstract and override 
_getContentHtml like I did:

    // overridden
    /**
     * TODOC
     *
     * @type member
     * @param cellInfo {var} TODOC
     * @return {var} TODOC
     */
    _getContentHtml : function(cellInfo) {
      //return qx.html.String.escape(this._formatValue(cellInfo));
        return this._formatValue(cellInfo);
    },

so String.escape is no longer used and HTML is interpreted by the Browser.

Regards

Dirk
deepakraj schrieb:
> Hi friends,
>
>            When I try to use the html properties in the setValue method of
> the table... I didn't accept it...How do it..
>
> The code I used :
> ----------------
>                    
> tableModel.setValue(colIndex,table.getFocusedRow(),"56"+"<html><br></html>"+"67");
>
> It displays the value in the table column like this   56<html><br></html>67
>
>      I need to display like this... 56
>                                           67
>
>    How to do this?
>
>
> regards,
> Deepak Raj
>   

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to