I am having problem to display the contents within the form template. I have the following in my rad grid :-
<EditFormSettings EditFormType="Template">
<FormTemplate>
<table id="1" width="100%" border="0" cellpadding="0" cellspacing="10">
<tr>
<td colspan="3">
<span class="des"><asp:Label ID="lblDestination" runat="server" Text='<%# Eval("Destination") %>' /></span>
</td>
</tr>
..
and I would like to hide the table row based on the DataTable binding. May I know is there any good way of doing this?
<EditFormSettings EditFormType="Template">
<FormTemplate>
<table id="1" width="100%" border="0" cellpadding="0" cellspacing="10">
<tr>
<td colspan="3">
<span class="des"><asp:Label ID="lblDestination" runat="server" Text='<%# Eval("Destination") %>' /></span>
</td>
</tr>
..
and I would like to hide the table row based on the DataTable binding. May I know is there any good way of doing this?