Telerik blogs
  • Mobile

    Windows 8 Primer–Data Binding (Part 1)

    Data-binding is often thought of as an advanced topic, but there really is no reason for that. data-binding is Critical to writing XAML applications Not very difficult to learn A very powerful technique Note to Silverlight, WPF and Windows Phone Programmers: Nothing Here Is New.  Data-binding in Windows 8 works exactly as you expect. The basic idea behind data-binding couldn’t be simpler: we are going to provide values to UIElements based on the values of objects or of other UIElements.  In this first tutorial, we’ll keep it simple and bind the value of POCO (Plain Old CLR Objects) to UI elements. For example, if I have...
    August 10, 2012 2 min read
  • Web ASP.NET AJAX

    Migrating OnClientClick handlers from ASP button to Telerik’s ASP.NET AJAX Button

    Let’s start with some background – a common need is for a button to execute some JavaScript code in order to create a more responsive page. With the standard ASP:Button the OnClientClick is used to specify this execution statement. Take the following simple example: <script type="text/javascript">     function ButtonClick(button) {         alert("The Button with ID " + button.id + " was clicked.");     } </script> <asp:Button ID="Button1" Text="Regular Button" OnClientClick="ButtonClick(this); return false;" runat="server" />   What you can see here is a function called with parentheses, an argument provided to the function and the return false; statement that prevents the postback. The case with Telerik’s ASP.NET AJAX Button is slightly different, however. It follows the convention all other Telerik ASP.NET AJAX...
    August 10, 2012 4 min read
  • Web

    Ask Kendo UI &ndash; Server Side Sorting With WebAPI

    In the past few months, I’ve learned a lot about WebAPI and using Kendo UI with ASP.NET by creating the HTML5 Development For ASP.NET Developers series. While the company behind Kendo UI has a distinguished .NET pedigree, Kendo UI itself is completely server agnostic. That means...
    August 10, 2012 11 min read
  • Mobile

    From Soup To Nuts with RadControls for Metro (XAML)

    In this second “From Soup To Nuts” post we’ll look at Windows 8 applications built using the C#/XAML RadControls for Windows 8. For information on using the HTML5/JS/CSS3 version, see Michael Crump’s blog post. Setting up Your Development Environment Before getting started, you will need to download and install the following items: The Windows 8 Release Preview can be downloaded from the Windows 8 Download Center.  MSDN subscribers can download the RTM (Release to Manufacturing) version from their accounts.  Either version will work with the RadControls. Visual Studio 2012 Release Candidate We’ll be using Visual Studio 2012 throughout this and future blog posts.  You can download...
    August 09, 2012 3 min read
  • Mobile

    Windows 8 Primer–Data Binding (Part 1)

    Data-binding is often thought of as an advanced topic, but there really is no reason for that. data-binding is Critical to writing XAML applications Not very difficult to learn A very powerful technique Note to Silverlight, WPF and Windows Phone Programmers: Nothing Here Is New.  Data-binding in Windows 8 works exactly as you expect. The basic idea behind data-binding couldn’t be simpler: we are going to provide values to UIElements based on the values of objects or of other UIElements.  In this first tutorial, we’ll keep it simple and bind the value of POCO (Plain Old CLR Objects) to UI elements. For example, if I have...
    August 10, 2012 2 min read
  • Web ASP.NET AJAX

    Migrating OnClientClick handlers from ASP button to Telerik’s ASP.NET AJAX Button

    Let’s start with some background – a common need is for a button to execute some JavaScript code in order to create a more responsive page. With the standard ASP:Button the OnClientClick is used to specify this execution statement. Take the following simple example: <script type="text/javascript">     function ButtonClick(button) {         alert("The Button with ID " + button.id + " was clicked.");     } </script> <asp:Button ID="Button1" Text="Regular Button" OnClientClick="ButtonClick(this); return false;" runat="server" />   What you can see here is a function called with parentheses, an argument provided to the function and the return false; statement that prevents the postback. The case with Telerik’s ASP.NET AJAX Button is slightly different, however. It follows the convention all other Telerik ASP.NET AJAX...
    August 10, 2012 4 min read
  • Web

    Ask Kendo UI &ndash; Server Side Sorting With WebAPI

    In the past few months, I’ve learned a lot about WebAPI and using Kendo UI with ASP.NET by creating the HTML5 Development For ASP.NET Developers series. While the company behind Kendo UI has a distinguished .NET pedigree, Kendo UI itself is completely server agnostic. That means...
    August 10, 2012 11 min read
  • Mobile

    From Soup To Nuts with RadControls for Metro (XAML)

    In this second “From Soup To Nuts” post we’ll look at Windows 8 applications built using the C#/XAML RadControls for Windows 8. For information on using the HTML5/JS/CSS3 version, see Michael Crump’s blog post. Setting up Your Development Environment Before getting started, you will need to download and install the following items: The Windows 8 Release Preview can be downloaded from the Windows 8 Download Center.  MSDN subscribers can download the RTM (Release to Manufacturing) version from their accounts.  Either version will work with the RadControls. Visual Studio 2012 Release Candidate We’ll be using Visual Studio 2012 throughout this and future blog posts.  You can download...
    August 09, 2012 3 min read