Issues with hyperlinks in FlexiGrid columns

Issues with hyperlinks in FlexiGrid columns

Hi,
 
I am using flexigrid v1.1 with jquery 1.7.2. The flexigrid is able to display the column value as a plain text and not as a hyperlink text (as set in the cell data while preparing the data for flexigrid). This is how i am setting the hyperlink value in one of its columnns...
 

sBuffer.append(

"<cell><a href=\"http://localhost:7001/MyApp/AppServlet?TaskNo=" +tasks.getTaskNumber()+ "\" target=\"_blank\">" +tasks.getTitle()+ "</a></cell>" );
 
I need to build this during data build-up as i have different URLs to be mapped to each of the rows in flexigrid. Does anyone have a solution to this problem. I searched thru different forums and could find only manipulating the links using javascript using the flexigrid property ( process: funcHyperlink) for the column which needs an event to open a new browser window. But here i am not able to have dynamic URLs that come in from the database.
 
Thanks
Karthik