Hi Telerik support
This is Edge browser specific issue. Radwindow opens almost 5px to right from the left edge of the content page. It works perfectly in other browsers.
We have also tried window.center(), but no luck. Can you please advise how to fix this issue?
Thanks.
Hello,
I'm trying to develop Asp.NET project and I use RadComboBox. I want to use filter='Contains' in Combo. But i have a problem with searching (uppercase İ) turkish characters. In.aspx file, i use css uppercase in combo. And i'm trying to filter with (İ) doesnt match anything. But i enable Caps Lock, and i'm trying to filter with (İ) i get the result.
We use automatic load on demand for the RadComboboxes, still the performance is slow.
Will the performance be improved if we try Loading items from a Web Service approach?
Small Docs issue on https://docs.telerik.com/devtools/aspnet-ajax/controls/combobox/client-side-programming/events/onclienttextchange
The OnClientTextChange client-side event occurs when the user enters custom text in the input field of RadComboBox (if AllowCustomText property is True). OnClientTextChange doesn't fire until the user hits Enter or clicks outside the combobox.
I discovered that clicking outside the box does not fire this event.
Marc
the dataitem did not pass to client side if dataitem is not in X/Y.
datasource {"Vendor", "AppName", "Qty", "Date"}
Line chart: Xasix (Date), Yasix(Qty)
<telerik:RadHtmlChart runat="server" ID="RadHtmlChart1" Width="100%" Height="400px">
<ClientEvents OnSeriesClick="RadHtmlChart1_OnSeriesClick" />
</telerik:RadHtmlChart>
function RadHtmlChart1_OnSeriesClick(e) {
alert(e.dataItem['Vendor']); // return undefined
}
I have noticed behavior regarding the RenderMode property that is not consistent with the documentation. According to the documentation one can globally set the RenderMode property for all RadControls by adding this setting to the web.config.https://docs.telerik.com/devtools/aspnet-ajax/controls/render-modes
I have followed the instructions as I require the controls to be set to RenderMode="Auto" as to allow it to render either LightWeight or Mobile depending on the browser.
At first glance it seems to have been working OK but I have noticed on a page where that where I have implemented a RadGrid control that the Grid was not displayed correctly. I then compared it to another grid where the RenderMode property on the grid itself was set to RenderMode="Auto" and there was a significant difference in the display of the grid.
It seems that the RenderMode="Auto" setting in the Web.config may not be applied to all the controls correctly. I have now added the property to every radcontrol I implement in the application and everything now looks as expected.
Is there anyone else that has seen this behavior?