Okay actually at this point JQuery helped me to find a quick solution.
This what I did :
<script type="text/javascript">
$(document).ready(function() {
$(".TreeView tbody tr td:nth-child(1)").hide();
});
</script>
This is the easiest way to solve the problem to me. Thanks JQuery's powerful selectors.
Braveyard
2009-08-03 03:18:01