Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
102 views
I am using the progress area to monitor a file generation.  Not using the RadUpload with it.  It appears on production, but doesn't move forward at all.  Same in Chrome, IE, FF.  This is on IIS, but the application is running at full trust and the page is NOT called Default.aspx.  What could be the issue?  I have a fiddlercap, but it doesn't let me post that file type here.  What can I do?  Thanks!
Peter Filipov
Telerik team
 answered on 16 Dec 2015
1 answer
147 views
8, IE 9 compatibility issue we are planning to upgrade into newer version (Telerik v2015.2.826.45).

We had a testing with trial version of Telerik v2015.2.826.45, we have faced the UI distortion issue in the RADDatePicker and RADTimePicker control. Below is the sample screen shot.

File Name in the attachment: ScreenShot1.png

We are using the custom css based on our site design, some cssclass is misplaced with the Telerik control along with our custom css classes. Below is the screen shot with one example compared with the older version and the newer version.

File Name in the attachement: ScreenShot2.png

For more information please contact me on my mobile number provided below.

Thanks & Regards,
Ramanathan
7829883355
Konstantin Dikov
Telerik team
 answered on 16 Dec 2015
1 answer
96 views
i need to change the month format to be 1,2,10,11  like MM instead of may ,.... in year view 
Bozhidar
Telerik team
 answered on 16 Dec 2015
1 answer
212 views

Hi,

We want to enable batch editing in three level hierarchical grid for only the last level child grid. First and second level grid will be readonly. Do Rad Grid support this functionality? if yes is there any sample code which implement this or implements the batch editing in hierarchical grid?

We tried setting Edit mode as batch for all grid but not able to get the client side changed values of last level grid at server side in Batch Edit Command event handler.

Awaiting your quick response, thanks for you help.

--Himanshu

Eyup
Telerik team
 answered on 16 Dec 2015
2 answers
150 views

Not sure what I'm doing wrong.  I cannot databind a RangeBarSeries.

 In the below test I took the Demo binding example and added a RangeBarSeries.  The Area and Line series show fine but the RangeBar does not show. ( See Attached)

Here is the code:

protected void Page_Load(object sender, EventArgs e)
       {
       string[] tempTitles = { "In the Heart of the Sea", "The Hunger Games: Mockingjay - Part 2", "Krampus", "The Good Dinosaur", "Creed", "Spectre", "The Night Before", "The Peanuts Movie", "Spotlight", "Brooklyn" };
       foreach (string one in tempTitles)
          {
          RangeBarChart.PlotArea.XAxis.Items.Add(one);
          }
 
       List<MarketShareData> chromeData = new List<MarketShareData>();
       chromeData.Add(new MarketShareData(10.8, 23.8));
       chromeData.Add(new MarketShareData(11.6, 24.1));
       chromeData.Add(new MarketShareData(12.3, 25.0));
       chromeData.Add(new MarketShareData(13.6, 25.6));
       chromeData.Add(new MarketShareData(14.5, 25.9));
       chromeData.Add(new MarketShareData(15.9, 27.9));
       chromeData.Add(new MarketShareData(16.7, 29.4));
       chromeData.Add(new MarketShareData(17.0, 30.3));
       chromeData.Add(new MarketShareData(17.3, 30.5));
       chromeData.Add(new MarketShareData(19.2, 32.3));
       chromeData.Add(new MarketShareData(20.5, 33.4));
       chromeData.Add(new MarketShareData(22.4, 34.6));
 
       RangeBarChart.DataSource = chromeData;
       RangeBarChart.DataBind();
       }
      public class MarketShareData
         {
         public MarketShareData(double marketShare2010, double marketShare2011)
            {
            _marketShare2010 = marketShare2010;
            _marketShare2011 = marketShare2011;
            }
         private double _marketShare2010;
         public double MarketShare2010
            {
            get { return _marketShare2010; }
            set { _marketShare2010 = value; }
            }
         private double _marketShare2011;
         public double MarketShare2011
            {
            get { return _marketShare2011; }
            set { _marketShare2011 = value; }
            }
         }

<telerik:RadHtmlChart runat="server" ID="RangeBarChart" Width="800" Height="600">
            <ChartTitle Text="All Predictions">
                <Appearance Align="Center" Position="Top"></Appearance>
            </ChartTitle>
            <Legend>
                <Appearance Position="Bottom"></Appearance>
            </Legend>
            <PlotArea>
                <YAxis >
                    <LabelsAppearance DataFormatString="${0}M"></LabelsAppearance>
                    <MinorGridLines Visible="false" />
                </YAxis>
                <Series>
                        <telerik:RangeBarSeries Name="Prediction" DataFromField="MarketShare2010" DataToField="marketShare2011"  >
                        </telerik:RangeBarSeries>
                        <telerik:AreaSeries Name="Market share in 2010" DataFieldY="MarketShare2010">
                        </telerik:AreaSeries>
                        <telerik:LineSeries Name="Market share in 2011" DataFieldY="MarketShare2011">
                        </telerik:LineSeries>
                </Series>
            </PlotArea>

 

 

        </telerik:RadHtmlChart>

Andy
Top achievements
Rank 1
Iron
 answered on 15 Dec 2015
3 answers
155 views

Hi,
I am trying to bind radmenu but it gives me  error "This constraint cannot be enabled as not all values have corresponding parent values."

 

 

 

<telerik:RadMenu ID="RadMenu1" Runat="server" DataFieldID="menuid"

 

 

DataFieldParentID="parentid" DataSourceID="SqlDataSource1"

 

 

DataTextField="menuname">

 

 

</telerik:RadMenu>

 

 

<asp:SqlDataSource ID="SqlDataSource1" runat="server"

 

 

ConnectionString="<%$ ConnectionStrings:ConnectionString %>"

 

 

SelectCommand="SELECT menuid,parentid,menuname FROM menu"></asp:SqlDataSource>


Menu Table
-------------------------------------
  menuid       parentid     menuname
------------------------------------
     1        0        Products
     2        1        Servers
     3        1        Desktops
     4        1        Notebooks

 

Tyler
Top achievements
Rank 1
 answered on 15 Dec 2015
10 answers
541 views
Hi,

How do I handle sorting in RadGrid using EntityDataSource on computed columns ( in EF partial classes eg.: DisplayName { get { retrun this.Name + " " + this.LastName;}}  ) ?
Kostadin
Telerik team
 answered on 15 Dec 2015
1 answer
128 views

Hi Telerik team,

 

 I want to know how to get the DataKeyNames of source and the destination on the server side.

 Please help how to get this.

 

Thanks in advance.

 

Regards,

Alex

Marin Bratanov
Telerik team
 answered on 15 Dec 2015
3 answers
275 views
May I use client-side api to set  MultipleFileSelection, AllowedFileExtensions, MaxFileSize  ??
Ivan Danchev
Telerik team
 answered on 15 Dec 2015
1 answer
814 views

Hello,

I have an application that uses the load balancer (F5) and I get this error when I run the application.  Please let me know how to fix this.  This is very urgent.  Thank you so much.

Mixed Content: The page at 'https://ag-qa.sdcoe.net/Default.aspx?' was loaded over HTTPS, but requested an insecure stylesheet 'http://aspnet-skins.telerikstatic.com/ajaxz/2015.3.1111/FormDecorator.css'. This request has been blocked; the content must be served over HTTPS.

Nencho
Telerik team
 answered on 15 Dec 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?