Telerik blogs

Latest

  • Web ASP.NET AJAX

    AJAX >> Using AJAX to load a usercontrol that has JavaScript declared in it

    Normal 0 false false false MicrosoftInternetExplorer4   /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} One of the things one needs to take care of when converting an existing application to use MS AJAX is inline script blocks inside pages or user controls. Problem with these is that if the control is sent to the client as a result of a partial page update (e.g. AJAX call) the inline script block simply won’t execute at all. The...
    October 20, 2008
  • Web ASP.NET AJAX

    Codeless client-side data-binding for your ASP.NET AJAX DataGrid?

    With RadControls for ASP.NET AJAX Q3 Beta we have provided great client-side data-binding improvement for the grid and now you can bind your data to any web service or page method completely codeless: ...   <ClientSettings>       <DataBinding Location="MyWebService.asmx" SelectMethod="GetDataAndCount" />  ...     Using this new approach you can get both data and total items count in a single request and if you turn on client-side caching the grid will perform request to the server only when needed! I'm really excited to announce that we extended this even more and now you specify following new properties: SortParameterType - SelectMethod sort expressions argument type. Can be set to "String", "List", "Linq" and "Oql". Default is...
    October 20, 2008
  • Web ASP.NET AJAX

    Accessing RadControls for ASP.NET Ajax items with WatiN(by using only the html elements)

    Are you curious how to deal with the complicated rendering of RadControls and WatiN? If so, I will shed some light on this. Here is an example how to print the text of the specific node of RadTreeView and how to expand it: [STAThread] static void Main(string[] args) { IE ie = new IE("http://demos.telerik.com/aspnet/prometheus/TreeView/Examples/Programming/DataBinding/DefaultCS.aspx"); Element ulElement = ie.Element("UL", Find.ByClass("rtUL rtLines")); Element firstLiElement = ulElement.DomContainer.Element("LI", Find.ByIndex(1)); Span textSpanElement = (Span) firstLiElement.DomContainer.Div(Find.ByClass("rtTop")).DomContainer.Span(Find.ByClass("rtIn")); Console.WriteLine(textSpanElement.Text); Span plusSpanElement = (Span)textSpanElement.PreviousSibling; plusSpanElement.Click(); }   Yet another example how to click on a ...
    October 18, 2008
  • Web ASP.NET AJAX

    Beta for Q3 2008 - RadControls ASP.NET AJAX is now available!

    We are very excited to announce the Beta of Q3 2008 for RadControls ASP.NET AJAX. These are the key areas in which we have been working in the past couple of months: Improved Performance Client-Side Features Improving Data Access MVC Support jQuery integration Right-to-Left Support Merging charting into the Telerik.Web.UI.dll Full details and download instructions are available in this forum thread. Enjoy the new bits and send us any feedback you have!
    October 17, 2008
  • Web ASP.NET MVC

    The Grid in Microsoft ASP.NET MVC Beta

    As you know this week Microsoft released ASP.NET MVC Beta and I've updated my last grid example to the latest ASP.NET MVC version. I needed to change only two things: - Ajax.Form changed to Ajax.BeginForm/Ajax.EndForm - Html.SubmitButton changed to plain <input type="submit" /> and everything worked instantly! [Live | Download]...
    October 17, 2008