Telerik blogs

Latest

  • Web

    Ubiquitous: a funny word that unearths some PowerShell trivia

    Do you think that the word "ubiquitous" can be hard on a non-native English speaker's ears. It is hard for Bulgarians, that I am sure. I picked it for the title because I really like its the strangeness and because it has a nice allusion to the software development best practice of automating everything that you get your hands on: tests, build procedures, and deployment. You need that to gain predictability in your project and ensure rapid and often delivery of new features. What surprised me was Jeffrey Snover's (yes, the architect behind PowerShell) comment about the original use of the word...
  • Web

    All style tags after the first 30 style tags on an HTML page are not applied in Internet Explorer workaround

    Did you know that all style tags after the first 30 style tags on an HTML page are not applied in Internet Explorer? Well this applies to IE7 and LINK elements too and if you have such page for example you are lost: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>Untitled Page</title> <link type="text/css" rel="stylesheet" href="StyleSheet.css" /> <link type="text/css" rel="stylesheet" href="StyleSheet.css" /> <link type="text/css" rel="stylesheet" href="StyleSheet.css" /> <link type="text/css" rel="stylesheet" href="StyleSheet.css" /> <link type="text/css" rel="stylesheet" href="StyleSheet.css" /> <link type="text/css" rel="stylesheet" href="StyleSheet.css" /> <link type="text/css"...
  • Web

    The new Silverlight media player

    I just checked our brand new still unpublished Silverlight media player control and I have to say that I'm really amazed!!! Just check this:Isn't it cool? :-)Common guys post some more info/demos on this :-)...
  • Web

    -moz-user-select: -moz-none;

    Did you ever wonder how to get rid of these evil pseudo cells selection / borders in your html tables in FireFox?The solution is:     <table border="1" style="-moz-user-select: none;">        <tr>           <td>Cell</td>           <td>Cell</td>        </tr>      ...however... if you have an INPUT elements inside the cells you will definitely loose the selection inside the INPUT. You can try this example:     <table border="1" style="-moz-user-select: none;">        <tr>           <td<input type="text" /></td>           <td>Cell</td>        </tr>      ...So the question is: How to remove the cell selection borders and keep the selection in INPUT elements? ... and the answer is ...: -moz-user-select:...
  • Web

    Adding Google Gadgets to Sitefinity

    With the official release of Sitefinity 3.0 yesterday, a whole new world of easy web development has been opened-up for ASP.NET web developers. Sitefinity allows you to forget about "basic" website plumbing (like user management, caching, and site management) and instead focus on adding content and modules to your site that are unique to your business. Using Sitefinity as a starting point, you can have a powerful, easy to manage site up and running in a day instead of a week (or more). One of the easiest ways to extend the functionality of Sitefinity is by creating UserControls (the plain 'ol .ASCX variety) that...
    May 17, 2007