Telerik blogs
  • Productivity

    Handling Schema Migrations

    If you have played around with the Fluent Mapping API you have most probably stumbled upon the issue of actually creating or migrating your database to the latest state. And while most tools suggest that schema operations should be performed during design time we give you the tools to either run them automatically or manually.  All you need to do in order to get your schema up to date is instantiate a context object and then access its schema handler. I have prepared a simple code snippet that makes sure every time I run my console application my database schema...
    January 12, 2011
  • People

    Free Agile Development and Testing Seminar in Pune Next Week

    Making Agile Development work in your organization Telerik & e-Zest Solutions Ltd. invites you for Two Free Seminars: INTRODUCTION The Agile methodology has been adopted by many organizations around the globe. Unfortunately, many still struggle with the various methodologies (XP, Scrum, Kanban etc), and can’t settle on just one. While some organizations are successful in implementing Agile with the development teams, they tend to forget other vital parts of the process, mainly testing. A session on how to choose which Agile methodology (or how to mix and match several pieces) to implement in your organization and how to do it. Are you new to Agile? Have challenges implementing an Agile...
    January 12, 2011
  • Release

    Telerik TeamPulse Q1 2011 Plans Revealed

    The first release for 2011 is approaching, so we decided to share with you a bit more about what we are developing for our project management tool - TeamPulse. With Q1 2011 our plans are to significantly expand both the depth and the breadth of the application and project life-cycle spectrum TeamPulse covers. With the upcoming release TeamPulse will introduce the ability to record bugs, issues, and risks giving users greater insight into overall product quality. The product will also introduce Goal Management, adding an extra layer of “requirements” to help teams plan more effectively and align perspectives and needs....
    January 12, 2011
  • Web

    How to Create Ad Rotator with Telerik TransitionControl and CoverFlow control for Silverlight

    function onSilverlightError(sender, args) { var appSource = ""; if (sender != null && sender != 0) { appSource = sender.getHost().Source; } var errorType = args.ErrorType; var iErrorCode = args.ErrorCode; if (errorType == "ImageError" || errorType == "MediaError") { return; } var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n" ; errMsg += "Code: "+ iErrorCode + " \n"; errMsg += "Category: " + errorType + " \n"; errMsg += "Message: " + args.ErrorMessage + " \n"; if (errorType == "ParserError") { errMsg += "File: " + args.xamlFile + " \n"; errMsg += "Line: " + args.lineNumber + " \n"; errMsg += "Position: " + args.charPosition + " \n"; } else if (errorType == "RuntimeError") { if (args.lineNumber != 0) { errMsg += "Line: " + args.lineNumber + " \n"; errMsg += "Position: " + args.charPosition + " \n"; } errMsg += "MethodName: " + args.methodName + " \n"; } throw new Error(errMsg); } Today I'm going to show you a very simple way to turn any ContentControl or a ListBox control into an AdRotator control. "What is AdRotator control?", you would ask. A common definition for an AdRotator is a control that lets you to show some data (most commonly ads) and change it periodically. An AdRotator control should be a control that lets you do that out-of-the-box without writing any code. Furthermore, switching the ads with a nice animation will give our AdRotator more polished and glamorous look. To accomplish this, we are going to use RadTransitionControl (a ContentControl) and RadCoverFlow (a ListBox)...
  • Productivity Reporting

    Connecting Telerik Reporting to SQL Azure via Entity Framework

    Download SqlAzure.EntityFramework (C# VS2010) - 160KB In the previous blog post from the series we discussed how to connect Telerik Reporting to a SQL Azure database using Open Access ORM with the OpenAccessDataSource component. Now it is time to demonstrate how to perform this with another very popular ORM – Microsoft ADO.NET Entity Framework and the EntityDataSource component. For the sake of this example we assume an existing SQL Azure account with the Adventure Works sample database already installed. Let’s start with a new ADO.NET Entity Data Model. To connect to the SQL Azure database specify the server name and the login credentials of your SQL Azure account, then choose the AdventureWorksLTAZ2008R2 sample database as shown below: To create the entity model,...
    January 11, 2011
  • Productivity

    Handling Schema Migrations

    If you have played around with the Fluent Mapping API you have most probably stumbled upon the issue of actually creating or migrating your database to the latest state. And while most tools suggest that schema operations should be performed during design time we give you the tools to either run them automatically or manually.  All you need to do in order to get your schema up to date is instantiate a context object and then access its schema handler. I have prepared a simple code snippet that makes sure every time I run my console application my database schema...
    January 12, 2011
  • People

    Free Agile Development and Testing Seminar in Pune Next Week

    Making Agile Development work in your organization Telerik & e-Zest Solutions Ltd. invites you for Two Free Seminars: INTRODUCTION The Agile methodology has been adopted by many organizations around the globe. Unfortunately, many still struggle with the various methodologies (XP, Scrum, Kanban etc), and can’t settle on just one. While some organizations are successful in implementing Agile with the development teams, they tend to forget other vital parts of the process, mainly testing. A session on how to choose which Agile methodology (or how to mix and match several pieces) to implement in your organization and how to do it. Are you new to Agile? Have challenges implementing an Agile...
    January 12, 2011
  • Release

    Telerik TeamPulse Q1 2011 Plans Revealed

    The first release for 2011 is approaching, so we decided to share with you a bit more about what we are developing for our project management tool - TeamPulse. With Q1 2011 our plans are to significantly expand both the depth and the breadth of the application and project life-cycle spectrum TeamPulse covers. With the upcoming release TeamPulse will introduce the ability to record bugs, issues, and risks giving users greater insight into overall product quality. The product will also introduce Goal Management, adding an extra layer of “requirements” to help teams plan more effectively and align perspectives and needs....
    January 12, 2011
  • Web

    How to Create Ad Rotator with Telerik TransitionControl and CoverFlow control for Silverlight

    function onSilverlightError(sender, args) { var appSource = ""; if (sender != null && sender != 0) { appSource = sender.getHost().Source; } var errorType = args.ErrorType; var iErrorCode = args.ErrorCode; if (errorType == "ImageError" || errorType == "MediaError") { return; } var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n" ; errMsg += "Code: "+ iErrorCode + " \n"; errMsg += "Category: " + errorType + " \n"; errMsg += "Message: " + args.ErrorMessage + " \n"; if (errorType == "ParserError") { errMsg += "File: " + args.xamlFile + " \n"; errMsg += "Line: " + args.lineNumber + " \n"; errMsg += "Position: " + args.charPosition + " \n"; } else if (errorType == "RuntimeError") { if (args.lineNumber != 0) { errMsg += "Line: " + args.lineNumber + " \n"; errMsg += "Position: " + args.charPosition + " \n"; } errMsg += "MethodName: " + args.methodName + " \n"; } throw new Error(errMsg); } Today I'm going to show you a very simple way to turn any ContentControl or a ListBox control into an AdRotator control. "What is AdRotator control?", you would ask. A common definition for an AdRotator is a control that lets you to show some data (most commonly ads) and change it periodically. An AdRotator control should be a control that lets you do that out-of-the-box without writing any code. Furthermore, switching the ads with a nice animation will give our AdRotator more polished and glamorous look. To accomplish this, we are going to use RadTransitionControl (a ContentControl) and RadCoverFlow (a ListBox)...
  • Productivity Reporting

    Connecting Telerik Reporting to SQL Azure via Entity Framework

    Download SqlAzure.EntityFramework (C# VS2010) - 160KB In the previous blog post from the series we discussed how to connect Telerik Reporting to a SQL Azure database using Open Access ORM with the OpenAccessDataSource component. Now it is time to demonstrate how to perform this with another very popular ORM – Microsoft ADO.NET Entity Framework and the EntityDataSource component. For the sake of this example we assume an existing SQL Azure account with the Adventure Works sample database already installed. Let’s start with a new ADO.NET Entity Data Model. To connect to the SQL Azure database specify the server name and the login credentials of your SQL Azure account, then choose the AdventureWorksLTAZ2008R2 sample database as shown below: To create the entity model,...
    January 11, 2011