I am using version 2013.2.717.45 and I had my site run through vulnerability testing. I am having cross site vulnerability issues returning in the following.
Is there a setting that I am missing to prevent these issue from occurring?
Thanks,
Wes
I'm a bit unsure of how to handle localization in regards to the numbers and dates within a radGrid.
This is our scenario. I have created the reports and tested them in the U.S. When the user runs the report on his workstation in Germany and exports the data to Excel the numerical data is displaying in English format.
ie. 1,344.00
As opposed to the German format which would be: 1.344,00
Currently my data is displaying on a German server as 1,344.00. If I go to the German server, open up the excel file that was exported and click on the cell that currently displays 1,344.00. I can then set that cells format to number and check the checkbox for: "use 1000 separator (.)". Then I have to re-type the number into the field. So I type in 134400 and hit enter. Then the value is displayed as 1.344,00. Which is what I want.
So the million dollar question. How do I export my data such that the formatting is like this?
This is an urgent issue so any help is greatly appreciated.
Thanks,
Julian
Hello,
I have a problem with a pivotgrid binded to a OLAP Cube with adomd.
When I want to filter on a rowField, the filter window that should contain all possible values for the field doesn't contain all values, as you can see in the attached file.
in my example, the rowfield displays cities and in the filter window, the list of values is limited to letter F.
is there a limit for the displayed values ?
if yes, is it settable?
or is there a bug when a pivotgrid is binded to a OLAP Cube?
thanks
Hi,
when Pressing Tab and the Focus is on RadUpload While Clicking on the Enter key the File upload Dialog is not opened.The focus is on Select Button.The Issue is on RadUpload not in RadAsyncUpload..Please give me some solution.I Was Specified the AccessKey="W" also.but it is not working.
This is my code:
<div class="twocolumn row">
<label>
File *</label>
<div id="MainContents">
<telerik:RadUpload AllowedMimeTypes="xml,application/x-zip" Font-Names="Arial, Helvetica, sans-serif"
Font-Size="14px" ReadOnlyFileInputs="true" EnableViewState="false" InitialFileInputsCount="1"
MaxFileInputsCount="1" ToolTip="Select a valid file to upload" Style="margin-top: -3px;"
OnClientFileSelected="ReferralMgmtValidateUploadedFile" runat="server" ID="RadUpload1" AccessKey="W" DisablePlugins="true" EnableEmbeddedScripts="true"
RegisterWithScriptManager="false" EnableFileInputSkinning="true"
ControlObjectsVisibility="None">
<Localization Select="SELECT"/>
</telerik:RadUpload>
<label id="lbl-upload-error-msg" style="color: Red; width: 100%; text-align: left;
font-weight: normal; margin-bottom: 5px;">
</label>
<script type="text/javascript" language="javascript">
if (isMobileSafari()) {
$('#MainContents').html('Upload functionality is not available for this browser.');
}
</script>
</div>
</div>
Hello,
I have successfully setup Custom CDN and its working perfectly fine. Also, I had enabled IIS Cache settings for browser cache. Everything works fine and browser does cache JS and CSS files just fine.
We are building a product which involves both large internet & intranet users base. We currently use Telerik 2012_1_411 version, but we will update it to latest version time to time. So, after this upgrade we cannot reach out to all internet(intranet is still ok) users to clear their browser cache, which is practically impossible in our case.
Is there a way we can handle this? Enforce users browsers to automatically get refreshed?
I was trying to manipulate the ResolveScriptReference event, by adding a dynamic query string after the name. But it gets replaced internally.
Any solution is really appreciated.
Thanks
Gokul
Hi.
I’m working on a legacy system trying to edit an old feature.
I need to access the selected rows from a Radgrid on post back.
I’m using Telerik.Web.UI v4.0.30319
My Grid looks like this:
<
telerik:RadGrid
runat
=
"server"
ID
=
"RadGridResourcesToChange"
AllowPaging
=
"True"
PageSize
=
"50"
AllowSorting
=
"False"
Visible
=
"False"
AllowMultiRowSelection
=
"True"
OnNeedDataSource
=
"RadGridResourcesToChange_NeedDataSource"
>
<
MasterTableView
Width
=
"100%"
DataKeyNames
=
"Resources"
>
<
Columns
>
<
Telerik:GridClientSelectColumn
UniqueName
=
"ResourceId"
/>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
>
<
Selecting
AllowRowSelect
=
"True"
></
Selecting
>
<
ClientEvents
OnRowSelecting
=
"RowSelecting"
/>
</
ClientSettings
>
</
telerik:RadGrid
>
protected
void
Page_Load(
object
sender, EventArgs e)
{
if
(!IsPostBack)
{
PanelAfterSearch.Visible =
false
;
}
else
{
RadGridResourcesToChange.Visible =
true
;
}
}
protected
void
Page_Init(
object
sender, EventArgs e)
{
if
(!IsPostBack)
{
}
else
{
SelectedIds = GetSelectedWorkdayIds().ToList();
}
}
public
IEnumerable<Guid> GetSelectedWorkdayIds()
{
List<Guid> ids =
new
List<Guid>();
//Here is where I'm trying to access the selected rows.
return
ids;
}
The user enters search criteria and then on post back
I set the grid Visible=true,
triggering the needDataSource, binding the result to the grid.
And then my problem occurs, the user can then select rows, and click a button.
I would then like to access the selected rows, performing my calculation.
I have tried using:
RadGridResourcesToChange.SelectedItems
RadGridResourcesToChange.MasterTableView.Items
Everything ends up empty on post back.
/ Martin
Hi Telerik Team,
I'm working with Radhtmlchart, and the label appearance's total addition of all data fields is not 100%, its always less than 100% like 99.6 or 99.7 or 99.99, but not 100%. Could you please help us in this regard. We have used the following code to add up the items and display the value in terms of percentage.
<LabelsAppearance>
<ClientTemplate>
#=kendo.format(\'{0:P2}\', percentage)#
</ClientTemplate>
</LabelsAppearance>
I've attached the file for better understanding of our issue. Please take a look at the image I've attached.
Thank you,
Vipul
html5 validation "required" not working inside RadWizard. But same is working in asp:Wizard.
Working
<
asp:Wizard
ID
=
"Wizard1"
runat
=
"server"
>
<
WizardSteps
>
<
asp:WizardStep
ID
=
"WizardStep1"
runat
=
"server"
Title
=
"Step 1"
>
<
asp:TextBox
ID
=
"TextBox1"
required
=
""
type
=
"text"
placeholder
=
"Try it out."
runat
=
"server"
></
asp:TextBox
>
</
asp:WizardStep
>
<
asp:WizardStep
ID
=
"WizardStep2"
runat
=
"server"
Title
=
"Step 2"
>
<
asp:TextBox
ID
=
"TextBox2"
required
=
""
type
=
"text"
placeholder
=
"Try it out."
runat
=
"server"
></
asp:TextBox
>
</
asp:WizardStep
>
</
WizardSteps
>
</
asp:Wizard
>
NOT WORKING
<
telerik:RadWizard
ID
=
"ADSRadWizard"
runat
=
"server"
>
<
WizardSteps
>
<
telerik:RadWizardStep
ID
=
"WizardStep3"
runat
=
"server"
Title
=
"Step 1"
>
<
telerik:RadTextBox
ID
=
"RadTextBox1"
required
=
""
type
=
"text"
placeholder
=
"Try it out."
runat
=
"server"
></
telerik:RadTextBox
>
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"WizardStep4"
runat
=
"server"
Title
=
"Step 2"
>
<
telerik:RadTextBox
ID
=
"RadTextBox2"
required
=
""
type
=
"text"
placeholder
=
"Try it out."
runat
=
"server"
></
telerik:RadTextBox
>
</
telerik:RadWizardStep
>
</
WizardSteps
>
</
telerik:RadWizard
>