Telerik blogs
  • Release

    New online resources for the past two weeks (06/18/2007 - 07/01/2007)

    Below is a summary of the new online resources available for our ASP.NET controls: RadGridCode library entries: Filter RadGrid on external textbox key press:http://www.telerik.com/community/code-library/submission/b311D-mtkce.aspx Help topics: Insert/Update/Delete records -> How-to -> Put all items in edit mode without additional rebind (not published yet)
  • Release

    RadEditor and Community Server 2007 integration

    It's been a while since I had to work with Telligent's Community Server software. Our last attempt to use RadEditor as the default editor was back in CS version 2.0. The latest version (2007) features a new and easier way to add new editors for the blogs/forums/etc. parts of Community Server. I decided to update our code and write a new wrapper for RadEditor 7. The new code is cleaner, since it directly inherits from the RadEditor class instead of adding the editor as a child control:public class RadEditorWrapper: RadEditor, ITextEditor, ITextControl{...The new wrapper is available for download here. Inside the archive you will find the Telerik.CommunityServer.RadEditorWrapper.dll...
  • Release

    New online resources for the past three weeks (05/21/2007 - 06/03/2007)

    Below is a summary of the new online resources available for our ASP.NET controls: RadAjaxCode library entries: CrossPage requests with AjaxURl on the client:http://www.telerik.com/community/code-library/submission/b311D-mebkg.aspx RadInputCode library entries: RadNumericTextBox With Variable Decimal Digits (not rounded):http://www.telerik.com/community/code-library/submission/b311D-mkdek.aspx
  • Release

    New online resources for the past two weeks (05/06/2007 - 05/20/2007)

    Below is a summary of the new online resources available for our ASP.NET controls:RadGridHelp topics: ASP.NET AJAX Toolkit extenders in RadGrid:http://www.telerik.com/help/aspnet/grid/?grdAJAXToolkitExtenders.html Aligning columns in each level of hierarchical grid:http://www.telerik.com/help/aspnet/grid/?grdAlignColumnsInHierarchy.htmlCode library entries: Expand/collapse hierarchy with ajax request on double click:http://www.telerik.com/community/code-library/submission/b311D-mctme.aspx Expand/collapse hierarchy client-side on double click:http://www.telerik.com/community/code-library/submission/b311D-mchgd.aspx Single selection within each group of RadGrid:http://www.telerik.com/community/code-library/submission/b311D-mbgeb.aspx
  • Mobile

    On closing IFRAME tags

    I was debugging some obscure problem the other day. For some reason the __doPostBack JavaScript function was not defined (or “undefined” in JavaScript terms ;) ). It wouldn’t be so suspicious if I was able to view the source of the page and see the declaration of __doPostBack routine. It turned out some iframe break the whole thing. Consider the following html (notice that the iframe is in minimized form): <div>I am before the iframe</div><iframe src="http://www.telerik.com" /><div>I am after the iframe</div> In that case the second div was not rendered at all. IN ALL BROWSERS!!! First I thought it was one of “those” Internet...