UI controls for ASP.NET AJAX, MVC, WPF,Silverlight, Windows 8 and Windows Phone
Cross-platform Mobile Development Toolwith cloud-based architecture
Everything you need to build sites andmobile apps with JavaScript and HTML5
One easy tool for Functional, Performance,Load and Mobile software testing
Everything for your online business - contentmanagement, ecommerce, emarketing
Simple and intuitive project managementand collaboration software
06 Aug 2012 (Link to this post)
07 Aug 2012 (Link to this post)
Indeed, in current official version you of KendoUI the command name cannot contain spaces. Thus, you should use the command's Text to set the text, which does support spaces.
You should set both the name and the text: { name: "MyCommand", text: "My Command Text" }
22 Aug 2012 (Link to this post)
$(
"#history_grid"
).kendoGrid({
columns: [
{ field:
"type"
, title:
"Document Type"
},
"target"
"To/From"
"date_received"
"Date Sent/Received"
"path"
" "
, template:
'<a href="${ path }">Link to file</a>'
, width:
"80px"
{ command: { name:
"ViewFile"
, text:
"View File"
, click: viewDoc }, title:
"100px"
}
],
scrollable:
true
,
autobind:
false
dataSource: history_datasource
});
function
viewDoc(e) {
e.preventDefault();
var
path =
this
.dataItem($(e.currentTarget).closest(
"tr"
));
alert(path);
};
23 Aug 2012 (Link to this post)
24 Aug 2012 (Link to this post)
11 Sep 2012 (Link to this post)
"cmdLoadRows"
"Load Rows"
, click: LoadX }, title:
""
"Name"
"Partner"
"DocNum"
"150px"
"SalesPerson"
"Sales Person"
"250px"
"FSD"
"Fact Ship Date"
, format:
"{0:MM/dd/yyyy}"
Copyright © 2011 - 2013 Telerik Inc. All rights reserved.