Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
160 views
I recently upgraded to 2013 controls from 2010. I have a radcombobox with template content. Previously, if I typed in the search box, it would search company name only. But now it searches all text, even that in the itemtemplate (such as address etc.). It is now slower, and searches text that I am not interested in searching. Can you please tell me how to search only the DataTextField and not the itemTemplate content? Thanks in advance.

<telerik:RadComboBox ID="RadComboBoxGoThroughPublisher" Runat="server"
                                            AllowCustomText="True" AutoPostBack="False" CollapseDelay="0"
                                            DataSourceID="DataSourceAllPublishers" DataTextField="Company"
                                            DataValueField="PublisherID" EnableItemCaching="True" ExpandDelay="0"
                                            Filter="Contains" HighlightTemplatedItems="True" MarkFirstMatch="True"
                                            MaxHeight="300px"
                                            SelectedValue='<%# myHelperObject.helperGetLicenseThroughPublisherID(Eval("LicenseThroughPublisherID")) %>'
                                            TabIndex="8" Width="340px">
                                            <ItemTemplate>
                                                <span>
                                                <hr />
                                                </span>
                                                <asp:Label ID="LabelCompanyShort" runat="server" CssClass="blueHyperlink"
                                                    Text='<%# Eval("CompanyShort") %>'></asp:Label>
                                                <br />
                                                <span>
                                                <asp:Label ID="LabelCompany" runat="server" CssClass="blueHyperlink"
                                                    Text='<%# Eval("Company") %>'></asp:Label>
                                                </span>
                                                <br />
                                                <span>
                                                <asp:Label ID="lblAddress" runat="server" Text='<%# Eval("Address") %>'></asp:Label>
                                                <br />
                                                <asp:Label ID="lblCityStateZip" runat="server"
                                                    Text='<%# myHelperObject.helperGetFormattedCityStateZip(Eval("City"),Eval("State"),Eval("ZipCode"),1,1,0) %>'></asp:Label>
                                                <asp:Panel ID="PanelPartner" runat="server"
                                                    Visible='<%# myHelperObject.helperGetCheckBoxTrueFalse(Eval("Active")) %>'>
                                                    <div style="padding: 3px">
                                                        <span>
                                                        <asp:Label ID="LabelPartner" runat="server" CssClass="mediumBoldDarkAquaHeader"
                                                            Text="Partner"
                                                            Visible='<%# myHelperObject.helperGetCheckBoxTrueFalse(Eval("Active")) %>'></asp:Label>
                                                         <asp:Label ID="LabelPartnerSynch" runat="server"
                                                            CssClass="mediumBoldDarkAquaHeader" Text="- Synch Allowed"
                                                            Visible='<%# myHelperObject.helperGetCheckBoxTrueFalse(Eval("SynchronizationAllowed")) %>'></asp:Label>
                                                        </span>
                                                    </div>
                                                </asp:Panel>
                                                </span>
                                            </ItemTemplate>
                                        </telerik:RadComboBox>
Mark
Top achievements
Rank 1
 answered on 28 May 2013
20 answers
1.8K+ views
I really like the look and feel of the RadAsyncUpload, but I can't seem to figure out how to use it.  None of the demos show how to do a simple save file.  I can get my code to save the temp file to the App_Code/RadUploadTemp folder, but I can't figure out how to access that file and rename/save it to it's actual location.  I've been trying to use the UploadedFileInfo.TempFileName method, but I get an unreadable string returned.

Any demos or help would be greatly appreciated!
Plamen
Telerik team
 answered on 28 May 2013
4 answers
246 views
Hi!

When we display a RadDatePicker control (see attached #1), we are able to add a special day of "today" using this code:
<telerik:RadDatePicker ID="radDatePickerBirthdateSearchCriteria" MinDate="1/1/1900" runat="server">
    <Calendar ShowRowHeaders="false" runat="server">
        <SpecialDays
            <telerik:RadCalendarDay Repeatable="Today"
                <ItemStyle CssClass="rcToday" /> 
            </telerik:RadCalendarDay
        </SpecialDays
    </Calendar>
</telerik:RadDatePicker>

However, when we display a grid column using this code:
<telerik:GridDateTimeColumn EnableTimeIndependentFiltering="true" DataField="Birthdate" DataFormatString="{0:MM/dd/yyyy}"  HeaderText="Birthdate" SortExpression="Birthdate" UniqueName="Birthdate">
</telerik:GridDateTimeColumn>

protected void radGridResults_ItemCreated(object sender, GridItemEventArgs e)
        {
            if (e.Item is GridFilteringItem)
            {
                GridFilteringItem filteringItem = e.Item as GridFilteringItem;
 
                RadDatePicker radDatePicker = (RadDatePicker)filteringItem["Birthdate"].Controls[0];
                radDatePicker.EnableEmbeddedSkins = true;
                radDatePicker.Skin = "Office2010Blue";
                radDatePicker.CssClass = "radDatePicker radGridFilterDatePicker";
                radDatePicker.SharedCalendar.ShowRowHeaders = false;
                Button buttonDatePickerFilter = (Button)filteringItem["Birthdate"].Controls[2];
                buttonDatePickerFilter.CssClass = "rgFilter radGridFilterDatePickerFilterButton";
                RadCalendarDay radCalendarDayToday = new RadCalendarDay();
                radCalendarDayToday.Repeatable = Telerik.Web.UI.Calendar.RecurringEvents.Today;
                radCalendarDayToday.ItemStyle.CssClass = "rcToday";
                radDatePicker.Calendar.SpecialDays.Add(radCalendarDayToday);
            }
        }


When we add the special day in code behind, it does not display properly when we are displaying the calendar as a filter (see attached #2.)

Are we doing something wrong? How can we accomplish this?

Thanks!
Michael O'Flaherty
Top achievements
Rank 2
 answered on 28 May 2013
2 answers
94 views
I have an upload control sitting sitting within a table on a FormView edit template.

Initially I was having problems with the clickable area of the skinned button being different from the viewable area of the skinned button so I turned off skinning.

Now the un-skinned control 'sticks' to the page when scrolling. The rest of the page scrolls but the radupload maintains an absolute position on the skin.

Any ideas?

Cheers
Aaron
Mohamed Salah Al-Din
Top achievements
Rank 1
 answered on 28 May 2013
2 answers
123 views

Dear Telerik Team,

We are using the radgrid to perform insert/update/delete functionalities.


Problem:
The update button in the radgrid is not working when we add the grid in the ajax manager settings.
But if we do not include the radgrid in the ajax manager settings, the update button is hitting the server side while clicking it.
This happens when we add the client side javascript code for validation, while updating in the grid.


Required Solution:
After performing the validation in the client side for radgrid update button, If the validation is success, the grid update button should call the server side code.


Product: "Telerik RadControls for ASP.NET AJAX Q1 2012"

Please look into this issue and get back to us ASAP.

Please find below sample code for your reference.


--------------------sample code-----------------------
//-->this code is not calling the server side, on grid update button
----------------------------------
<telerik:RadAjaxManager ID="RadAjaxManager1" DefaultLoadingPanelID="RadAjaxLoadingPanel1"
        runat="server">
        <ClientEvents />
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
----------------------------------
----------------------------------

 
//this code is calling the server side, on grid update button
----------------------------------
<telerik:RadAjaxManager ID="RadAjaxManager1" DefaultLoadingPanelID="RadAjaxLoadingPanel1"
        runat="server">
        <ClientEvents />
        <AjaxSettings>
        </AjaxSettings>
    </telerik:RadAjaxManager>
----------------------------------
---------
//////////////////////////////////

 

/////////////////About.aspx/////////////////////////////
<%@ Page Title="About Us" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeFile="About.aspx.cs" Inherits="About" %>

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadAjaxManager ID="RadAjaxManager1" DefaultLoadingPanelID="RadAjaxLoadingPanel1"
        runat="server">
        <ClientEvents />
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default">
    </telerik:RadAjaxLoadingPanel>
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <script type="text/javascript">

            function ValidateOnInsert(PRODUCTID) {
                alert('ValidateOnInsert() called...');
                var txtPRODUCTID = document.getElementById(PRODUCTID);

                return true;
            }

        </script>
    </telerik:RadCodeBlock>
    <asp:Button ID="Button1" runat="server" Text="Button" />
    <div>
        <telerik:RadGrid ID="RadGrid1" runat="server" GridLines="None" BorderStyle="Solid"
            CellSpacing="0" AllowPaging="True" Height="401px" OnItemDataBound="RadGrid1_ItemDataBound">
            <MasterTableView CommandItemDisplay="Top" AllowPaging="true" PageSize="10">
                <Columns>
                    <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn">
                        <ItemStyle></ItemStyle>
                    </telerik:GridEditCommandColumn>
                    <telerik:GridButtonColumn ConfirmText="Do you want to delete the PRODUCT?" ConfirmDialogType="RadWindow"
                        ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete"
                        UniqueName="DeleteColumn">
                    </telerik:GridButtonColumn>
                </Columns>
                <CommandItemTemplate>
                    <div style="padding: 5px 5px;">
                        <asp:LinkButton ID="lnkBtnAddNewPRODUCT" runat="server" CommandName="InitInsert"
                            Visible='<%# !RadGrid1.MasterTableView.IsItemInserted %>'><img style="border:0px;vertical-align:middle;" alt="" />Add new PRODUCT</asp:LinkButton>&nbsp;&nbsp;
                        <asp:LinkButton ID="lnkBtnRefreshPRODUCTList" runat="server" CommandName="RebindGrid"><img id="imgRefreshPRODUCTList" style="border:0px;vertical-align:middle;" alt="" />Refresh</asp:LinkButton>
                    </div>
                </CommandItemTemplate>
                <CommandItemSettings ExportToPdfText="Export to PDF" />
                <RowIndicatorColumn FilterControlAltText="Filter RowIndicator column" Visible="True">
                </RowIndicatorColumn>
                <ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column" Visible="True">
                </ExpandCollapseColumn>
                <EditFormSettings EditFormType="Template">
                    <EditColumn FilterControlAltText="Filter EditCommandColumn column">
                    </EditColumn>
                    <FormTemplate>
                        <div>
                            <table id="Table2" border="0" cellpadding="1" cellspacing="2" rules="none" style="border-collapse: collapse;">
                                <tr class="EditFormHeader">
                                    <td colspan="2" style="font-size: small">
                                        <b>PRODUCT Details:</b>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <table id="tbl" border="0" cellpadding="1" cellspacing="1" class="module">
                                            <tr>
                                                <td>
                                                    <asp:Label runat="server" Text="*" ID="Label1" CssClass="lblMandatory"></asp:Label>
                                                    PRODUCTID:
                                                </td>
                                                <td>
                                                    <asp:TextBox ID="txtPRODUCTID" runat="server" Text='<%# Bind("PRODUCTID") %>'>
                                                    </asp:TextBox>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td colspan="3" align="right">
                                        <asp:Button ID="btnUpdate" runat="server" CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>'
                                            Text='<%# (Container is GridEditFormInsertItem) ? "Insert" : "Update" %>' />
                                        &nbsp;
                                        <asp:Button ID="btnCancel" runat="server" CausesValidation="False" CommandName="Cancel"
                                            Text="Cancel" />
                                    </td>
                                </tr>
                            </table>
                        </div>
                    </FormTemplate>
                </EditFormSettings>
            </MasterTableView>
            <ClientSettings>
                <Selecting AllowRowSelect="True" CellSelectionMode="None" />
                <Scrolling AllowScroll="True" UseStaticHeaders="True" />
            </ClientSettings>
            <FilterMenu EnableImageSprites="False">
            </FilterMenu>
        </telerik:RadGrid>
    </div>
</asp:Content>
///////////////////////////////////////////////////////////////////

///////////////////////About.aspx.cs//////////////////////////////
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using Telerik.Web.UI;

public partial class About : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        //if (!IsPostBack)
        //{
        //    RadGrid1.DataSource = GetData();
        //}

        RadGrid1.DataSource = GetData();
    }

    private DataTable GetData()
    {
        DataTable dt = new DataTable();
        dt.Columns.Add("PRODUCTID");
       
        for(int i=0;i<50;i++)
        {
            DataRow dr=dt.NewRow();
            dr["PRODUCTID"] = i;
            dt.Rows.Add(dr);
        }

        return dt;

    }
    protected void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
    {
        if ((e.Item is GridEditFormItem) && (e.Item.IsInEditMode))
        {
            GridEditFormItem editFormItem = (GridEditFormItem)e.Item;
            Button update = (Button)editFormItem.FindControl("btnUpdate");

            TextBox box = null;
            string paramerters = string.Empty;

            box = editFormItem.FindControl("txtPRODUCTID") as TextBox;
            paramerters += box.ClientID + "', '";
       
            update.Attributes.Add("onclick", "return ValidateOnInsert('" + paramerters + "')");
        }
    }
}

///////////////////////////////////////////////////////////////////

Thanks & Regards,
D. Senthil kumar vijai.

Andrey
Telerik team
 answered on 28 May 2013
5 answers
214 views
Is there a way to show validation messages as a tooltip next to the control?

I am currently doing this manually from code and was wondering if there was a way to use the validation controls and link them to tooltips instead. Also, the tooltip don't always show up next to the control in Firefox. It will show at the edge of the screen.
Marin Bratanov
Telerik team
 answered on 28 May 2013
4 answers
70 views
Hello,

I need to accomplish a curious behavior, i want that the event OnNeedDataSource look for the data but dont show it inside the radgrid, i need to query the data just using the radgrid filters, something like these steps:

1) User opens the page
2) Radgrids looks for the data but renders an empty grid (data keeps in memory)
3) user use the grid filters to query data
4) radgrid look for the data in memory to display the matched elements.

The radgrid is actually implemented to show the data at page load, so i will appreaciate if exists a low-effort way to accomplish this.

Thank you.
Princy
Top achievements
Rank 2
 answered on 28 May 2013
7 answers
209 views
Hello,

Please can someone at Telerik confirm if the Visual Style Builder is working?

I've watched the video and I really want to create my own skin. All I want to do is use the Metro skin as a base, and change the light blue (#25a0da) to a dark blue (#003366). I'm changing a color, saving, and then changing a different part. But when I go back to a control that I've altered, it's back to its original color! 

I have also downloaded the theme and expected the contents and my changes are not there either.

I've tried using the Visual Style Builder in IE9 and Chrome 23.

Is it working? Or could someone at Telerik make me a skin for me?

Many thanks,
Matt
Stamo Gochev
Telerik team
 answered on 28 May 2013
2 answers
179 views
My gird is declared like so:

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="list.aspx.vb" Inherits="User_list" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"></telerik:RadScriptManager>
        <telerik:RadGrid ID="UserGrid" runat="server" AutoGenerateColumns="False"  CellSpacing="0" GridLines="None" runat="server">
            <MasterTableView>
                <Columns>
                    <telerik:GridBoundColumn AllowFiltering="False" DataField="EmailAddress"
                        FilterControlAltText="Filter column column" HeaderText="User"
                        UniqueName="column">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="FullName"
                        FilterControlAltText="Filter column1 column" HeaderText="Full Name"
                        UniqueName="column1">
                    </telerik:GridBoundColumn>
                </Columns>
            </MasterTableView>
        </telerik:RadGrid>
    </form>
</body>
</html>

...and I bind to a generic list in the codebehind...

Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    If Not Page.IsPostBack Then
        Dim Users As List(Of User) = UserManager.GetAll(ApplicationVariables.CurrentUser.InstitutionId)
        UserGrid.DataSource = Users
        UserGrid.DataBind()
    End If
End Sub

My list ("Users") is a list of objects with the following definition:
Public Class User
    Public UserId As Integer = 0
    Public Password As String = String.Empty
    Public EmailAddress As String = String.Empty
    Public InstitutionId As Integer = 0
    Public FullName As String = String.Empty
End Class

There are two users in my source data.  The grid displays the right number of rows, but the cells are empty:
Empty Grid

I'm sure this is an obvious mistake.  Any help is appreciated.
Duane Roelands
Top achievements
Rank 1
 answered on 28 May 2013
1 answer
80 views
Hi,
     I am using Advance Insert and Edit template  in mvc 4 and i want to insert and edit the data into database though webservice on server side.But the Appointment Save and insert button is not working in the custom form.
Please respond as soon as possible.

My code File is like this:-

 <telerik:radscheduler runat="server" id="Scheduler" tooltip="" starteditinginadvancedform="true"
            startinsertinginadvancedform="true" minutesperrow="15" timelabelrowspan="1" hourspaneltimeformat="h:mm tt"
            showfulltime="true" numberofhoveredrows="1" enabledescriptionfield="true" appointmentstylemode="Default"
            selectedview="WeekView" onclientformcreated="OnClientFormCreated" onclientappointmentinserting="OnClientAppointmentInserting"
            onclientappointmentspopulating="OnClientAppointmentsPopulating" onclientappointmentwebserviceinserting="OnClientAppointmentWebServiceInserting"
            onclientdatabound="onSchedulerDataBound" onclientappointmentdoubleclick="hideTooltip"
            onclientappointmentclick="OnClientAppointmentClick" onclientappointmentcontextmenu="appointmentContextMenu"
            onclientappointmentcontextmenuitemclicked="appointmentContextMenuItemClicked"
            advancedform-modal="true">
            <AdvancedForm Modal="true" />
            <AdvancedEditTemplate>
   <div class="rsAdvancedEdit rsAdvancedModal" style="position: relative">
       <div class="rsModalBgTopLeft">
       </div>
       <div class="rsModalBgTopRight">
       </div>
       <div class="rsModalBgBottomLeft">
       </div>
       <div class="rsModalBgBottomRight">
       </div>     
       <div class="rsAdvTitle">          
           <h1 class="rsAdvInnerTitle">
               <%# Container.Appointment.Owner.Localization.AdvancedEditAppointment %></h1>
           <asp:LinkButton runat="server" ID="LinkButton1" CssClass="rsAdvEditClose"
               CommandName="Cancel" CausesValidation="false" ToolTip='<%# Container.Appointment.Owner.Localization.AdvancedClose %>'>
<%# Container.Appointment.Owner.Localization.AdvancedClose%>
           </asp:LinkButton>
       </div>
       <div class="rsAdvContentWrapper">
           <telerik:RadTextBox ID="SubjectTextBox" runat="server" Text='<%# Bind("Subject") %>'
               Label='<%# Container.Appointment.Owner.Localization.AdvancedSubject%>'>
           </telerik:RadTextBox>
           <p>
               Custom content here...
           </p>
           <asp:Panel runat="server" ID="Panel1" CssClass="rsAdvancedSubmitArea">
               <div class="rsAdvButtonWrapper">
                   <asp:LinkButton CommandName="Update" runat="server" ID="LinkButton2" CssClass="rsAdvEditSave">
<span><%# Container.Appointment.Owner.Localization.Save%></span>
                   </asp:LinkButton>
                   <asp:LinkButton runat="server" ID="LinkButton3" CssClass="rsAdvEditCancel" CommandName="Cancel"
                       CausesValidation="false">
<span><%# Container.Appointment.Owner.Localization.Cancel%></span>
                   </asp:LinkButton>
               </div>
           </asp:Panel>
       </div>
   </div>
</AdvancedEditTemplate>
 <AdvancedInsertTemplate>
   <div class="rsAdvancedEdit rsAdvancedModal" style="position: relative">
       <div class="rsModalBgTopLeft">
       </div>
       <div class="rsModalBgTopRight">
       </div>
       <div class="rsModalBgBottomLeft">
       </div>
       <div class="rsModalBgBottomRight">
       </div>     
       <div class="rsAdvTitle">          
           <h1 class="rsAdvInnerTitle">
               <%# Container.Appointment.Owner.Localization.AdvancedNewAppointment %></h1>
           <asp:LinkButton runat="server" ID="AdvancedEditCloseButton" CssClass="rsAdvEditClose"
               CommandName="Cancel" CausesValidation="false" ToolTip='<%# Container.Appointment.Owner.Localization.AdvancedClose %>'>
<%# Container.Appointment.Owner.Localization.AdvancedClose%>
           </asp:LinkButton>
       </div>
        <div class="rsAdvContentWrapper">
           <telerik:RadTextBox ID="SubjectTextBox" Width="100%" runat="server" Text='<%# Bind("Subject") %>' 
               Label='<%# Container.Appointment.Owner.Localization.AdvancedSubject%>'>
           </telerik:RadTextBox>
           <p>
               Custom content here...
           </p>
           <asp:Panel runat="server" ID="ButtonsPanel" CssClass="rsAdvancedSubmitArea">
               <div class="rsAdvButtonWrapper">
                   <asp:LinkButton CommandName="Update" runat="server" ID="UpdateButton" CssClass="rsAdvEditSave">
<span><%# Container.Appointment.Owner.Localization.Save%></span>
                   </asp:LinkButton>
                   <asp:LinkButton runat="server" ID="CancelButton" CssClass="rsAdvEditCancel" CommandName="Cancel"
                       CausesValidation="false">
<span><%# Container.Appointment.Owner.Localization.Cancel%></span>
                   </asp:LinkButton>
               </div>
           </asp:Panel>
       </div>
   </div>
</AdvancedInsertTemplate>
  <AppointmentContextMenus>
                    <telerik:RadSchedulerContextMenu runat="server" ID="SchedulerAppointmentContextMenu">
                        <Items>
                            <telerik:RadMenuItem Text="Check In" Value="IN">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem IsSeparator="True">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem Text="Check Out" Value="OUT">
                            </telerik:RadMenuItem>
                             <telerik:RadMenuItem IsSeparator="True">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem Text="No Show" Value="NS">
                            </telerik:RadMenuItem>
                        </Items>
                    </telerik:RadSchedulerContextMenu>
            </AppointmentContextMenus>
            <WebServiceSettings Path="../../AppointmentWebService.asmx"/>
              <ResourceStyles>
                    <telerik:ResourceStyleMapping Type="Appointment Type" Text="New Consultant" BackColor="skyBlue" />
                    <telerik:ResourceStyleMapping Type="Appointment Type" Text="Surgery" BackColor="Orange" />
                    <telerik:ResourceStyleMapping Type="Appointment Type" Text="Follow Up" BackColor="Green" />
                    <telerik:ResourceStyleMapping Type="Status" Text="No Show"  BorderColor="Black" />
                    <telerik:ResourceStyleMapping Type="Status" Text="In"  BorderColor="Cyan" />
                    <telerik:ResourceStyleMapping Type="Status" Text="Out"  BorderColor="DarkRed" />

              </ResourceStyles>
</telerik:radscheduler>
Plamen
Telerik team
 answered on 28 May 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?