Hi Akinola,
Following is the sample code that I tried and which is worked as expected.
ASPX:
<
telerik:RadListView
ID
=
"RadListView1"
Width
=
"97%"
AllowPaging
=
"True"
runat
=
"server"
AllowSorting
=
"true"
DataSourceID
=
"SqlDataSource1"
ItemPlaceholderID
=
"ProductsHolder"
DataKeyNames
=
"ProductID"
>
<
LayoutTemplate
>
<
fieldset
style
=
"width: 760px;"
id
=
"FieldSet1"
>
<
legend
>Products</
legend
>
<
asp:Panel
ID
=
"ProductsHolder"
runat
=
"server"
/>
<
table
cellpadding
=
"0"
cellspacing
=
"0"
width
=
"100%;"
style
=
"clear: both;"
>
<
tr
>
<
td
>
<
telerik:RadDataPager
EnableEmbeddedSkins
=
"false"
ID
=
"RadDataPager1"
runat
=
"server"
PagedControlID
=
"RadListView1"
PageSize
=
"10"
>
<
Fields
>
<
telerik:RadDataPagerPageSizeField
PageSizeText
=
"Show Results: "
PageSizeComboWidth
=
"40"
/>
<
telerik:RadDataPagerGoToPageField
HorizontalPosition
=
"RightFloat"
/>
<
telerik:RadDataPagerButtonField
FieldType
=
"Numeric"
HorizontalPosition
=
"RightFloat"
/>
</
Fields
>
</
telerik:RadDataPager
>
</
td
>
</
tr
>
</
table
>
</
fieldset
>
</
LayoutTemplate
>
<
ItemTemplate
>
<
div
style
=
"float: left;"
>
<
table
cellpadding
=
"0"
cellspacing
=
"0"
style
=
"width: 230px; height: 100px"
>
<
tr
>
<
td
style
=
"width: 20%;"
>
Name:
</
td
>
<
td
style
=
"width: 80%; padding-left: 5px;"
>
<%# Eval("ProductName") %>
</
td
>
</
tr
>
<
tr
>
<
td
>
Quantity:
</
td
>
<
td
style
=
"width: 80%; padding-left: 5px;"
>
<%# Eval("QuantityPerUnit") %>
</
td
>
</
tr
>
<
tr
>
<
td
>
Price:
</
td
>
<
td
style
=
"width: 80%; padding-left: 5px;"
>
<%# DataBinder.Eval(Container.DataItem, "UnitPrice", "{0:C}") %>
</
td
>
</
tr
>
<
tr
>
<
td
>
Units:
</
td
>
<
td
style
=
"width: 80%; padding-left: 5px;"
>
<%# Eval("UnitsInStock") %>
</
td
>
</
tr
>
<
tr
>
<
td
>
Available:
</
td
>
<
td
style
=
"width: 80%; padding-left: 5px;"
>
<%# ((bool)DataBinder.Eval(Container.DataItem,"Discontinued") == false ? "Yes" : "No") %>
</
td
>
</
tr
>
<
tr
>
<
td
>
<
hr
/>
</
td
>
<
td
>
<
hr
/>
</
td
>
</
tr
>
</
table
>
</
div
>
</
ItemTemplate
>
</
telerik:RadListView
>
<
asp:SqlDataSource
ID
=
"SqlDataSource1"
runat
=
"server"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>" SelectCommand="SELECT [ProductID], [ProductName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [Discontinued] FROM [Products]">
</
asp:SqlDataSource
>
Please take a look into
this demo for more information. Please provide your entire code if it doesn't help.
Thanks,
Princy.