Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
<
telerik:RadListView
ID
=
"RadListView1"
Width
"97%"
AllowPaging
"True"
runat
"server"
AllowSorting
"true"
DataSourceID
"SqlDataSource1"
ItemPlaceholderID
"ProductsHolder"
DataKeyNames
"ProductID"
ClientDataKeyNames
OnItemDataBound
"RadListView1_ItemDataBound"
>
LayoutTemplate
fieldset
style
"max-width: 920px;"
id
"FieldSet1"
legend
>Products</
asp:Panel
/>
</
ItemTemplate
telerik:RadButton
"RadButton1"
Text
"Demo"
OnClientClicked
"OnClientClicked1"
protected
void
RadListView1_ItemDataBound(
object
sender, Telerik.Web.UI.RadListViewItemEventArgs e)
{
if
(e.Item
is
RadListViewDataItem)
RadListViewDataItem item = e.Item
as
RadListViewDataItem;
RadButton btn = item.FindControl(
)
RadButton;
btn.Attributes.Add(
"rowindex"
, item.DataItemIndex.ToString());
}
<script type=
"text/javascript"
function
OnClientClicked1(sender, args) {
var
listview = $find(
"<%=RadListView1.ClientID %>"
);
index = sender._element.getAttribute(
alert(listview._clientKeyValues[index].ProductID);
</script>