Hi all,
Please advise, how to show data in same indentation in ListView?
I want to show in 3 Columns(only one field of DataTable), and should be save indentation.
My current UI is as below and it doesn't look good.

Here it is my HTML
<telerik:RadListView ID="rlvBLNo" runat="server" ItemPlaceholderID="BLNoHolder" Skin="Office2007" >
<LayoutTemplate>
<fieldset class="RadListView RadListView_Office2007" style="width:400px;padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;">
<legend style="font-weight:bold;">BL Number</legend>
<asp:Panel ID="BLNoHolder" runat="server" />
</fieldset>
</LayoutTemplate>
<ItemTemplate>
<%# Eval("bl_no")%>
</ItemTemplate>
<ItemSeparatorTemplate>
<span > </span>
</ItemSeparatorTemplate>
</telerik:RadListView>
Thanks :)