A new control that would respond to dynamic or highly relational data by showing relations to nodes would be extremely useful. Two examples are linked below: http://philogb.github.io/jit/static/v20/Jit/Examples/Hypertree/example1.html and http://www.visualthesaurus.com/app/view. The two examples show basic nodes and the ability for the end user to move through data to focus on specific data points and the map changes to show the relations stemming from that position. What would be useful to include would be the ability to define the points by some sort of type, and to colorize the points and/or connectors. The Telerik Diagram and Org Charts have a very basic type of relation - but are insufficient to map to the level of the examples. Where we would like to use this would be to map our software and services. Linking all dependencies and allowing a dynamic view of these would be extremely helpful. Our other business processes would most likely follow this example, where we could map our members to their services and costs, and rotate in on specific areas where we could focus on cost improvements.
The functionality for strongly typed model-bound controls provides a significant boost in re-usability and ease of development. The documentation and support for this feature is, for all intents and purposes, non-existent. Please provide demo applications for each data-control capable of model binding with full code showing how the make the feature work. Capabilities should include common usages such as placing a drop-down list into a radgrid row, CRUD, filtering, and data-annotation and validation.
So you don't have a dedicated place to put this so I'm placing it here with the hope the right person get it. I don't use the MSI to do my updates because I hate my controls being placed into ind folders that you came up with. I constantly find myself rummaging through them looking for the correct control. HOWEVER.. if I manually DL them and ref the DLL and create a folder of my own making all the controls flow in in alphabetical order and I can get to the exact one I need instantly. If the MSI can be changed to ask me for how I want them placed into VS so that happens I can then DL the MSI and get all the other features I lose doing it this way. After talking with CS/Tech support the asp.net/Core is for MVC type applications. I'd like to suggest dropping the word "core" and changing it to MVC to avoid confusion. So hope this gets to the right set of eyes. Cheers!
http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx <table> <tbody> <tr> <td>test1</td> <td> <p>test2</p> </td> </tr> <tr> <td> </td> <td> </td> </tr> </tbody> </table> Expected: https://www.screencast.com/t/ttBoNadV Actual: https://www.screencast.com/t/0rovtQC8OW
As we can find in telerik documentations, there are various controls properties that can be set from web.config. Like skin, render mode, etc. It is done with a list of keys under <appSettings> section in the web.config. See link below. https://docs.telerik.com/devtools/aspnet-ajax/general-information/web-config-settings-overview#control-properties-you-can-set-from-the-webconfig My sugestion is to add in this list the localization path property. So we can centralize the resources files location for big projects, like a web site under IIS with many webapplication under one site.
Hi,
It will be great to have a property in a raddock to automatically adjust its height/width to occupy the new space created when some other raddock in the layout is minimized. This will avoid the need for the user to adjust the height/width of the raddock which is still visible.
<!-- Load Facebook SDK for JavaScript -->
<script>
//Executes on page load
window.fbAsyncInit = function () {
FB.init({
appId: '{your-app-id}',
xfbml: true,
version: 'v2.5'
});
// Get Embedded Video Player API Instance
var my_video_player;
FB.Event.subscribe('xfbml.ready', function (msg) {
if (msg.type === 'video') {
my_video_player = msg.instance;
my_video_player.unmute();
}
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) { return; }
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
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