Hi, Before, I use devexpress and they give me all the file for his control to translate it in French Do tou have the same thing with your control ? Thanks Sylo
Currently, controls that have popups can have their z-index controlled as explained here: http://www.telerik.com/help/aspnet-ajax/controlling-absolute-positioning-with-zindex.html RadComboBox has an explicit ZIndex property. Should all controls with popup elements have such a property?
UploadedFiles collection needs to be available across post backs.
For the time being the following workaround can be used.
JavaScript:
<script>
function pageLoad() {
var chart = $find("<%=RadHtmlChart1.ClientID%>");
chart._chartObject.options.categoryAxis.axisCrossingValue = [0, 3];
chart.repaint();
}
</script>
ASPX:
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="600px" Height="400px">
<PlotArea>
<Series>
<telerik:ColumnSeries AxisName="axis1">
<SeriesItems>
<telerik:CategorySeriesItem Y="30" />
<telerik:CategorySeriesItem Y="20" />
<telerik:CategorySeriesItem Y="10" />
</SeriesItems>
</telerik:ColumnSeries>
<telerik:ColumnSeries AxisName="axis2">
<SeriesItems>
<telerik:CategorySeriesItem Y="3100" />
<telerik:CategorySeriesItem Y="2700" />
<telerik:CategorySeriesItem Y="1400" />
</SeriesItems>
</telerik:ColumnSeries>
</Series>
<XAxis AxisCrossingValue="2">
<Items>
<telerik:AxisItem LabelText="item 1" />
<telerik:AxisItem LabelText="item 2" />
<telerik:AxisItem LabelText="item 3" />
</Items>
</XAxis>
<YAxis Name="axis1">
</YAxis>
<AdditionalYAxes>
<telerik:AxisY Name="axis2"></telerik:AxisY>
</AdditionalYAxes>
</PlotArea>
</telerik:RadHtmlChart>
New control that can create / read / write PDF documents similar to "removed by admin"
New control that can encrypt an email (SMIME). Look at http://www.rebex.net/secure-mail.net/
FIX: $create of controls with same parent are created in reverse order if using RadAjax
On opening the TemplateManager dialog under IE11 the loading panel is not hiding.
Due to this issue, the user cannot operate with this dialog under IE11.
The following example setup is resolving the issue:
<telerik:RadEditor runat="server" ID="RadEditor1"
OnClientCommandExecuted="OnClientCommandExecuted">
</telerik:RadEditor>
<script type="text/javascript">
function OnClientCommandExecuted(editor, args) {
var commandName = args.get_commandName();
if (commandName === "TemplateManager" && $telerik.isIE) {
var dialog = editor.get_dialogOpener()._dialogContainers["TemplateManager"];
dialog.add_activate(fixDialog);
}
}
function fixDialog(dialog) {
dialog._onWindowUrlChanged();
dialog.remove_activate(fixDialog);
}
</script>
Currently when we use virtualization in GridTemplateColumn, after scrolling columns changes from GridTemplateColumn to GridBoundcolumn.
When the popup elements lack boundary detection e.g.: they don't take into consideration the proximity to the edge.
Hello, We have a problem when publishing our appplication with Telerik. After publishing the page that uses a RadGrid and any Skin (doesn't matter if it's Default or Black or Windows7) the Skin files do not load. The Grid loads, it seems that the javascript files load (because the calendar works), but the css and the images that are part of the skins do not load and therefore the grid looks bare (attached partial screenshot). When we publish the application, we do it through Maven (which takes the Telerik dlls from an Archiva repository, in our company we are required to publish using it). When we don't use Maven/Archiva to publish then the page comes our fine and everything looks nice. When we publish using Maven/Archiva, the skin files do not load on the page. So something is preventing the skins files (css and images) from loading correctly on the screen. The only thing we noticed is that when publishing using Maven/Archiva the DLL file attributes (Date modified and Date created) gets reset to current date time. The dlls that we are using are: Telerik.Web.UI.dll (ver 2013.3.1114.40) Telerik.Web.UI.Skins.dll (ver 2013.3.1114.40) We took the dlls after publishing using Maven/Archiva and compared them to the dlls that we downloaded from Telerik and the dlls are identical. The only thing changed was the Date created/Date modified. If that's the reason why the css/images don't load correctly, then it's a big problem for us. Please look into this issue for us. Thank you, Alex
ComboBox in native render mode does not add ID / NAME attributes to the select element.
This issue manifests only when JavaScript is used to close the control (i.e., oWnd.close()) and the [x] button in the titlebar works as expected. Clicking the handles makes the popup element visible, but it is not responsive (i.e., buttons in its titlebar cannot be clicked, it cannot be dragged, etd.).
A workaround is to add the following OnClientClose handler:
function OnClientClose(oWnd, args) {
//hide remaining resizing handles in Lightweight render mode
if (oWnd.view && oWnd.view.resizable && oWnd.view.resizable.repaint)
oWnd.view.resizable.repaint();
//other logic
}
A fix will be available in the Q1 2014 release.