Ref. attached Image its show horizontal scrolling round with red color.
In business application more number of groups and menu item at that time horizontal scrolling very usefull as shown in the attached image
a radmenu with input-fields would be very usefull this would work the same way like a configuration-menu
Create a tool that allows a powerpoint to be displayed in a web page. Extra bonus if it's able to include sound. It should have the usual controls at the bottom - forward, back, beginning, end. The powerpoint page would change based on user clicks.
Based on customer feedback, we should implement styles in the ribbon, say a class name, that when applied will truncate the titles of ribbon groups. Though by specification a group title should be short, that's not always possible. Having those styles will allow customers to have the groups being sized according to their content and not the greater of maximum of the content or group title
Add ability to define Telerik specific ConfigSectionHandler for their settings like others (e.g.,log4Net) do. This makes configuring environments much easier. All I need to do is point to *.Dev.config, *.Stage.config and my application is ready for the new environment. For example, the following settings: <configuration> <configSections> <section name="myConfigSection" type="CurrentApp.ConfigurationSectionHandler, Current" /> </configSections> <myConfigSettings configSource="App_Data\Configs\MyConfigSection.config" /> <appSettings> <add key="Environment" value="Local.Local"/> ... <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled"/> <add key="Telerik.ScriptManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikScripts" /> <add key="Telerik.ScriptManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikScripts" /> <add key="Telerik.ScriptManager.TelerikCdn.CombinedScript" value="Enabled" /> <add key="Telerik.Skin" value="Bootstrap" /> <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled"/> <add key="Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikSkins" /> <add key="Telerik.StyleSheetManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikSkins" /> <add key="Telerik.StyleSheetManager.TelerikCdn.CombinedResource" value="Disabled" /> <add key="Telerik.Web.UI.StyleSheetFolders" value="~/Content/; ~/" /> ... <appSettings> <configuration> can be changed to: <configuration> <configSections> <section name="telerikSettings" type="Telerik.ConfigurationSectionHandler, Telerik" /> </configSections> <appSettings configSource="App_Data\Configs\Local.config" /> <telerikSettings> <!-- This section does not exist and the keys are currently inside the local.config file --> <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled"/> <add key="Telerik.ScriptManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikScripts" /> <add key="Telerik.ScriptManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikScripts" /> <add key="Telerik.ScriptManager.TelerikCdn.CombinedScript" value="Enabled" /> <add key="Telerik.Skin" value="Bootstrap" /> <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled"/> <add key="Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikSkins" /> <add key="Telerik.StyleSheetManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikSkins" /> <add key="Telerik.StyleSheetManager.TelerikCdn.CombinedResource" value="Disabled" /> <add key="Telerik.Web.UI.StyleSheetFolders" value="~/Content/; ~/" /> </telerikSettings> ... </configuration> or directly point to external configuration file: <configuration> <configSections> <section name="telerikSettings" type="Telerik.ConfigurationSectionHandler, Telerik" /> </configSections> <appSettings configSource="App_Data\Configs\Local.config" /> <telerikSettings configSource="App_Data\Configs\Telerik.config" /> ... </configuration>
I didn't realize this is the new trend till recently. And I just found the 360 cameras are getting cheaper and cheaper with more features. Among many other models to shoot 360 Photos and Videos, the Ricoh Theta S and Samsung 360 Gear (2017) are just around $200-$300 ! I have learned YouTube supports 360 Videos but NOT 360 Photos. FB supports both I think but it is not easy to let us embed them into our own sites. So if Telerik came out with a new Control to support these needs, it will be very great ! Thanks much.
Hi,
Is it possible to exercise the NullText option for the control RadDatePicker for ASP.NET AJAX
Thanks
Gita
Instead of utilising 3rd party jQuery or the boring old ASP client-side form/field validation why don't you guys develop your own that has nice look and functionality similar to this: https://github.com/posabsolute/jQuery-Validation-Engine and you could also include a password strength indicator like this while your at it: http://git.aaronlumsden.com/strength.js/#demo Not hard and it would nicely complement your current suite of tools, especially if it was styled from skins.
A functionality that will enable users to scroll into a specific node or item of the RadOrgChart on initial load of the page holding the control
Hi guys, Do you think that the Telerik UI for ASP.NET AJAX suite should offer a Radial Menu? The control should optimize and facilitate the work on touch devices. You can find more detail for the control at: https://support.office.com/en-us/article/Use-radial-menus-to-display-OneNote-commands-0d75f03f-cde7-493a-a8a0-b2ed6f99fbe2 http://beaucollins.github.io/radial-menu/ Thank you for your feedback!
https://www.telerik.com/support/kb/aspnet-ajax/details/cannot-scroll-telerik-control-in-ios-11.3---the-page-scrolls-instead
Hi, Make configuration wizards work even on high resolution screens with scaling. See attached screen shot. Regards, Patrik Johansson
Based on customer feedback: fully collapsed groups in the ribbon bar have a smaller height, which leads to a broken layout, when only part of the ribbon groups are fully collapsed.
Based on customer feedback: We just observed the problem that the width where the ribbon completely collapses does not match the width where the ribbon stops being completely collapsed.
For the time being the following CSS can be used: CSS: <style> .RadPanelBar .rpGroup .rpLink, .RadPanelBar .rpGroup .rpTemplate .RadButton { line-height: normal; } </style ASPX: <telerik:RadPanelBar ID="rpbOptions" runat="server" Width="200px" ExpandMode="SingleExpandedItem" AllowCollapseAllItems="true" Font-Bold="True"> <Items> <telerik:RadPanelItem Text="Delivery Method" Font-Size="Small"> <Items> <telerik:RadPanelItem Expanded="true"> <ContentTemplate> <div id="div1"> <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton9" runat="server" GroupName="gDeliveyMethod" Checked="true" AutoPostBack="false" Text="Pickup" ForeColor="#295B8B"></telerik:RadButton> <br /> <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton10" runat="server" GroupName="gDeliveyMethod" AutoPostBack="false" Font-Size="X-Small" ForeColor="#295B8B" Text="Courier"></telerik:RadButton> </span><br /> <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton11" runat="server" GroupName="gDeliveyMethod" AutoPostBack="false" Font-Size="X-Small" ForeColor="#295B8B" Text="US Mail"></telerik:RadButton> <br /> </div> </ContentTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> </Items> </telerik:RadPanelBar>
can we give two Focus Keys in KeyboardNavigationSettings ?
Current --> <KeyboardNavigationSettings CommandKey="Alt" FocusKey="P" />
Two key strokes --> <KeyboardNavigationSettings CommandKey="Alt" FocusKey="P + Y" />