Telerik blogs
  • Web Angular

    Top Tips for Getting the Most out of Kendo UI Grid for Angular

    Top Tips for Getting the Most out of Kendo UI Grid for Angular_270x123
    We've collected a list of our favorite tips for you, showing how to use some of the best built-in features of the Kendo UI grid in Angular.
    September 18, 2017
  • Web

    Top 17 Tips for Effective Grids in Web Apps

    Top 17 Tips for Effective Grids in Web Apps_270_123
    We've assembled our top tips on grids in one place to help you get the most out of the grids in your web applications. Check it out.
    August 23, 2017
  • Productivity Debugging

    Isolating a Problem in a Sample Project

    If you have contacted Telerik support before, chances are that you have been asked to send us a sample project. The time invested in isolating a problem before opening a ticket is well paid off. Such tickets require less time for investigation and are usually closed with only one or two replies. In almost all cases the problem can be easily isolated by following a few simple guidelines. Here they are.
    September 29, 2010
  • Web ASP.NET AJAX

    Common RadWindow issues and their solution

    The RadWindow control is part of the Telerik’s RadControls for ASP.NET AJAX suite and is intended to replace the standard browser’s popup (window.open()). Since the control is based on an IFRAME, it behaves just like one – basically, whatever can be done with an IFRAME, can be achieved with RadWindow as well. This fact is useful when you investigate a reason for some problem related to the RadWindow control. Just replace the RadWindow with a standard IFRAME or browser’s popup and see how your application will behave in this case. If the problem still exists, then it is not related to the...
    June 04, 2009
  • Web

    Saving some lines of code when using RadWindow

    If you are using some of the predefined modal dialogs part of RadWindow: Alert, Prompt and Confirm you may find this article quite handy. As you know the calls to these methods are asynchronous, thus you cannot stop the current UI thread in order to get the user feedback from the windows synchronously. This introduces some issues such as the need to declare class member variables whenever they may not be necessary. Due to that there have been a few requests on our support website to create a generic parameter inside the static calls of the dialogs with the purpose of carrying...