Hello
i am using the RadListView for displaying product boxes with ingress. i have following code
<telerik:RadListView runat="server" ID="products" Visible="false" ItemPlaceholderID="ProductItemContainer">
<layouttemplate>
<asp:PlaceHolder runat="server" ID="ProductItemContainer"/>
</layouttemplate>
<itemtemplate>
<div class="<%=ArticleClassName%>">
<%#finArtTitle(CStr(DataBinder.Eval(Container.DataItem, "itemname")))%>
</div>
</itemtemplate>
</telerik:RadListView>
Now when i have place break-point for function "finArtTitle()" then i surprised to know that it fires for 16-times; when i have 4-products boxes (records).
Any suggestions / reasons please ?
Thanks.
i am using the RadListView for displaying product boxes with ingress. i have following code
<telerik:RadListView runat="server" ID="products" Visible="false" ItemPlaceholderID="ProductItemContainer">
<layouttemplate>
<asp:PlaceHolder runat="server" ID="ProductItemContainer"/>
</layouttemplate>
<itemtemplate>
<div class="<%=ArticleClassName%>">
<%#finArtTitle(CStr(DataBinder.Eval(Container.DataItem, "itemname")))%>
</div>
</itemtemplate>
</telerik:RadListView>
Now when i have place break-point for function "finArtTitle()" then i surprised to know that it fires for 16-times; when i have 4-products boxes (records).
Any suggestions / reasons please ?
Thanks.