i have a column like below, but when render on page, the <img
src=\"images/ticked.jpg\"> is changed to &lt;img src="images/ticked.jpg"&gt;

how to prevent changing of < to &lt; because i want to display the image


    private  class ActiveColumnEvaluator implements ITableColumnEvaluator {

        public Object getColumnValue(ITableColumn objColumn, Object objRow) {
            EmailList dataItem = (EmailList) objRow;
            String activeImageUrl="";
            if(dataItem.getActive() !=null && dataItem.getActive().equals("1")){
                
                activeImageUrl= "<img src=\"images/ticked.jpg\">";
                
                
            }
            
            return activeImageUrl;
        }
    }


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to