Telerik blogs
  • Release

    New online resources for the past four weeks (11/01/2008 - 12/01/2008)

    Below is a summary of the new online resources available for our ASP.NET AJAX/Winforms/WPF/Silverlight controls: RADCONTROLS FOR ASP.NET AJAX RadScheduler Help topics Appearance and Styling -> Horizontal Scrolling:http://www.telerik.com/help/aspnet-ajax/scheduler-horizontal-scrolling.html Appearance and Styling > Inline Form Resizing:http://www.telerik.com/help/aspnet-ajax/scheduler-inline-form-resizing.html Knowledge base articles Limit the number of concurrent appointments just for a single resource:http://www.telerik.com/support/kb/aspnet-ajax/scheduler/limit-the-number-of-concurrent-appointments-just-for-a-single-resource.aspx RadTreeViewHelp topics How To > Client-Side Programming > How-to distinguish whether node.get_parent() returns the parent node or the parent treeview:http://www.telerik.com/help/aspnet-ajax/treeview-get-parent.html How To > Client-Side Programming > Implement findNodesByAttribute method:http://www.telerik.com/help/aspnet-ajax/treeview-find-nodes-by-attribute.html How To > Client-Side Programming > Set the tooltip of the node with javascript:http://www.telerik.com/help/aspnet-ajax/treeview-set-node-tooltip-clientside.html Usability > Validation:http://www.telerik.com/help/aspnet-ajax/treeview-validation.html How To > CheckBoxes > Validate treeview by checked nodes:http://www.telerik.com/help/aspnet-ajax/validate-treeview-by-checked-nodes.html Code library entries Undo Drag & Drop operations:http://www.telerik.com/community/code-library/aspnet-ajax/treeview/undo-drag-drop-operations.aspx FindNodebyText() case...
    December 11, 2008
  • Web ASP.NET AJAX

    Taming Ajaxified asp:HiddenField Controls in Internet Explorer

    If you are using asp:HiddenField controls (rendered as <input type="hidden" />) in your website and update their values with AJAX requests, you may observe some unexpected changes in the page layout in Internet Explorer (IE). It will seem that an empty line is inserted at each location where a HiddenField control resides. The behavior is observed only in IE and looks like a problem caused by the browser or the MS AJAX client-side framework. A quite easy workaround for this glitch is to wrap the HiddenField in a container with no height and reduced font size. Here is an...
    December 09, 2008
  • Web ASP.NET AJAX

    Easily persist RadTabStrip Selected Tab using client-side API

    While working on a recent "real" project for Telerik, I used the RadTabStrip for ASP.NET AJAX to provide users with a list of content they could navigate. It was simple enough. A RadTabStrip with a few tabs, a RadMultiPage holding each tab's content, and content on each pageview that linked to new pages in the website. With very little effort, I had a rich, tabbed interface that worked completely cross browser. But then during beta testing, a tester reported a bug: if they navigated to a new page by clicking on content in the TabStrip, then clicked their browser's back button,...
    December 05, 2008
  • Web ASP.NET AJAX

    RadTips, Episode 10: Add an 'ExportToPdf' Button to the RadEditor for ASP.NET AJAX

    Welcome back to another episode of RadTips, a series of screencasts offering tips and tricks for using Telerik's RadControls for ASP.NET AJAX. If you've missed previous episodes, be sure to check them out. Each is only a few minutes long and covers a specific feature of the RadControls. Here is a list of the last few episodes... Getting Started with the RadScheduler for ASP.NET AJAX Using the LinqDataSource in your RadGrid for ASP.NET AJAX  Customizing Appointments with Resources in the RadScheduler for ASP.NET AJAX  Customizing Templates in the RadScheduler for ASP.NET AJAX  Spell-Checking with the RadSpell for ASP.NET AJAX This Tip In this episode...
    December 03, 2008
  • Web ASP.NET AJAX

    Tip of the day - Modal Dialogs

    When we have a running application and we want to show a modal dialog window what we generally do is more or less the following: var window = new MyDialogWindow(); window.ShowDialog();   Doing that works great - the dialog window shows and is modal. It has just one tiny defect - if you switch from the running application to another one (i. e. using Alt + Tab) and then come back to the running app the modal dialog window is not showing and the app is inactive. The solution - just assign the parent window to the Owner property of your modal dialog window :  var window = new MyDialogWindow(); window.Owner = this;  window.ShowDialog(); ...
    December 02, 2008