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.
I want it to be possible to use declarative localization for PagerTextFormat property in RadGrid Control. Currently the only way is by using code behind.
After the last release when looking at the roadmap for the Q1 2014 release there was mention of a diagramming control. Now when I look at the roadmap it is not there. What's going on with the diagramming control?
It is design limitation. The format is not not applied because the context menu is single for all columns, but each column can have different format. The DateInput inside the filter menu can not have multiple formats at the same time.
Clicking on header column of GridClientSelectColumn grid row checkboxes remains unchecked. The grid rows becomes selected (style changed) though. The issue appears only in IE 11, Chrome, Firefox and IE 10 work as expected. The issue can be reproduced om Telerik's site: http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/selecting/row-selection/defaultcs.aspx It seems not to be related to Compabitibiity View.
It would be nice if all dropdown list controls (dropdownlist, radcombobox, etc) had a built-in "x" button somewhere which allowed the user to clear the selection of an item (ie set its selectedIndex to 0).
Clicking on the "x" would also fire the client-side and server-side (if applicable) SelectedIndexChanging and SelectedIndexChanged events.