I\'m currently giving ag-grid a try and trying to build a table where if the user clicks a column value, they are taken to a page containing that entry\'s details.
<
Since you've already used React, you should use frameworkComponent
instead. Somebody mentioned about the overhead of React but because this is a very simple component, I do not think it matters much in this case.
Anyway, here is the example setup.
function LinkComponent(props: ICellRendererParams) {
return (
{props.value}
);
}
...
// in your render method