There is a display button in the right bottom corner of my grid, its inactive right now, I would like to be able to make that active when you click a row and then you could click it to download via a link with the id in the link.
I just didnt find any examples of this or how to activate it and what events to use with it, do you have any demos of this ?
Currently I have a button on a tab that opens when you click the > infront of each row.
Regards,
Emil

Hi,
I couldn't find why, but like in this example: http://dojo.telerik.com/@Janek91/eZUyI font color I'm picking from palette is not applied in HTML code. It's only adding <span> tag. In addition you can't select indexes of ordered or unordered list to change its colors. Can you help me?
OK, I am a total stinking newb. This is an idiotic question, that I'm sure will serve as a laughingstock for years to come.
So I have a grid ... I have columns defined for that grid, and the names of the data elements that I expect to appear in those columns. As well as button at the end of each row that will, at some point, you know ... do stuff. So I have this below ... and it doesn't do that. I get the names and ages ...
So far I've narrowed the problem down to somewhere between the <html> and </html> tags.
Thanks in advance, for any and all sense that you kind folks may knock into me :-)
Here's the code:
<!DOCTYPE html><html><head> <title></title> <link rel="stylesheet" href="/content/kendo/kendo.common.min.css" /> <link rel="stylesheet" href="/content/kendo/kendo.default.min.css" /> <script src="/scripts/kendo/jquery.min.js"></script> <script src="/scripts/kendo/kendo.web.min.js"></script></head><body> <input id="testButton" type="button" value="Click Me" onclick="testButton_onclick(this)" /> <div id="example"> <div id="grid"></div> <script> $().ready(function () { setupKendoGridInitial(); }); function setupKendoGridInitial() { $("#grid").kendoGrid({ columns: [ { field: "name", title: "Happy Name" } , { field: "age" } , { command: [ { name: "details", click: function (e) { rowEdit(e); } } ] } ] }); } function rowEdit(e) { alert("Do stuff: " + e.age); } function testButton_onclick(event) { // let's pretend I just called Web API and got this as JSON from the server var structuredData = { blinkyBot: 1, grannyGunner: "xyz", funkyRows: [ { name: "Jimmie Doe", age: 70, foo: "bar" }, { name: "Johnny Doe", age: 73, foo: "bar" } ] }; $("#grid").kendoGrid({ dataSource: structuredData.funkyRows }); } </script> </div></body></html>
Great editor - using in my MVC4 projects -- better than TinyMCE
Used your "show html" custom tool - but in doing so you then need to specify all the tool names for them to show up.
You only show the following in the online docs - but that's not all of them. As seen when you don't specify any explicitly.
Don't see a complete list in any docs - please either provide them or point me to the proper documentation..
Thanks!
...Lance Larsen
$("#editor").kendoEditor({
tools: [
"bold",
"italic",
"underline",
"foreColor",
"insertUnorderedList",
"insertOrderedList",
"createLink",
"unlink",
"insertImage"
]
});
$("#editor").kendoEditor({tools: ["bold","italic","underline","strikethrough","justifyLeft","justifyCenter","justifyRight","justifyFull","insertUnorderedList","insertOrderedList","indent","outdent","createLink","unlink","insertImage","insertFile","subscript","superscript","createTable","addRowAbove","addRowBelow","addColumnLeft","addColumnRight","deleteRow","deleteColumn","viewHtml","formatting","cleanFormatting","fontName","fontSize","foreColor","backColor","print"]});Hello guys,
I am trying to do the following.
I have a grid witch need to have selectable row. Inside each row i have a sparkline chart on witch when i click a kendo window must open.
When i click on the row a kendo window opens as well.
I know the normal behavior is to open 2 modals as it should. But i need to be able to open just one when i click on the sparkline and prevent the default one from the row.
i have attached the followig dojo to better explain and show what i am failing to do.
I guess this is kinda easy if you put selectable cell, but i need to select the whole row.
Thank you.
Do you support double click on the list view item for kendo ui listview? I could not find it in the docs.
http://docs.telerik.com/kendo-ui/api/javascript/ui/listview
Thanks!
Hi
I've been struggling with KendoUI and AngularJS to get a list view to repeat (or attempting to use ng-repeat). Here is the StackOverflow I created in regards to the issue
http://stackoverflow.com/questions/37701918/kendoui-angular-datasource-will-not-repeat-or-display-telerik-platform
I not have a suspicion it may be the json returned from my DataSource and as such I may need to restructure it or work around it, if this is the case I do not mind restructuring the results.
Cheers