I have an external list, I'm modify fields using: SPClientTemplates.TemplateManager.RegisterTemplateOverrides(context);
Basically this modifies the text inside the TD (see code below)
<td class="ms-cellstyle ms-vb2">Rep Job</td>
<td class="ms-cellstyle ms-vb2">517951</td>
<td class="ms-cellstyle ms-vb2">10008</td>
<td class="ms-cellstyle ms-vb2">0</td>
I'd like to know if I can gain access to the TD, so I can modify it's class values and add new styles to it.
Basically I'm trying to figure out the limitation of the JSLink over the list view on what I can change and which I cannot.
Thanks!
Edit: Just thinking I can use a JQuery select to alter any controls on the page. Just wondering if there's a "Post Rendering" kind of event I can use?