This question is locked. New answers and comments are not allowed.
I have a grid that I am loading in client-side using JSON data gotten from an AJAX call. Here is the code I'm using:
function LoadClientGrid(data, statusText) {
var grid = $('#ClientGrid').data('tGrid');
grid.dataBind(data.data);
}
The problem is that now I want the first column in the grid to display an anchor tag with the href based on the data gotten back. Can someone point me to a sample on how to do this?
function LoadClientGrid(data, statusText) {
var grid = $('#ClientGrid').data('tGrid');
grid.dataBind(data.data);
}
The problem is that now I want the first column in the grid to display an anchor tag with the href based on the data gotten back. Can someone point me to a sample on how to do this?