Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
184 views
I have a radgrid with a column that has a RADCOMBO set in the filter Template. How do I set the the default filter index of the RADCOMBO on first time page load to another index programatically (in my case "Show Only Null" as opposed to "ALL").  I tried this code in both preRender and itemDataBound but it only sets the text and does not actually filter the data. The second part of the code shows the set up of the column in the aspx file. Can you provide me exact code? Thanks!

//tried this in preRender and itemDataBound methods
GridFilteringItem filterItem = (GridFilteringItem)e.Item;
RadComboBox combo = (RadComboBox)filterItem.FindControl("PROB_DATE");
combo.SelectedIndex = 1;




 <telerik:GridBoundColumn ForceExtractValue="Always" DataField="PROB_DATE" ReadOnly="True" DataType="System.DateTime"
                    FilterControlAltText="Filter PROB_DATE column" HeaderText="PROB DATE RESOLVED"
                    SortExpression="PROB_DATE" UniqueName="PROB_DATE" DataFormatString="{0:MM/dd/yyyy}">


                    <FilterTemplate>
                        <telerik:RadComboBox ID="RadComboBoxPROB_DATE" DataSourceID="SqlDataSourceMyDataSource"
                            DataTextField="PROB_DATE" DataValueField="PROB_DATE" Height="200px" AppendDataBoundItems="true"
                            SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("PROB_DATE").CurrentFilterValue %>'
                            runat="server" OnClientSelectedIndexChanged="PROB_DATEIndexChanged" Width="140px">
                            <Items>
                                <telerik:RadComboBoxItem Text="ALL" />
                            </Items>
                        </telerik:RadComboBox>
                        <telerik:RadScriptBlock ID="RadScriptBlockPROB_DATE" runat="server">
                            <script type="text/javascript">
                                function PROB_DATEIndexChanged(sender, args) {
                                    var value2 = args.get_item().get_value();


                                    if (value2 == 'Show Only Null') {
                                        var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
                                        tableView.filter("PROB_DATE", args.get_item().get_text(), "IsNull");
                                    }
                                    else {
                                        var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
                                         tableView.filter("PROB_DATE", args.get_item().get_value(), "NoFilter");
                                    }


                                //}
                            </script>
                        </telerik:RadScriptBlock>
                    </FilterTemplate>


                </telerik:GridBoundColumn>







Ryan
Top achievements
Rank 1
 answered on 02 Sep 2011
2 answers
118 views
A simple web app following your demo here: http://demos.telerik.com/aspnet-ajax/editor/examples/rtfexport/defaultvb.aspx

Each time I save to database and retrieve it back into the editor an extra bullet point as appeared...I have tried turning off all content filters and different ones at a time but it makes no difference.

Any idea why this happening and a solution to it? (Q2 2011).

Thanks,
Rumen
Telerik team
 answered on 02 Sep 2011
6 answers
191 views
Can you guys please help me with the following post.

http://www.telerik.com/community/forums/aspnet-ajax/tooltip/radtooltip-popup-disappears-in-chrome.aspx

My tooltip appears on the top of the page in chrome, it doesn't appear relevant to Mouse or element.

Same problem in Safari. I am using Q3 2009 but cannot buy new ones.
Sai
Top achievements
Rank 1
 answered on 02 Sep 2011
2 answers
102 views
I have migrated from ASP.Net 2 to 4 and am running 2011.2.712.40

If I run the site Application Pool in Classic mode the menus work normally.

If I run them in Integrated mode, the top level menus work, but any secondary menus do not show. That is if the top level has no children you can click on it and it works as normal. If they have any children the dropdown menu doesn't show.

Literally I can have the App Pool in Classic navigate to the site and it works, change the app pool hit the browser refresh and it doesn't.

I have tested in both Chrome and IE 9.

Can anybody see a connection between these two things? Or better yet a way of fixing it?

Randy
Kate
Telerik team
 answered on 02 Sep 2011
0 answers
69 views
Hi
I have a datalist(looking like a dropdown:- clicking on an expand button pops up the datalist) with links clicking on which calls a pagemethod to update one status field in the database. I have a rad grid which is showing the status-change history.So after the update in the database, i need to rebind the radgrid, here i am doing it using a RaiseCallbackEvent .
<script type="text/javascript">
var usrid;var jid;var st;
function updatestatus(id,stat)
{
st=stat;
usrid = $get("ctl00_CPHMain_Applicantsdetails_hdusrid");
jid = $get("ctl00_CPHMain_Applicantsdetails_hdjbid");
            if (usrid.value.length > 0) {
                PageMethods.UpdateStatus(usrid.value,jid.value,id,OnCheckUpdate);
            }
          
                CallServer("", "");  
}
in code behind

 public string GetCallbackResult()
        {
            return "true";
        }
        public void RaiseCallbackEvent(string eventArgument)
        {
            RGHistory.Rebind();
        }
i could see the data fetching in the needdatasource event and binding to the radgrid using break points.
but the fetched data is not rendering in the grid.
is this coz of a partial postback?
Is there any way to render the grid?
liju
Top achievements
Rank 1
 asked on 02 Sep 2011
2 answers
228 views

Hi Experts,

I am building a page divided in two sections. The first section is a table of SellingSubjects and the second a form where the details of the selected SellingSubject are displayed (<div class="divDetails" style="display: none">).

In order to enhance the user experience I wrapped each section in RadPane and use some client script to trigger the upload of the appropriate details when a line in a table is selected.

When the page is first loaded no line in the table is selected and I do not want to show an empty form. Therefore the details are hidden with “display: none”.

With this configuration I noticed that the RadAjaxLoadingPanel animation is not shown at first click on the table line in order to show the SellingSubject details. After some investigation I found out that the cause is in the “display: none” of the details. Do you have any suggestion to overcome this problem without changing the main functionality?

My site is a  DNN 6.00 module and I am using the embedded Telerik Ajax Controlls.

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SellingSubjectsView.ascx.cs"
    Inherits="Vits.Modules.VipCrm.Controls.Admin.SellingSubjectsView" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<%@ Register Src="~/DesktopModules/VipCrm/Controls/Admin/SellingSubjectsBasic.ascx"
    TagName="SellingSubjectsBasic" TagPrefix="vits" %>
<telerik:RadAjaxLoadingPanel ID="ralPanel" runat="server" BackgroundPosition="Center"
    Transparency="60" Skin="Windows7">
</telerik:RadAjaxLoadingPanel>
<asp:Button runat="server" Text="abc" ID="btnSaveDetails" CausesValidation="false"
    CssClass="AllTrigger" OnClick="btnSave_Click" Style="display: none;" />
<telerik:RadSplitter ID="RadSplitter" runat="server" Width="100%" Height="855px" CssClass="MainSplitter">
    <telerik:RadPane ID="rpTable" runat="server">
        <telerik:RadAjaxPanel ID="raxTable" runat="server" LoadingPanelID="ralPanel" ClientEvents-OnRequestStart="HideDetails">
            <asp:Panel ID="panTable" runat="server">
                <telerik:RadGrid ID="rgvMain" runat="server" OnInit="InitRagGrid" DataSourceID="gridData"
                    Height="850px" OnItemCreated="rgvMain_ItemCreated" CssClass="MainGrid" OnItemCommand="rgvMain_ItemCommand"
                    AllowPaging="True" PageSize="10">
                    <MasterTableView DataKeyNames="Id" AutoGenerateColumns="false" AllowFilteringByColumn="True"
                        AllowSorting="True" TableLayout="Auto" CssClass="fSelectable" OverrideDataSourceControlSorting="true"
                        CommandItemDisplay="Top">
                        <CommandItemTemplate>
                            <telerik:RadButton ID="btnAdd" runat="server" AutoPostBack="false" OnClientClicked="NewSellingSubject">
                                <Icon PrimaryIconUrl="~/images/Add.gif" PrimaryIconLeft="5px" />
                            </telerik:RadButton>
                            <telerik:RadButton ID="btnDelete" runat="server" CommandName="DeleteCMD" OnClientClicking="AlertDelete">
                                <Icon PrimaryIconUrl="~/images/delete.gif" PrimaryIconLeft="5px" />
                            </telerik:RadButton>
                        </CommandItemTemplate>
                        <Columns>
                            <telerik:GridBoundColumn DataField="Id" DataType="System.Int32" ItemStyle-CssClass="fId"
                                SortExpression="Id" />
                            <telerik:GridBoundColumn DataField="Name" HeaderText="Name" ItemStyle-CssClass="fName"
                                SortExpression="Name" DataType="System.String" UniqueName="Name" CurrentFilterFunction="StartsWith"
                                AutoPostBackOnFilter="true" FilterDelay="801" FilterControlWidth="100%" ShowFilterIcon="false" />
                        </Columns>
                        <SortExpressions>
                            <telerik:GridSortExpression FieldName="Id" SortOrder="Descending" />
                        </SortExpressions>
                    </MasterTableView>
                    <FilterMenu EnableImageSprites="False" />
                    <GroupingSettings CaseSensitive="false" />
                    <ClientSettings AllowRowsDragDrop="True" AllowColumnsReorder="true" ReorderColumnsOnClient="true">
                        <Resizing AllowColumnResize="true" />
                        <Selecting AllowRowSelect="True" EnableDragToSelectRows="false" />
                        <Scrolling AllowScroll="true" UseStaticHeaders="true" />
                    </ClientSettings>
                    <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true"></PagerStyle>
                </telerik:RadGrid>
                <asp:ObjectDataSource ID="gridData" runat="server" TypeName="Vits.Modules.VipCrm.Dal.Admin.DaoSellingSubjects"
                    SelectMethod="GetAll" />
            </asp:Panel>
        </telerik:RadAjaxPanel>
    </telerik:RadPane>
    <telerik:RadSplitBar ID="spliteBar" runat="server" CollapseMode="Both" />
    <telerik:RadPane ID="rpDetails" runat="server">
        <telerik:RadAjaxPanel ID="raxDetails" runat="server" LoadingPanelID="ralPanel" ClientEvents-OnResponseEnd="ShowDetails">
            <vits:SellingSubjectsBasic ID="sellingSubjectsBasic" runat="server" Visible="true" />
        </telerik:RadAjaxPanel>
    </telerik:RadPane>
</telerik:RadSplitter>

Details:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SellingSubjectsBasic.ascx.cs"
    Inherits="Vits.Modules.VipCrm.Controls.Admin.SellingSubjectsBasic" %>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<asp:Panel ID="panDetails" runat="server" OnLoad="panDetails_Load">
    <div class="divDetails" style="display: none">
        <a href="#" class="selected" onclick="__doPostBack('<%= panDetails.ClientID %>', '');">
        </a>
        <asp:HiddenField ID="hdCmd" runat="server" />
        <asp:HiddenField ID="hdId" runat="server" />
        <div class="divDetailsHead NoMenu fDetHead">
            <asp:Label ID="lblItemName" runat="server" />
        </div>
        <div class="fEditCommand">
            <telerik:RadButton ID="btnEdit" runat="server" AutoPostBack="false" OnClientClicked="EditDetails">
                <Icon PrimaryIconUrl="~/images/edit_pen.gif" PrimaryIconLeft="5px" />
            </telerik:RadButton>
        </div>
        <table class="VitsDetails">
            <tr>
                <td>
                    <dnn:label id="lblName" runat="server" controlname="lblName" />
                </td>
                <td>
                    <asp:TextBox ID="txtName" CssClass="NormalTextBox fEdit fName NotAllowed" runat="server" />
                    <asp:RequiredFieldValidator ID="rfvName" ControlToValidate="txtName" Display="Dynamic"
                        CssClass="dnnFormMessage dnnFormError" runat="server" ErrorMessage="*"></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td>
                    <dnn:label id="lblDescription" runat="server" controlname="lblDescription" />
                </td>
                <td>
                    <asp:TextBox ID="txtDescription" CssClass="NormalTextBox fEdit Wider NotAllowed" runat="server"
                        TextMode="MultiLine" />
                </td>
            </tr>
        </table>
        <table class="fCommand Commands Hidden">
            <tr>
                <td>
                    <telerik:RadButton ID="btnSave" runat="server" AutoPostBack="false" OnClientClicked="SubmitAll">
                        <Icon PrimaryIconUrl="~/images/save.gif" PrimaryIconLeft="5px" />
                    </telerik:RadButton>
                </td>
                <td>
                    <telerik:RadButton ID="btnCancel" runat="server" CausesValidation="false" OnClick="btnCancel_Click">
                        <Icon PrimaryIconUrl="~/images/cancel.gif" PrimaryIconLeft="5px" />
                    </telerik:RadButton>
                </td>
            </tr>
        </table>
    </div>
</asp:Panel>


Thank you,

Kristijan

Kristijan
Top achievements
Rank 1
 answered on 02 Sep 2011
2 answers
119 views
HI all,

I've got a grid that uses a web service as a datasource.  I've got a method in the web service to retrieve and filter data as needed.
The data retrieves and filter okay but when I select a row from the filter, client-side, then try to retrieve a value from the selected row in the filter it comes up with &nbsp& or no value.  However it works if I physically click on a row when I set up a row selected event to retrieve the value.

In other words, selecting a row in javascript code doesn't work.  Do I need to rebind the grid or something.  I've tried many different samples/solutions and nothing seems to work.

Here's the service, Grid, and Javascript from the client.
using System;
using System.Linq;
using System.Runtime.Serialization;
using System.Web.Services;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.ServiceModel.Web;
using System.Collections.Generic;
using System.Collections;
using Telerik.Web.UI;
using System.Reflection;
  
namespace DC
{
    [DataContract]
    public class POCN_hdr
    {
         [DataMember]
        public int MfgAssocDocID { get; set; }
         [DataMember]
         public int? MfgOrderID { get; set; }
        [DataMember]
        public string ponumber { get; set; }
        [DataMember]
        public string vendname { get; set; }
        [DataMember]
        public string vendorid { get; set; }
        [DataMember]
        public string country { get; set; }
        [DataMember]
        public string vndclsid { get; set; }
        [DataMember]
        public DateTime? docdate { get; set; }
        [DataMember]
        public string hold { get; set; }
        [DataMember]
        public string shipmthd { get; set; }
    }
  
    [DataContract]
    public class POCN_det
    {
        [DataMember]
        public string ponumber { get; set; }
        [DataMember]
        public string itemnmbr { get; set; }
        [DataMember]
        public decimal? qtyorder { get; set; }
        [DataMember]
        public string itemdesc { get; set; }
        [DataMember]
        public string postatus { get; set; }
        [DataMember]
        public string shipmthd { get; set; }
        [DataMember]
        public DateTime? released_date { get; set; }
        [DataMember]
        public DateTime? prmdate { get; set; }
        [DataMember]
        public DateTime? reqdate { get; set; }
    }
}
  
public class MyData
{
    public int Count { get; set; }
    public IList Data { get; set; }
}
  
[ServiceContract]
[ServiceKnownType("GetKnownTypes")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class POCNAssocDocService
{
    public static IEnumerable<Type> GetKnownTypes(ICustomAttributeProvider provider)
    {
        List<Type> knownTypes = new List<System.Type>();
  
        knownTypes.Add(typeof(DC.POCN_hdr));
        knownTypes.Add(typeof(DC.POCN_det));
  
        return knownTypes;
    }
  
    [OperationContract]
    public MyData retrievePOCN_HdrDataAndCount(int startRowIndex, int maximumRows, string sortExpression, string filterExpression)
    {
        maximumRows = 20;
        if (filterExpression != "")
        {
            filterExpression = filterExpression.Replace("\"", string.Empty);
        }
        else
        {
            filterExpression = "MfgOrderID = -1";
        }
        GridBindingData data = RadGrid.GetBindingData("AppDataClassesDataContext", "MOAssocDocuments", startRowIndex, maximumRows, sortExpression, filterExpression);
        MyData result = new MyData();
        result.Data = data.Data.OfType<MOAssocDocument>().Select(c => new DC.POCN_hdr()
        {
            MfgAssocDocID = c.MfgAssocDocID,
            MfgOrderID = c.MfgOrderID,
            ponumber = c.POHdr.ponumber,
            vendname = c.POHdr.vendname,
            vendorid = c.POHdr.vendorid,
            country = c.POHdr.country,
            vndclsid = c.POHdr.vndclsid,
            docdate = c.POHdr.docdate,
            hold = c.POHdr.hold,
            shipmthd = c.POHdr.shipmthd
        }).ToList();
        result.Count = data.Count;
        return result;
    }
  
    [OperationContract]
    public MyData retrievePOCN_DetDataAndCount(int startRowIndex, int maximumRows, string sortExpression, string filterExpression)
    {
       // maximumRows = 50;
        if (filterExpression == "")
        {
            filterExpression = "qtyorder = -999999";
        }
        else
        {
            string sPoNumb = filterExpression.Substring(13, 8);
  
            AppDataClassesDataContext appDB = new AppDataClassesDataContext();
            var dq = from dqr in appDB.PODets where dqr.ponumber == sPoNumb select dqr;
  
            if (dq.Count() == 0)
            {
                filterExpression = "qtyorder = -999999";
            }
              
        }
  
        GridBindingData data = RadGrid.GetBindingData("AppDataClassesDataContext", "PODets", startRowIndex, maximumRows, sortExpression, filterExpression);
        MyData result = new MyData();
        result.Data = data.Data.OfType<PODet>().Select(o => new DC.POCN_det()
        {
            ponumber = o.ponumber,
            itemnmbr = o.itemnmbr,
            qtyorder = o.qtyorder,
            itemdesc = o.itemdesc,
            postatus = o.postatus,
            shipmthd = o.shipmthd,
            released_date = o.released_date,
            prmdate = o.prmdate,
            reqdate=o.reqdate
        }).ToList();
        result.Count = data.Count;
        return result;
    }
  
}
<telerik:RadGrid ID="rdGridAsgPOHdr" runat="server" AllowPaging="false" AllowSorting="false"
                                Height="100px" AllowFilteringByColumn="false"
                                GridLines="None" EnableEmbeddedSkins="false" Skin="WebBlue" AllowMultiRowSelection="false"
                                ItemStyle-Font-Names="'segoe ui',arial,sans-serif;" ItemStyle-Font-Size="9px"
                                AutoGenerateColumns="false" AlternatingItemStyle-Font-Names="'segoe ui',arial,sans-serif;"
                                AlternatingItemStyle-Font-Size="9px" HeaderStyle-Font-Names="'segoe ui',arial,sans-serif;"
                                HeaderStyle-Font-Size="9px">
                                <MasterTableView ClientDataKeyNames="ponumber" DataKeyNames="ponumber" AllowMultiColumnSorting="false"
                                    TableLayout="Fixed" NoMasterRecordsText="<div style='width: 705px; font-size: 9px; font-family: 'segoe ui',arial,sans-serif;'>No assigned po details to display.</div>">
                                    <CommandItemStyle CssClass="commViewCommand" />
                                    <ItemStyle CssClass="comments" />
                                    <AlternatingItemStyle CssClass="comments" />
                                    <Columns>
                                        <telerik:GridBoundColumn DataField="ponumber" HeaderText="PO#" UniqueName="ponumber"
                                            ItemStyle-Width="40px" HeaderStyle-Width="40px" />
                                        <telerik:GridBoundColumn DataField="vendname" HeaderText="Vendor" UniqueName="vendname"
                                            ItemStyle-Width="400px" HeaderStyle-Width="400px" />
                                        <telerik:GridBoundColumn DataField="vendorid" HeaderText="VID" UniqueName="vendorid"
                                            ItemStyle-Width="40px" HeaderStyle-Width="40px" />
                                        <telerik:GridBoundColumn DataField="docdate" HeaderText="Doc Dt" UniqueName="docdate"
                                            DataFormatString="{0:MM/dd/yy}" ItemStyle-Width="35px" HeaderStyle-Width="35px" />
                                        <telerik:GridBoundColumn DataField="shipmthd" HeaderText="Ship Via" UniqueName="shipmthd"
                                            ItemStyle-Width="105px" HeaderStyle-Width="105px" />
                                        <telerik:GridBoundColumn DataField="detCnt" ItemStyle-Width="1px" ItemStyle-BackColor="White"
                                            HeaderStyle-Width="1px" ItemStyle-ForeColor="White" UniqueName="detCnt" ItemStyle-CssClass="commViewCommand">
                                        </telerik:GridBoundColumn>
                                          <telerik:GridBoundColumn DataField="MfgOrderID" DataType="System.Int32" HeaderText="MfgOrderID" HeaderStyle-Width="1px"
                                                        UniqueName="MfgOrderID" ItemStyle-Width="1px" ItemStyle-CssClass="commViewCommand">
                                                    </telerik:GridBoundColumn>
                                                         <telerik:GridBoundColumn DataField="MfgAssocDocID" DataType="System.Int32" HeaderText="MfgAssocDocID" HeaderStyle-Width="1px"
                                                        UniqueName="MfgAssocDocID" ItemStyle-Width="1px" ItemStyle-CssClass="commViewCommand">
                                                    </telerik:GridBoundColumn>
                                    </Columns>
                                </MasterTableView>
                                <ClientSettings>
                                          <DataBinding Location="../Services/POCNAssocDocService.svc" FilterParameterType="Linq" SelectMethod="retrievePOCN_HdrDataAndCount"
                                        SortParameterType="Linq">
                                    </DataBinding>
                                    <ClientEvents OnDataBinding="rdGridAsgPOHdr_DataBinding"/>
                                    <Selecting AllowRowSelect="true" />
                                    <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" />
                                </ClientSettings>
                            </telerik:RadGrid>
rdGridPOHdr = $find('<%= rlMOView.FindControl("rdGridAsgPOHdr").ClientID %>');
                   
                  var tableView = rdGridPOHdr.get_masterTableView();
                  tableView.filter("MfgOrderID", mfgID, "EqualTo");
                  tableView.clearSelectedItems();
                  var dataItem = tableView.get_dataItems()[0];
                  dataItem.set_selected(true);
                  var selectedRows = tableView.get_selectedItems();
                  for (var i = 0; i < selectedRows.length; i++) {
                      var row = selectedRows[i];
                      var cell = tableView.getCellByColumnUniqueName(row, "ponumber")
                      //here cell.innerHTML holds the value of the cell    
                  }
Jim
Top achievements
Rank 1
 answered on 02 Sep 2011
1 answer
157 views
Alright, I'm trying to create a pie chart that shows Locations in the Legend so that each location as a designated color, and the values assigned to each location is TotalSales. I thought it would be an easy thing to implement, but I'm running into issues.

When I implement the code below, it shows the TotalSales all around the pie chart (I know that's because of LabelLocation="Auto") but the legend on the right would just say "Series xx". I know how to get the name to change, but I don't know how to get it to create a new item for each location.

Can someone help me out with this?

Here's my code:

<telerik:RadChart ID="radSales" AutoLayout="true" runat="Server" Width="900px" Skin="Web20"
        Style="margin: 0px auto;">
        <Legend Visible="true">
            <Appearance GroupNameFormat="#VALUE">
            </Appearance>
        </Legend>
        <ChartTitle TextBlock-Text="Total Sales">
            <TextBlock>
                <Appearance TextProperties-Font="Verdana, 20px, style=Bold" TextProperties-Color="#00529B">
                </Appearance>
            </TextBlock>
        </ChartTitle>
        <PlotArea>
            <Appearance Dimensions-Margins="18%, 22%, 12%, 14%">
            </Appearance>
            <XAxis DataLabelsColumn="Location">
                <Appearance>
                    <TextAppearance TextProperties-Font="Verdana, 8pt, style=Bold">
                    </TextAppearance>
                </Appearance>
            </XAxis>
        </PlotArea>
        <Series>
            <telerik:ChartSeries DataXColumn="Location" DataYColumn="TotalSales" DefaultLabelValue="#Y{C}"
                Type="Pie">
                <Appearance>
                    <LabelAppearance LabelLocation="Auto">
                    </LabelAppearance>
                    <TextAppearance TextProperties-Font="Verdana, 11pt, style=Bold" TextProperties-Color="#00529B">
                    </TextAppearance>
                </Appearance>
            </telerik:ChartSeries>
        </Series>
    </telerik:RadChart>

Peshito
Telerik team
 answered on 02 Sep 2011
3 answers
114 views
hi,

i used RadScheduler control got an dll problem, when clicking the  "Week" tab in the top right side corner , it shows the all the week days bellow,we have an option to click the particular day tab on top , it shows the all the schedules on the day.    

using the telerik dll (2010.1.519.40) version
my problem is 
 when click the week tab  its not working  ( select the  Browser mode : IE7,IE8,IE9  and Document Model (Quirks ,IE7,IE8 )
 but its working at the time of ( select the  Browser mode : IE7,IE8,IE9  and Document Model (IE9 Standards (default) )

I took the latest dll (2011.1.413.40) ,  using this its working fine at all Document model ( Quirks ,IE7,IE8 and (IE9 Standards (default)) 

As per the client requirement  doesn't replace the  existing dll. 

How to solve this problem with out change the dll. 



Ivan Zhekov
Telerik team
 answered on 02 Sep 2011
2 answers
230 views
Hi i am using Terik.web.ui.dll


on the exporttoexcel option i want to dispaly loading image .

could you please help me.
Vibhor
Top achievements
Rank 1
 answered on 02 Sep 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?