I updated my AWS SDK to their latest version (AWSSDK.Core v3.x) and now the Telerik CloudUpload component is not working. I have a class that derives from AmazonS3Provider as shown in your docs, and when I set the AmazonS3Client property of this class, I get the error "The type 'AmazonS3Client' is defined in an assembly that is not referenced. You must add a reference to assembly 'AWSSDK, Version=2.0.5.0, Culture=neutral, PublicKeyToken=9f476d3089b52be3'"
Can you guys release an update that supports the AWSSDK version 3+?
I have a grid (version 2015.3.1111.45, no option to upgrade) that is bound to a List of custom objects.
Then I have a GridDropDownColumn that is bound to a field that is a decimal.
When I try to use the "HeaderContext" Filter Type and populate the checklist with a web service that returns both the text and the decimal value for that field, the grid will only try to filter on the text that comes from the checklist and not the "ID" value.
The only place I am even able to see what is getting set for the filter is by checking inside the Need Data Source event for the prop [grid].MasterTableView.FilterExpression.
Does anyone have any thoughts?

Hi,
I have a dataform and I'm trying to use the 'Enter' key to save. On my page, I have 3 textboxes and a button (default) that are used to populate the dataform. When my dataform is in edit mode, I press the 'Enter' key and it will not save because my default button is the Search button.
I'm using javascript on every single textbox inside my dataform to capture onkeypress and cancel the Search. But, if I click outside the textboxes inside my dataform, and I press 'Enter' it will search again.
I've tried to capture onkeypress in a <div> using JQuery but it doesn't work.
Any ideas?


I have developed an application using site master page, where I set the MetroTouch skin which affects all content pages. What I need to do is to disable skin inheritance for ReportViewer control, as I want to set default skin type for ReportViewer. I have already tried to set EnableEmbeddedSkins="false".
Any ideas how can I achive that?
Hello!
I have scrolling radmenu, with few elements inside. Now for some reason I have to change it to not scroll, but creating second line if conains more elements than one line can handle.
Is it possible, to disable scrolling ability and set this menu height css property to auto?
Thanks for helping!
Hello!
Is there a possibility to scroll list od items inside radmenu by more elements than just 1? My goal is to move all visible elements.
eg: I have 30 elements, but window width allows me to show only 10, so after clicking on the arrow I would like elements from 11 to 20 to be shown.
Thanks for all the answers!
Hello,
When I use async upload with the image manager, the file is correctly uploaded to the folder but when it try to see the image, I have an error : "Unauthorized: Access is denied due to invalid credentials".
My folder has this permission :
IUSR
But the uploaded image has not IUSR in the security tab. If I add IUSR user with read permission, it works.
When I use classic upload, the image is correctly uploaded and I have no error.
And the uploaded image has IUSR in the security tab.
Any idea why I have this bug ?

Hello,
I am creating htmlCharts dynamically from server side and trying to put a tooltip which shows both x and y axis values in the tooltip label.
As everything is dynamic, I can only code from the server side. I tried using
areaSeries.TooltipsAppearance.DataFormatString = "{0}% FCI in {1}Year";
but it looks like that we can't use {1} for areaSeries.
Then I tried using clientTemplate following the demo:
http://demos.telerik.com/aspnet-ajax/htmlchart/examples/functionality/clienttemplates/defaultcs.aspx
but none of these tell how to code purely from server side. I am pasting my concerned code for better insight
//To create chart
RadHtmlChart htmlChartACIOverStudyPeriod = CreateHtmlChart("Year", "FCI", "%");
htmlChartACIOverStudyPeriod.ChartTitle.Text = "FCI Over Study Period";
htmlChartACIOverStudyPeriod.ID = "rhcFCIOverStudyPeriod";
//To clear the plotarea and xaxis for the chart
htmlChartACIOverStudyPeriod.PlotArea.XAxis.Items.Clear();
htmlChartACIOverStudyPeriod.PlotArea.Series.Clear();
//To check if datatable has some value for selected agency and facility
if (dtCurEstTotalOverStudyPeriod.Rows.Count > 0)
{
int rowCount = 0;
ColumnSeries columnSeries = new ColumnSeries();
columnSeries.LabelsAppearance.Visible = false;
// columnSeries.TooltipsAppearance.DataFormatString = "{0}% FCI in {1}Year";
columnSeries.TooltipsAppearance.ClientTemplate = " #=dataItem.CurEstTotal# justForTest";
for (Int32 intCurrent = intFiscalYear; intCurrent <= intMaxYear; intCurrent++)
{
htmlChartACIOverStudyPeriod.PlotArea.XAxis.Items.Add(new AxisItem(intCurrent.ToString()));
decimal ACI = 0;
CategorySeriesItem categorySeriesItem = new CategorySeriesItem();
//to check if row in the table exists
if (rowCount < dtCurEstTotalOverStudyPeriod.Rows.Count)
{
if (dtCurEstTotalOverStudyPeriod.Rows[rowCount]["AnoFiscalYear"].Equals(intCurrent))
{
//To plot the y-axis
ACI = (Convert.ToDecimal(dtCurEstTotalOverStudyPeriod.Rows[rowCount]["CurEstTotal"]) / CurEstReplOverStudyPeriod) * 100;
rowCount++;
}
else
{
ACI = 0;
}
categorySeriesItem.Y = Math.Round(ACI, 3);
columnSeries.SeriesItems.Add(categorySeriesItem);
}
}
htmlChartACIOverStudyPeriod.PlotArea.Series.Add(columnSeries);
}
dockA2.ContentContainer.Controls.Add(htmlChartACIOverStudyPeriod);
this results into attached snapshot. Please help me to get x-axis value in the tooltip of ColumnChart.
Thnaks,
Somya