This question is locked. New answers and comments are not allowed.
I need to conditionally display a link based on data in a Grid. I'm monitoring some network traffic, and only after an async request runs in the background will I know if the link needs to be displayed, so I need to control the link's visibility client-side. My thought was to use the OnDataBound event, and iterate through a couple of the column values I need, compare them, and show() or hide() the link accordingly. I can get a handle on the grid using var grid = $("#MyGrid").data("tGrid");. Beyond that, I've tried several approaches finding the table row, column, dataItem, etc., but I can't seem to get at the actual data. Is there an example available or a better approach? Thanks.