
Hello,
I have a scenario where want to load kendo grid in kendo window on button The button is in external template by . Please suggest something by which can close and exit/hide grid and window easily
Grid MVVM external Script:
<script id="FeeGrid" type="text/x-kendo-template" class="KendoExtTemplate"> <div id="feegridContainer"> <div data-role="grid" data-editable="true" data-toolbar="['create', 'save']" data-columns="[ { 'field': 'FeeCurrency', 'width': 270 } ]" data-bind="source: FeeBreakup"></div> </div></script>
01.<script id="Heads" type="text/x-kendo-template" class="KendoExtTemplate">02. <div>03. <input data-role="numerictextbox" data-min="0" data-bind="value: Gross_Fare">04. <input data-role="numerictextbox" data-min="0" data-bind="value: TotalFee"><button data-role="button"05. data-icon="edit"06. data-bind="click: OpenFeeGrid"07. ></button> 08. </div>09. 10.</script>
the OpenFeeGrid , should trigger to show / hide kendo Window with Grid inside.


I have a requirement to display information that is arranged as a web. What I mean by this is a hierarchical structure but each node can also have multiple parents. The connections between nodes have a weighting, which ideally would be displayed in some way either graphically, by width or colour, or by a label.
This is being developed as part of a web application.
Is there anything in the Telerik toolset which could help with this?

$("#player").kendoMediaPlayer({
autoPlay: true,
play: onPlay,
pause: onPause,
end: onEnd,
ready: onReady,
timeChange: onTimeChange,
volumeChange: onVolumeChange,
messages: {
play: "Wiedergabe",
pause: "Pausieren"
},
media: {
title: "player",
source: new kendo.data.DataSource({
transport: {
read: {
url: "getVideoplayer",
type: "POST",
dataType: "binary"
}
}
})
}
});
html:
<div id="player" style="width:640px; height: 360px;"></div>
i have this error:
Uncaught TypeError: this._currentUrl(...).match is not a function

I would like to create a kendo video player.
I would like to pass the video data to the player and not link.
In the back end I use spring.
The problem is that the call response is empty.
Html code:
<div id="video1" style="width:640px; height: 360px;"></div>
Js code:
$("#video1").kendoMediaPlayer({
autoPlay: true,
messages: { play: "Wiedergabe", pause: "Pausieren"},
media: { title: "video",
source: new kendo.data.DataSource({
transport: {
read: { url: "/methodSpring/video", contentType: "application/json", dataType: "json"}}
}),
}
});
Java code:
@RequestMapping(value="video")
public void getVideoGst(HttpServletResponse response) throws Exception
{
logger.debug("+video");
File file = new File("/home/user/Desktop/doc.mp4");
FileInputStream fis = new FileInputStream(file);
try {
IOUtils.copy(fis, response.getOutputStream());
fis.close();
}
finally {
IOUtils.closeQuietly(fis);
logger.debug("+video");
}
}

Hello,
I have upgraded three different apps to the new Kendo dlls for MVC and every project is breaking on the editor template section.
I manually added the templates and it seems to work, but I noticed a change in the string template.
The old template for the String.cshtml looks like below
The new one looks like this
I am not sure if this is anything, but it cannot find the TextBoxFor.
I am using VS2013 update4.
HI,
1. How to download file in XLSX format directly without saving on local path or server without UI using radspread processing ?
2. How to download file in XLSX format directly without saving on local path or server with UI using radspread processing ?
Please provide complete demo or documentation on this because I am using console application .

I have two list boxes that are connected, the left one lists available items and the second for selected items. The number of selected items is limited to 5. Is there a way to turn of the transferTo tool button and disable new drops in the second list box ? The second box needs to remain 'active' for the user to reordering the items in their priority sequence.
I have been able to disable the transfer to button in the toolbar, in the second listbox add handler, when a new add is occurring and the listbox currently has 4 items.
Thanks,
Richard
