Hi ,
I have an application(say - MyApp) which has an aspx page with RadAjaxManager and multiple rad controls in it. I am trying to access this hosted application in other html page on my desktop (say an html page with an iframe src = 'url of MyApp'). The problem i am facing here is when the page with the radcontols is loaded, the iframe of the html page disappears and even the url in the window refreshes/changes from "C:\\users\Abc\Desktop\Iframe.html" to the "Url of the MyApp" as if the application is run directly without the iframe. We are mostly using the 2014 version of RadControls

I have used the Telerik RadCaptcha control in a number of projects and can never get a skin to work with it. All other controls are using the skin defined in the Web.config file in the key:
<add key="Telerik.Skin" value="Bootstrap"/>
Does anyone have any idea why the RadCaptha is the only control that doesn't follow this in my projects?
Paste is greyed out and has stopped working in RADEditor since our users have upgraded to Firefox v52. Paste works fine in Firefox v37 and Chrome. I have created a demo page below to demonstrate the issue, can anyone help fix it?
http://fdsrv.fire-defence.com/editordemo.aspx

Hi
i use a kendoGrid to provide data in my .net webfrontend. The data is shown correct, but sorting and filtering is nor working. But why?
<script> $(document).ready(function () { $("#grid").kendoGrid({ dataSource: { type: "json", transport: { read: "fabico1.json" }, schema: { model: { fields: { Artikel: { type: "string" }, Bez: { type: "string" }, Menge: { type: "number" }, Einh: {type: "string"} } } }, pageSize: 30, serverPaging: true, serverFiltering: true, serverSorting: true }, height: 430, filterable: true, sortable: true, pageable: true, columns: [{ field: "Artikel", width: 150, filterable: true }, { field: "Bez", }, { field: "Menge" }, { field: "Einh", width: 150 } ] }); }); </script>Can someone provide a working example of how we can compare data in different rows but within the same column? Or see what I'm missing?
Below is a function that throws an error due to an index not existing... but the data populates. If I remove most of the code and add an alert box, it shows the itemindex #.
This grid is populated from code-behind and the columns are dynamic (meaning, specified by the data, not in the markup).
ADMIN EDIT: Solution created by OP: https://www.telerik.com/forums/compare-data-in-different-rows-but-same-column#4BzUDXkNFU2U_FM8atHFbw.
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
RadGrid radGrid = (RadGrid)sender;
if (e.Item.ItemType == GridItemType.Item || e.Item.ItemType == GridItemType.AlternatingItem)
{
GridDataItem gridDataItem = (GridDataItem)e.Item;
if (e.Item.ItemIndex > 0)
{
decimal fte;
decimal fteTarget;
GridDataItem previousGridDataItem = radGrid.Items[1];
GridDataItem currentGridDataItem = radGrid.Items[2];
for (int c = 1; c < previousGridDataItem.Cells.Count; c++)
{
if (decimal.TryParse(previousGridDataItem.Cells[c].Text, out fte) && decimal.TryParse(currentGridDataItem.Cells[c].Text, out fteTarget))
{
if (fte <= fteTarget)
{
previousGridDataItem.Cells[c].ForeColor = Utility.Green;
}
else if (fte > fteTarget)
{
previousGridDataItem.Cells[c].ForeColor = Utility.Red;
}
}
}
}
}
Hi,
1. Can we add our own controls, like textbox, buttons etc.. to Ribbon Bar.
2. How can i execute a javascript fuction on a button click of ribbon bar.
Thanks.