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.
Full featured File Download Manager! Very similar to the AsynchUploadManager, just in the other direction. functionality: - download multiple files in asynch mode - set a limit to the number of simultaneous downloads - progress bar/cancel options for each - default to client side 'downloads' directory - Handle filestreams - convert on the fly using document processing {download as PDF} - zip on the fly - cache temporary files for sending via email as attachments - notify on complete per file or per batch Thanks!
The control will provide the ability to hover over an image and zoom-in the selected part in a previewer. Such control is available in Google Maps as shown in the attached screenshot Overview-Image-Map-Control.png. Yet another example is displayed in the second screenshot. You can comment and share your examples or features you would like this control to support.
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!
Allow the users to create their own attributes and to be able to work with their client representation after that.
Please, please, please bring the new RadTaskBoard to ASP.NET AJAX!
I was just reviewing the RadTileList and trying to figure out how to do a Kanban board with your controls, and came across what you just released via the RadTaskBoard, and that would be absolutely perfect to have for ASP.NET AJAX.
Thank you!
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.
Some times we get customers using the combobox as a show / hide panel for other stuff. While this is some what clever solution, the combo is not really designed for that. An alternative would be to use the panelbar, yet it does not fit the purpose of the control I have in mind. Details panel (or what ever name we come up with) is a control that has a title, sort of like the panelbar and content area that's always custom. The details pane should allow for two modes: overlay and displace e.g. overlay acts as the way combobox acts now and displace acts in a similar fashion to the current panel bar. Apart from the aforementioned usage, another example will be the configuration panel in the QSF.
In it's current state the RadButton only emulates the looks of a MenuButton, but not the behaviour. In my point of view, such control should prove valuable to customers. More over, there is a growing need of base controls since we already have a at least three such implementations. A RadMenuButton should be the base (or it's base should be the base) for all control specific implementations of a menu button
The multiline textbox should increase its high while the user types, after the currently available space if fulfilled. Like in Facebook "What's on your mind " textbox
It will be nice to have a countDown control with all the client/server events and the suite skins, which will enable the developer to show a visitor with a timer to complete a task (like finsih a purchase with a guranteed price for few minutes) and call a web service when the timer got to zero, and show a message to the client (with integrated Notificatoin object) about the price (changed or staed the same etc.) and let the developer decide if he wants to start the timer again or not. Thanks, ilan.
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>
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.
The current filtering of the grid wastes a lot of screen space If for example I want to filter a column to have values between X and Y. the column width especially on date column will need much more space for the filter than for the data actually shown. On the current filter of the grid the user cannot filter on columns he is not seeing My proposed implementation is simple but should work: The control will be similar to the Menu control and will render just like in the video two lines of filters: static and optional. It will have a filters collection. Each filter will have these basic properties: 1. AlwaysDisplay - if true the filter is always displayed and cannot be removed. 2. Displayed - if true the filter is displayed. if not it is displayed on the static list last button as an optional filter 3 Type - Can be single value, Multiple values (checkbox list), Single date, Date range, Textbox (for free text search in all of the columns). obviously with needed properties for values etc. 4. Text - the name of the filter 5. The actual property to filter by * pressing each filter will display a popup similar to the Custom menu sample with the needed filter type. selecting the value will update the filter text shown. * the static filter list will show a button for optional filters which can be shown on the line below. filters on the optional line can be removed with a click on a X button * all UI changes (adding/removing filters) should be on client side so the control will be very responsive. * over time filters can evolve so that the date range filter popup for example can show except for the obvious option of from X to Y other options for the user (e.g. last X weeks/days/years) and other ideas shown on the video I sent you The result the control produces is a LINQ expression which can be applied to the data source in a LINQ Where statement (my usage case) or other values (SQL where statement) that can be used by other users. The proposed new control has the following advantages: 1. It can be positioned anywhere 2. It can show fixed filters and optional filters 3. It can filter based on columns not visible on the grid 4. Optional filters can be removed quickly with the X button which provides faster change of filters for the user. The end result of this filter is a much easier UX for filtering data. it uses far less screen space and is modular enough for future columns and to filter data sources for things other than the grid