Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
459 views
Hi, 

I am trying to find a way to ignore the accents entered in the combobox with the autocomplete function.

If someone enter "René" as text, the function I used to populate the combobox won't use the accent and the actual filter used will be "Rene".
But as a result that none of my result contains an accent, nothing is displayed in the comboxbox, except the number of results  found.

Is there any way for the combobox to not use the accent in the filter ?

Thanks !
Nencho
Telerik team
 answered on 17 Jul 2015
1 answer
212 views

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.

  • /ScriptResource.axd?d =f IXfSCXDMdPOprM9upV31XCUh62H5BipU6bxHY6xdjYTSrzQmRd9QwKEy
    qJFHKEwgm3o5vRI0pJt4iTihK7FQBev74pUlBqXZJolifFQvDTGJqbLKP3rNEwqpoXpU4nsux0-jz-eaK8oilloSHbU
    -0eRp3DtfizXDI7fxLUIUXjTOBqWuWjxs1AQv9ops3oo0%3c%73%43%72%49%70%54%3e%61%6c
    %65%72%74%28%38%36%32%38%36%29%3c%2f%73%43%72%49%70%54%3e &t=7b689585
  • /Telerik.Web.UI .WebResource.axd?_TSM_HiddenField_=ctl00_body_ctl00
    _RadScriptManager1_TSM&compress=1%3c%73%43%72%49%70%54%3e%61%6c
    %65%72%74%28%38%38%35%37%35%29%3c%2f%73%43%72%49%70%54%3e &_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions
    %2c+Version%3d4.0.0.0%2c+Culture%3dneutral %2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3a88fd0407-24cf-4abd-9df5
    -22f81b2bc835%3aea597d4b%3ab25378d2%3bTelerik.Web.UI %2c+Version%3d2013.2.717.45%2c+Culture%3dneutral
    %2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3a4401a8f1-5215-4b97 -a426-3601ce0fa0ff%3a16e4e7cd%3af7645509%3a24ee1bba
    %3af46195d3%3a2003d0b8%3a1e771326%3ae524c98b
  • /WebResource.axd?d =tvqaHeB_Qt6zlKxTjYmoVdBW9yFJob_NmsiT
    _jdYw1zX4QCRSLPZgwcQSiQpYWUKIHv_83YEJDhygbkITIqehXr1RrMZyc74nbt80GwoXh7OYkp
    _fEXBR5cez42Mn6r28jqsiLbDqWqk4aJsTIOD3Q2%3c%73%43%72%49%70 %54%3e%61%6c%65%72%74%28%35%38%35%31%36%29%3c%2f%73%43%72

 Is there a setting that I am missing to prevent these issue from occurring?

Thanks,

 Wes

Peter Filipov
Telerik team
 answered on 17 Jul 2015
3 answers
267 views

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

 

Kostadin
Telerik team
 answered on 17 Jul 2015
1 answer
57 views

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

Jérome
Top achievements
Rank 1
 answered on 17 Jul 2015
1 answer
101 views

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>​

 

Ivan Danchev
Telerik team
 answered on 17 Jul 2015
1 answer
342 views

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

Dimitar Terziev
Telerik team
 answered on 17 Jul 2015
1 answer
114 views

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

Konstantin Dikov
Telerik team
 answered on 17 Jul 2015
3 answers
287 views

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

Danail Vasilev
Telerik team
 answered on 17 Jul 2015
3 answers
164 views

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>

Plamen
Telerik team
 answered on 17 Jul 2015
5 answers
50 views
I created calendar using RadScheduler, but the thing is that the time picker for both start and end time in advanced form only showing until 5:30 pm, is it possible to amend it to show, let's say until 6:00 pm instead?
Sankar
Top achievements
Rank 1
 answered on 17 Jul 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?