Telerik blogs

Latest

For the latest product updates, please visit Release.

  • Desktop WinForms

    RadRibbonBar - Keyboard navigation using Key tips

    The Keyboard navigation major feature is now available with the Q2 ServicePack1 release. You can start using it immediately in WPF and Silverlight and as a result enhance your application’s Usability and Accessibility. Try it yourself. The API The API is pretty straight-forward. First you should enable Key tips, for the instance of a RadRibbonBar, with simple attached property like follows. <telerik:RadRibbonBar telerik:KeyTipService.IsKeyTipsEnabled="True"> Then you can attach key tip text to every component in the RadRibbonBar with simple line of code. <telerik:ApplicationMenu telerik:KeyTipService.AccessText="F">  Some components need alternative key tip activation text like the RibbonGroup. Foe example one could be used for the DialogLauncher button and one for the group itself, when the group...
  • Desktop WinForms

    Explained: RadGridView for WinForms virtualization and its implications. The case with CellElement and RowElement

    As the Logical vs. Visual Grid Structure help article states, RadGridView for WinForms uses virtualization for its cells/rows and as of Q2 2010 there is column virtualization as well. What is virtualization? To put it simply, when you bind RadGridView to a DataTable with 1000 rows, you get 1000 data row objects created in RadGridView (of type GridViewDataRowInfo). However, not all data row objects can be visible at the same time in the RadGridView estate in your application. This is why only the visual rows that can be shown in the estate get created (these visual rows are of type GridDataRowElement), or about...
  • Desktop WinForms

    New goodies in RadGridView for WinForms: Drag and drop with RadGridViewDragDropService

    One of the new goodies that came with RadGridView Q2 2010 is the brand new drag and drop API, which offers a very flexible way to create custom drag and drop scenarios with ease. Each instance of RadGridView is associated with RadGridViewDragDropService that handles user drag and drop operations. It gives you out-of-the-box reordering of columns and movement of items between the group panel and the columns header. The service is also responsible for rows reordering in unbound mode when grouping and sorting features are not applied. In many cases, developers need to implement complex custom scenarios that are not covered by our products by default....
  • Desktop WinForms

    Export Beyond Excel with RadGridView for WinForms

    The RadControls for WinForms Q2 2010 beta release has been live for a couple of weeks now, and we have been getting excellent feedback on the fancy new features. Along with several brand new components (RadListControl, RadPageView and RadDesktopAlert to name a few), we have introduced a completely redesigned grid, along with numerous new features and possibilities. Up until now we have supported Export to Excel capabilities in RadGridView, and not much more. Although ExportToExcelML offers some cool and unique features, exporting only to Excel was not enough for our clients. Our integration with Telerik Reporting could not suit all of our client's requirements either. Now,...
  • Desktop WinForms

    RadReminder for WinForms brings Outlook interfaces to your application

    The Q2 2010 release introduces a brand new RadReminder component. Its purpose is to enable users to track different objects and their events. The architecture is pretty simple and intuitive and allows any IRemindObject implementation to be monitored by a RadReminder instance. The component comes with a built-in dialog that displays all the currently tracked objects in a grid and enables you to visually snooze or dismiss an item. The dialog is completely customizable and localizable and gives you the ability to modify each object’s display text and icon. Built-in reminder dialog Dialog’s display routine raises several events, allowing you to cancel...