rstaib / jquery-bootgrid

Nice, sleek and intuitive. A grid control especially designed for bootstrap.
http://www.jquery-bootgrid.com
MIT License
973 stars 364 forks source link

loadRows remove anchors #409

Open wendellmouzaliruiz opened 6 years ago

wendellmouzaliruiz commented 6 years ago

Hello Rafael,

I want to suggest that you replace the following code:

row[column.id] = column.converter.from(cells.eq(i).text());

, for:

row[column.id] = column.converter.from(cells.eq(i).html());

, in:

function loadRows(

, this is why the anchor are being removed and replaced with pure text.

Tks!