Telerik Forums
Community Forums Forum
2 answers
82 views
  Hi,

     I have a DNN site and I was thinking about using some of the Telerik DNN skins. i was wondering if I had to have a seperate license to use these DNN skins ?     
   thanks
IQworks
Top achievements
Rank 1
 answered on 26 Mar 2010
1 answer
126 views
I have a site with a messy URL.  A number of key fields are passed using query parameters.  I would like to use a URL rewrite tool to display a friendlier URL to the user and for Search Engine Optimization (SEO).  I am looking at the IIS 7.0 URL rewrite capabilities, but I thought Sitefinity/Telerik provided some sort of URL rewrite capablity.  Can you tell me if it does, and if it does point me to some documentation as well as an example?

Thank you.
Georgi
Telerik team
 answered on 25 Mar 2010
0 answers
78 views
i have a rad data grid with rad combo in it but the data gets laded from the DB alternatively. i might be missing or might have done something wrong.Hope to get a reply....


My aspx.Vb

Imports System.Data
Imports ExceptionHandling
Imports NDSBLL
Imports NDSDAL
Imports System.DirectoryServices
Imports System.Security.Principal
Imports AjaxControlToolkit
Imports Telerik.Web.UI


Partial Class Utilities_SapDataConvertion
    Inherits System.Web.UI.Page
    Public strResult As String()
    Public objUtilitiesinfo As NDSBLL.UtilitiesInfo = Nothing
    Public objUtilitiesDal As NDSDAL.UtilitiesDal = Nothing
    Public objinfo As NDSBLL.AdminInfo = Nothing
    Public objdal As NDSDAL.AdminDal = Nothing
    Dim strErrorLog As String = ConfigurationManager.AppSettings.Get("ErrorLog")
    Dim dsCustomer As DataSet
    Dim strPage As String


    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Try
            AccessRights()
            If Not Page.IsPostBack Then
                Session("UserId") = strResult(2)

                PopulateGrid()
            End If
       
        Catch ex As Exception
            ErrorHandler.RaiseError(ex, strErrorLog)
        End Try
    End Sub
    Private Sub AccessRights()
        Try
            strPage = System.IO.Path.GetFileName(System.Web.HttpContext.Current.Request.Url.AbsolutePath)
            Dim struser As New WindowsPrincipal(System.Security.Principal.WindowsIdentity.GetCurrent())
            objdal = New NDSDAL.AdminDal()
            objinfo = New NDSBLL.AdminInfo()
            objinfo.LoginId = ExtractUserName(struser.Identity.Name)
            Dim intLen As Integer
            intLen = strPage.IndexOf(".")
            objinfo.FormName = strPage.Substring(0, intLen)
            strResult = objdal.ValidateUser(objinfo)
            ''''''''''''''''
            If (strResult(0) = True And strResult(1) = True) Then
                btnConvert.Enabled = True
            ElseIf (strResult(0) = False And strResult(1) = False) Then
                Dim apnlUtilities As AccordionPane = CType(Master.FindControl("apnlUtilities"), AccordionPane)
                Dim lnkSapContractConvert As LinkButton = CType(apnlUtilities.FindControl("lnkSapContractConvert"), LinkButton)
                Response.Redirect("~/UnAuthorization.aspx?file=" + lnkSapContractConvert.Text.ToString, False)
                Exit Sub
            ElseIf (strResult(0) = True And strResult(1) = False) Then
                btnConvert.Enabled = False
            ElseIf (strResult(0) = False And strResult(1) = True) Then
                btnConvert.Enabled = True
            End If
            ''''''''''''''''
        Catch ex As Exception
            ErrorHandler.RaiseError(ex, strErrorLog)
        End Try
    End Sub
    Public Function ExtractUserName(ByVal path As String) As String
        Try
            Dim userPath As String() = path.Split(New Char() {"\"c})

            Return userPath(userPath.Length - 1)
        Catch ex As Exception
            ErrorHandler.RaiseError(ex, strErrorLog)
        End Try
    End Function


    Private Sub PopulateGrid()
        Try
            Dim dv As New DataView
            Dim dtStandard As New DataTable

            objUtilitiesinfo = New NDSBLL.UtilitiesInfo
            objUtilitiesDal = New NDSDAL.UtilitiesDal
            If (ViewState("sortExpr")) IsNot Nothing Then
                dv.Table = objUtilitiesDal.GetSapContractConvert().Tables(0)
                dv.Sort = DirectCast(ViewState("sortExpr"), String) + " " + ViewState("sortDirection")
            Else
                dv = objUtilitiesDal.GetSapContractConvert().Tables(0).DefaultView
            End If
            dtStandard = objUtilitiesDal.GetSapContractConvert().Tables(1)
            ViewState("dtStandard") = dtStandard
            gvSap.DataSource = dv
            gvSap.DataBind()

        Catch ex As Exception
            ErrorHandler.RaiseError(ex, strErrorLog)
        Finally
            objUtilitiesinfo = Nothing
            objUtilitiesDal = Nothing
        End Try
    End Sub
    Private Sub Save()
        Try
            Dim intOutput As Integer
            Dim i As Integer
            objUtilitiesinfo = New NDSBLL.UtilitiesInfo
            objUtilitiesDal = New NDSDAL.UtilitiesDal

            objUtilitiesinfo.UserId = Session("UserId")

            For i = 0 To gvSap.Items.Count - 1
                If DirectCast(gvSap.Items(i).FindControl("chkSelection"), CheckBox).Checked Then
                    txtCheckboxCount.Text = txtCheckboxCount.Text.Trim + 1
                    txtCheckboxCount.Text = txtCheckboxCount.Text.Trim
                    Dim ddlStandardCode As DropDownList
                    ddlStandardCode = CType(gvSap.Items(i).FindControl("ddlStandardCode"), DropDownList)
                    objUtilitiesinfo.StandardCode = ddlStandardCode.SelectedValue.ToString()
                    objUtilitiesinfo.SapContractNo = CType(gvSap.Items(i).FindControl("lblContractNo"), Label).Text
                    objUtilitiesinfo.CustomerCode = CType(gvSap.Items(i).FindControl("lblCustomerId"), Label).Text
                    objUtilitiesinfo.StandardType = CType(gvSap.Items(i).FindControl("lblPinType"), Label).Text
                    objUtilitiesinfo.Status = CType(gvSap.Items(i).FindControl("lblStatus"), Label).Text

                    intOutput = objUtilitiesDal.InsertSapContractConvert(objUtilitiesinfo)
                End If
            Next
            'If intOutput = -1 Then
            '    ScriptManager.RegisterStartupScript(Me, Me.GetType(), "Msg", "<script>alert('Convertion failed');</script>", False)
            If (txtCheckboxCount.Text = "0") Then
                ScriptManager.RegisterStartupScript(Me, Me.GetType(), "Msg", "<script>alert('Please select atleast one SAP Contract to proceed further');</script>", False)

            End If
            If intOutput = 1 Then
                ScriptManager.RegisterStartupScript(Me, Me.GetType(), "Msg", "<script>alert('The Selected SAP Contracts are converted to NDS Contracts');</script>", False)
            End If
        Catch ex As Exception
            ErrorHandler.RaiseError(ex, strErrorLog)
        Finally
            objUtilitiesinfo = Nothing
            objUtilitiesDal = Nothing
        End Try
    End Sub
    ''Protected Sub gvSap_PageIndexChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewPageEventArgs) Handles gvSap.PageIndexChanging
    ''    Try
    ''        gvSap.PageIndex = e.NewPageIndex
    ''        PopulateGrid()
    ''    Catch ex As Exception
    ''        ErrorHandler.RaiseError(ex, strErrorLog)
    ''    End Try
    ''End Sub


    Protected Sub btnConvert_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnConvert.Click
        Try
            Save()
            'ddlCustomer.SelectedIndex = -1
            'rdbStandard.Checked = True
            'ddlStandardCode.SelectedIndex = -1
            'ddlStatus.SelectedIndex = -1

            PopulateGrid()

        Catch ex As Exception
            ErrorHandler.RaiseError(ex, strErrorLog)
        End Try
    End Sub

    Protected Sub btnCheckAll_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCheckAll.Click
        ''Dim i As Integer
        ''Try
        ''    For i = 0 To gvSap.Rows.Count - 1
        ''        CType(gvSap.Rows(i).FindControl("chkSelection"), CheckBox).Checked = True
        ''    Next
        ''Catch ex As Exception
        ''    ErrorHandler.RaiseError(ex, strErrorLog)
        ''End Try
    End Sub

    Protected Sub btnReset_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnReset.Click
        ''Dim i As Integer
        ''Try
        ''    For i = 0 To gvSap.Rows.Count - 1
        ''        If DirectCast(gvSap.Rows(i).FindControl("chkSelection"), CheckBox).Checked Then
        ''            CType(gvSap.Rows(i).FindControl("chkSelection"), CheckBox).Checked = False
        ''        End If
        ''    Next
        ''Catch ex As Exception
        ''    ErrorHandler.RaiseError(ex, strErrorLog)
        ''End Try
    End Sub



    ''Protected Sub gvSap_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles gvSap.ItemDataBound
    ''    Try
    ''        objUtilitiesinfo = New NDSBLL.UtilitiesInfo
    ''        objUtilitiesDal = New NDSDAL.UtilitiesDal
    ''        Dim strStandardCode As String

    ''        Dim lblContract As Label
    ''        ''lblContract = e.Row.FindControl("lblContractNo")
    ''        lblContract = e.Item.FindControl("lblContractNo")
    ''        ''If e.Row.RowType = DataControlRowType.DataRow Then
    ''        Dim gridDataItem As GridDataItem = TryCast(e.Item, GridDataItem)
    ''        Select Case e.Item.ItemType
    ''            Case GridItemType.Item

    ''                Dim ddlStandardCode As RadComboBox
    ''                ''ddlStandardCode = CType(e.Row.FindControl("ddlStandardCode"), DropDownList)
    ''                ddlStandardCode = CType(e.Item.FindControl("ddlStandardCode"), RadComboBox)
    ''                ddlStandardCode.DataSource = ViewState("dtStandard")
    ''                ddlStandardCode.DataTextField = "nvchStandardCode"
    ''                ddlStandardCode.DataValueField = "intStandardId"
    ''                ddlStandardCode.DataBind()

    ''                strStandardCode = GetLocalResourceObject("DefaultStandardcode").ToString()
    ''                'ddlStandardCode.Items.FindByText(strStandardCode).Selected = True
    ''                ddlStandardCode.Items.FindItemByText(strStandardCode).Selected = True

    ''            Case GridItemType.Item
    ''                'If e.Row.RowType = DataControlRowType.DataRow Then
    ''                If (CType(e.Item.FindControl("chkSelection"), CheckBox).Checked) = True Then
    ''                    e.Item.Visible = False
    ''                    'End If
    ''                End If
    ''        End Select
    ''    Catch ex As Exception
    ''        ErrorHandler.RaiseError(ex, strErrorLog)
    ''    Finally
    ''        objUtilitiesinfo = Nothing
    ''        objUtilitiesDal = Nothing
    ''    End Try
    ''End Sub

    Protected Sub gvSap_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles gvSap.ItemDataBound
        Try
            objUtilitiesinfo = New NDSBLL.UtilitiesInfo
            objUtilitiesDal = New NDSDAL.UtilitiesDal
            Dim strStandardCode As String

            Dim lblContract As Label
            ''lblContract = e.Row.FindControl("lblContractNo")
            lblContract = e.Item.FindControl("lblContractNo")
            ''If e.Row.RowType = DataControlRowType.DataRow Then
            Dim gridDataItem As GridDataItem = TryCast(e.Item, GridDataItem)
            Select Case e.Item.ItemType
                Case GridItemType.Item

                    Dim ddlStandardCode As RadComboBox
                    ''ddlStandardCode = CType(e.Row.FindControl("ddlStandardCode"), DropDownList)
                    ddlStandardCode = CType(e.Item.FindControl("ddlStandardCode"), RadComboBox)
                    ddlStandardCode.DataSource = ViewState("dtStandard")
                    ddlStandardCode.DataTextField = "nvchStandardCode"
                    ddlStandardCode.DataValueField = "intStandardId"
                    ddlStandardCode.DataBind()

                    strStandardCode = GetLocalResourceObject("DefaultStandardcode").ToString()
                    'ddlStandardCode.Items.FindByText(strStandardCode).Selected = True
                    ddlStandardCode.Items.FindItemByText(strStandardCode).Selected = True

                Case GridItemType.Item
                    'If e.Row.RowType = DataControlRowType.DataRow Then
                    If (CType(e.Item.FindControl("chkSelection"), CheckBox).Checked) = True Then
                        e.Item.Visible = False
                        'End If
                    End If
            End Select
        Catch ex As Exception
            ErrorHandler.RaiseError(ex, strErrorLog)
        Finally
            objUtilitiesinfo = Nothing
            objUtilitiesDal = Nothing
        End Try
    End Sub
End Class

My aspx

<%@ Page Language="VB"
        Theme="NDS"
        MasterPageFile="~/NDSMASTER2.master"
        AutoEventWireup="false"
        CodeFile="SAPContractConvertion.aspx.vb"
        Inherits="Utilities_SapDataConvertion" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<asp:Content ID="Content1" ContentPlaceHolderID="contentplaceholder1" runat="Server">
   <script language="javascript" type="text/javascript">
   
   </script>

<table style="width:100%; font-family:Verdana; font-size:11px;"  border="0">
    <tr class="TRHeader">
        <td align="center" colspan="2">
            <span>Conversion of Sap Data</span>
        </td>        
    </tr>
    <tr>
      <td style="height:6%" colspan="2"></td>
    </tr>
    <tr>
        <td style="width: 82px" ><asp:TextBox ID="txtCheckboxCount" runat="server" Text="0" Visible ="false" ></asp:TextBox>
        </td>
        </tr>  
    <%--<tr>
        <td style="width:20%">
            <asp:label ID="lblCustomer"  CssClass="label"  runat="server" Text="Customer" ></asp:label>
            <span style="font-weight:bold; color:red">*</span>
        </td>    
        <td>
            <asp:DropDownList ID="ddlCustomer" SkinID="ddlMedium" runat="server" ></asp:DropDownList>
        </td>       
    </tr>
    <tr>
         <td>
                <asp:Label ID="lblPinType" runat="server" CssClass="label" Text="Pin Type"></asp:Label>
                <span style="font-weight:bold; color:Red">*</span>
        </td>
        <td>
                <asp:RadioButton ID="rdbStandard" runat="server" Checked="true" GroupName ="select" tabIndex="8"></asp:RadioButton>
                <asp:Label ID="lblStandard" runat="server" CssClass="label" Text="Standard"></asp:Label> &nbsp;                           
                
        </td>
    </tr>
    <tr>
        <td>
        </td>
        <td>
                <asp:RadioButton ID="rdbNonStandard" runat="server" GroupName="select" tabIndex="10"></asp:RadioButton>
                <asp:Label ID="lblNonStandard" runat="server" CssClass="label" Text="Non Standard"></asp:Label> &nbsp;                
        </td>
    </tr>
    <tr>
        <td>
                <asp:Label ID="lblStandardCode" CssClass="label" runat="server" Text="Standard"></asp:Label>
                <span style="font-weight:bold; color:red">*</span>
        </td>
        <td>
                <asp:DropDownList ID="ddlStandardCode" runat="server" SkinID="ddlMedium" ToolTip="Please Select a Standard Code" tabIndex="6"></asp:DropDownList>
        </td>         
    </tr>
    <tr>
        <td>
                <asp:Label ID="lblStatus" cssClass="label" runat="server" Text="Status"></asp:Label>
                    
        </td>
        <td>
                <asp:DropDownList ID="ddlStatus" runat="server" SkinID="ddlMedium" ToolTip="Select Status" TabIndex="9"></asp:DropDownList>
        </td>
    </tr>--%>
    
    <tr>
      <td style="height:20%" colspan="2"></td>
    </tr>
    <tr>
      <td style="height:20%" colspan="2"></td>
    </tr>
    <tr>
        <td colspan="2" align ="center" >
          <%--  <asp:Panel ID="pnlSap" runat="server" Height="300px" Width="650px" ScrollBars="Auto">--%>
                    
                    
  <%--'-----------------------------------------------------------------------------------------%>                  
                  
                     <telerik:RadGrid ID="RadgvSap" runat="server"  AllowMultiRowSelection ="true" AllowMultiRowEdit ="true" AllowSorting="true"  AutoGenerateColumns = "false"
                        AllowCustomPaging = "true"   
                        HeaderStyle-BackColor="Silver" >
                         <ClientSettings  >
                         <Selecting  AllowRowSelect="true"  EnableDragToSelectRows="true"/>
                         </ClientSettings>
                       <MasterTableView   >
                       <Columns>
                       
                        <telerik:GridClientSelectColumn Visible ="true"  ItemStyle-HorizontalAlign = "Left"  UniqueName = "chkSelection" HeaderText = "Selection"  />
                       
                       <telerik:GridBoundColumn  DataField="vchCustomer"  HeaderText="Customer" SortExpression = "vchCustomer">
                       <HeaderStyle HorizontalAlign = "Center"/>
                       <ItemStyle HorizontalAlign="Left" Width="20%" />
                       </telerik:GridBoundColumn>
                        
                       <telerik:GridBoundColumn  DataField="vchContractCode"  HeaderText="SAP Contract" SortExpression = "vchContractCode">
                       <HeaderStyle HorizontalAlign = "Center"/>
                       <ItemStyle HorizontalAlign="Left" Width="10%" />
                       </telerik:GridBoundColumn>
                        
                        <telerik:GridBoundColumn  DataField="vchDescription"  HeaderText="SAP Desc" SortExpression = "vchDescription">
                       <HeaderStyle HorizontalAlign = "Justify"/>
                       <ItemStyle HorizontalAlign="Left" Width="20%" />
                       </telerik:GridBoundColumn>
                        
                         <telerik:GridBoundColumn  DataField="vchPinType"  HeaderText="Pin Type" SortExpression = "vchPinType">
                       <HeaderStyle HorizontalAlign = "Center"/>
                       <ItemStyle HorizontalAlign="Left" Width="20%" />
                       </telerik:GridBoundColumn>
                        
                        <telerik:GridTemplateColumn Visible = "true" HeaderText="StandardCode">
                        <ItemTemplate>
                        <telerik:RadComboBox ID="ddlStandardCode" runat = "Server" EnableLoadOnDemand="true">
                        </telerik:RadComboBox>
                        </ItemTemplate>
                        </telerik:GridTemplateColumn>
                       
                       <telerik:GridBoundColumn  DataField="vchStatus"  HeaderText="Status" SortExpression = "vchStatus">
                       <HeaderStyle HorizontalAlign = "Center"/>
                       <ItemStyle HorizontalAlign="Left" Width="5%" />
                       </telerik:GridBoundColumn>
                       
                       
                       </Columns>
                       </MasterTableView>
                </telerik:RadGrid>
                             
           <%-- </asp:Panel> --%>
            </td> </tr>
            <tr></tr> <tr></tr><tr></tr><tr></tr>
            <%--<tr><td align ="center" >
                <asp:Button ID="btnConvert" runat="server" Text="Convert to NDS Contract"/>     
            </td></tr>         --%>    
    

</table>
<table style="width :650px">
<tr>
<td align ="center" style="width: 2754px" >
<asp:Button  ID="btnConvert" runat="server" Text="Convert to NDS Contract"/>     
<asp:Button  ID="btnCheckAll" runat="server" Text="Check All"/>     
<asp:Button  ID="btnReset" runat="server" Text="Reset"/>
</td>
</tr>

</table>  
   
</asp:Content>  















Saravanan
Top achievements
Rank 1
 asked on 24 Mar 2010
0 answers
85 views
I need to create a site map to improve how Google crawls the site.  I am looking for advice on what are good tools to use to produce the XML file, robots.txt, and ror.xml files.  Thank you.
Michael Webster
Top achievements
Rank 1
 asked on 23 Mar 2010
6 answers
345 views
Hi,

I couldn't find a better place to post this question/suggestion - is there a Telerik how-to book in the works by anyone?  I would love to see the code alongside with text explaining how and why things are done in certain ways. Maybe a chapter or two focusing on integrating controls, with and without the AjaxManager, using web services, and client-side programming using the Telerik lib? :)

Best Regards,
Alex
Ivo
Telerik team
 answered on 22 Mar 2010
0 answers
105 views
Hello,

I would like to hear a little more about how others use TFS to manage their projects in regards to Iterations and Areas and maybe give some constructive criticism and helpful advice on possible problems with our methods.

To give a background we have several SaaS solutions for US imports that are always updated on a monthly to quarterly basis.  We're a mixed environment with VB6, .NET 2.0 and WPF (.NET 3.5).   We also have a few contract projects that we're keeping separate within TFS.

So-far we've been creating work items tagged with an iteration of "Dev", "QA", "Release" with a few sub-categories for reporting.  These iterations change on the work items as we move from one stage to another.

Our areas are set to the actual or projected release... i.e. Release 2009.1, .2, .3 etc...

During releases we branch our code into the release name and set the iterations on all tickets that are within that release to the appropriate area (QA, Stage, Release etc).

This has worked OK for us, but I believe there may be a better way especially when using the Telerik work item manager.

My quesiton really is are we using iterations and areas the way they were meant to be used?

Ron Barone
Top achievements
Rank 2
 asked on 19 Mar 2010
2 answers
110 views
  Hi,
   In the forums, beside a posters name, I see these from time to time. 
   what constitutes the designation of "Intermediate", "Master" and "MVP" ?  Is there a place I can go to read about these ?  just curious.
 thanks
IQworks
Top achievements
Rank 1
 answered on 12 Mar 2010
10 answers
807 views
I thought that this title would get your attention.

I love the r.a.d. tool suite because the engineering that goes into these products is top-notch.

But what I'm going to make a push for here is to now take the tools to the next level by adding GUI sexiness to the mix.  What I'm getting at here is that web world seems to be quickly becoming Web 2.0 centric with AJAX all the buzz and technologies like JSON and visual effects libraries like Dojo, Scriptaculous, moo.fx, and Walter Zorn's Drag and Drog library.

I think that now is time to add visual pizzazz to all of the tools including alpha channeled PNG graphics (as standard, even with IE), opacity, color shifting of objects, fading, animation (both linear and along paths such as parabolas, ellipse, sinoidal, etc.) and of course acceleration of objects in motion (acceleration and deceleration).  In other words, could telerik make a standard "library" of features that all of its tools could call upon -- ala "prototype" or "behaviour" or "scriptaculous".

If this could be so, then I would propose that we send telerik links to examples of what we really really want in such a "library".  This will help them visualize exactly what would need to be addressed in order to make our products visually act as we desire.

As I see it, there would be several sub-library modules that would drive the whole solution, but only be called in js if they were actually needed in order to perform a function -- ala Dojo.  This would keep the .js files sizes down to a reasonable level.

Here a a possible starting point:
  • radBrowserCaps.js - browser sniffing
  • radDOMHelper.js - akin to "prototype.js" helper functions
  • radEventHandler.js - CSS integrated behaviors
  • radSlider.js - slider functionality
  • radGlidePath - object movement path calculation
  • radAnimation.js - object movement and acceleration
  • radOpacity.js - opacity shifting - ie fading
  • radSizing.js - object sizing
  • radObjectWrappers.js - wrappers for embedded object inclusion into webpages including: Flash, Media Player, JAVA Applets, Quicktime, Real Player, etc.
  • radEffects.js - predesigned effects combining several transitions
  • radAJAXJSON.js - AJAX and JSON functionality
  • radWhatever.js - who knows what this will be, but I'm sure it will be something

This could all be the basis for new cool telerik solution-specific turnkey products like:

  • r.a.d.Chat
  • r.a.d.OutlookClone
  • r.a.d.PictureBrowser - ala Flicker
  • r.a.d.WidgetEngine

Anybody else want this stuff?  I want my web apps to have content that glides-in, fades-out and fades-in, collapses smoothly, puffs-away, moves offscreen in a smooth arc in gradual acceleration, self-adjust in size, auto-scrolls, etc.  Now is that too much to ask??  Well maybe, but I know that it really is quite doable now-a-days!

I have alot of samples that I would love to share in order to give telerik some inspiration of what's possible... but I'll save that for another thread.

Thanks for listening!

-Mark

Vassil Petev
Telerik team
 answered on 12 Mar 2010
11 answers
273 views
When I try and view any video using either IE8 or Chrome I just get a blank window.  If I right-click on the blank area it says "movie not loaded".  I tried updating to latest flash player 10 but still get the same.

Any ideas what is wrong?

I am just about to delve into the Telerik controls and would like to view some videos!
Todd Anglin
Top achievements
Rank 2
 answered on 11 Mar 2010
1 answer
87 views
Do you guys get drunk and do stupid tricks with fireworks like we do in the States?

Happy Independence Day!

Cheers!
Mark
Martin
Telerik team
 answered on 04 Mar 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?