Hi,
I have a grid and I want to put a visual control into each cell in one column.
The uses the jquery plugin pattern. So I would normally use it as such:
var $progressBar = $("<div />").appendTo($container);
$progressBar.myProgressBar(options);
The problem I am running into is using a cell template I don't have access to the cell ($container) to append this element to.
Is there a way I can add in this?
Thanks