Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
136 views

Here's what I want to do. I want to upload one large image, a map for example, and then upload a smaller one on top, like an arrow to point to something.

I'm uploading the first image with the asyncuploader control and it's being put into the image editor correctly, but when I go to upload the smaller one it replaces the original image instead of being layered on top.  I am using png's for transparency. 

I think this happens because of this line in the asyncupload fileuploaded event

RadImageEditor1.ResetChanges( );

 

I tried removing the line and it breaks the ability to upload an image into the editor.

 

Any help towards getting my desired functionality would be greatly appreciated. 

Vessy
Telerik team
 answered on 14 Apr 2016
2 answers
59 views

Hi,

I have few combo boxes in the page with checkbox enabled. The combo item text is not showing up initially when the page loads. I have a reset button in the page, on which I just clear the selections of combo. After reset click, all the items are showing as expected. If i disable the checkbox for a combo box, then the combo item text is showing correctly during the initial load itself. Not sure what is wrong with the code ?

<telerik:RadComboBox ID="LevelMultiList" runat="server" DropDownWidth="320px" AutoCompleteSeparator=";" CheckBoxes="True"  CssClass="id-LevelMultiList" EmptyMessage=" " HighlightTemplatedItems="true" AccessibilityMode="true">
<ExpandAnimation Type="OutBack" Duration="300" />
                                                    <CollapseAnimation Type="InBack" Duration="200" />
</telerik:RadComboBox>

Kumaran
Top achievements
Rank 1
Iron
 answered on 14 Apr 2016
4 answers
191 views

Hi,

I have kept RadTabStrip inside asp.net user control

<Telerik:RadTabStrip ID="RadTabStrip1" runat="server" AutoPostBack="True" TabDisplayMode="MultiRow" OnLoad="RadTabStrip1_Load" EnableEmbeddedSkins="true"></Telerik:RadTabStrip>

and loading it from an xml file in RadTabStrip1_Load event.

<TabStrip>
<Tab ID="Event Summary" Text="Event Summary" Value="summary.aspx"/>
<Tab ID="About Us" Text="About Us" Value="about.aspx"/>
<Tab ID="Documents" Text="Documents" Value="docs.aspx" IsBreak="True"/>
<Tab ID="Contact Us" Text="Contact Us" Value="contact.aspx"/>
........
</TabStrip>

I am setting RadTabStrip's SelectedIndex property in Page_PreRender method, and On RadTabStrip1_TabClick event I am navigating to different aspx pages.

What I encounter is; after couple of clicks on different tabs, when I click on any tab that renders after IsBreak (ex. Contact Us) and then again click on any tab before IsBreak (ex. Event Summary), tabstrip goes away. It just doesn't render at all.

I also tried to debug. It is hitting Load, PreReder methods but not TabClick in case of failure. Below is the error I get:

Telerik.Web.UI.RadTab.set_Selected(Boolean Value)....

Environment:

Browser: IE11

Telerik UI for ASP.Net Ajax Q1 2016

Visual Studio 2015

Windows Server 2012 R2

Note: I migrated it from Telerik Classic to Telerik UI for ASP.Net Ajax, and it was working fine before.

Please Help.

 

Veselin Tsvetanov
Telerik team
 answered on 14 Apr 2016
5 answers
536 views
Hello,

I'd like to remove the tooltip "Aucun fichier choisi" for the Select button.

Thanks!
Bozhidar
Telerik team
 answered on 14 Apr 2016
2 answers
129 views

We have had problems with RadAsyncUpload in IE11 where it will give a yellow dot and freezes when uploading files.  This has been happening since our users started using IE11 (on Windows 8.1).  Previously they used 10 without issue.

This does not happen if we direct them to Chrome.  The only way around it we have found is to turn off the FileApi Module for IE.  We do utilize drag and drop so when that module is disable that functionality is lost.  I am using the latest version of the controls 2016 Q1.

I also tried to emulate IE10, but that does NOT solve the issue.  We run with ie=edge meta tag.

The problem is intermittent and I have not been able to reproduce it myself.  I have seen some similar threads on problems like this including this one: http://www.telerik.com/forums/radasyncupload-1fc6f6296712

Is there any kind of known issue or workaround?  It is difficult to troubleshoot given the intermittent nature.

<telerik:RadAsyncUpload  Skin="Default" OnClientFilesUploaded="saverecord" ID="faupload" runat="server"
        MultipleFileSelection="Automatic" TargetFolder="\\xxxxxx\xxxxxx"
        Width="221px" PostbackTriggers="bSave,bSave2" 
        DropZones="#DropZone2">
    </telerik:RadAsyncUpload>

Veselin Tsvetanov
Telerik team
 answered on 14 Apr 2016
4 answers
369 views
Hey guys,

I want to check if the different radwizard steps are valid using their validation group.

The problem that I am having is since I have RenderedSteps="Active", the other steps are not being shown and I cannot use Page.Validate.

Example:

I have four Steps: Step0, Step1, Step2,Step3

I am currently in step0 and click on the navigation bar to go to Step3

        public void radwizardControl_NavigationBarButtonClick(object sender, Telerik.Web.UI.WizardEventArgs e)
        {
            //We're only going to save information if the user is moving forward, not going back
            if (e.CurrentStepIndex < e.NextStepIndex)
            {

                for (int iIterator = e.CurrentStepIndex + 1; iIterator < e.NextStepIndex; iIterator++)
                {
                    Page.Validate(ListOfValidationGroups[iIterator]);
                    if (!Page.IsValid)
                    {
                       radwizardControl.ActiveStepIndex = iIterator;
                        break;
                    }
                }
           }
       }

But as I said, the problem lies that when I try to validate a group that isn't rendered, Page.IsValid will always return true.


Is there any way around this?

Plamen
Telerik team
 answered on 14 Apr 2016
10 answers
142 views

similar to this thread regarding CSV export - http://www.telerik.com/forums/csv-export-not-exporting-commanditem-template

my CommandItemTemplate looks like below but only the first control(radlabel) appears in the PDF?

<CommandItemTemplate>

            <telerik:RadLabel ID="RadLabel1" runat="server" Text="Statement" Font-Size="X-Large"></telerik:RadLabel>
            <br />
            <telerik:RadLabel ID="lblDate" runat="server"></telerik:RadLabel>
            <br />
            <hr />
            <table width="100%">
                <tr>
                    <td align="left">
                        <telerik:RadLabel ID="lblflname" runat="server" Font-Bold="true"></telerik:RadLabel>
                    </td>
                    <td align="right">
                        <telerik:RadLabel ID="lblpractLFNAME" runat="server"></telerik:RadLabel>
                    </td>
                </tr>
                <tr>
                    <td align="left">
                        <telerik:RadLabel ID="lblClientAddress1" runat="server"></telerik:RadLabel>
                    </td>
                    <td align="right">
                        <telerik:RadLabel ID="lblPractAddress1" runat="server"></telerik:RadLabel>
                    </td>
                </tr>
                <tr>
                    <td align="left">
                        <telerik:RadLabel ID="lblClientAddress2" runat="server"></telerik:RadLabel>
                    </td>
                    <td align="right">
                        <telerik:RadLabel ID="lblPractAddress2" runat="server"></telerik:RadLabel>
                    </td>
                </tr>
            </table>
        </CommandItemTemplate>

Konstantin Dikov
Telerik team
 answered on 14 Apr 2016
2 answers
135 views

I have a RadWizard control in my RadGrid FormTemplate. I have controls in the Wizard steps bound to the grid data source.

How can I get the Wizard Finish button to save changes in the form? 

Normally I would assign a CommandName "Update" to a button in the FormTemplate but here I can't find a way of doing that on the Finish button in the wizard.

Another way, I tried to handle the Finish button clicked event but it doesn't seem to work:

        protected void wizPlan_FinishButtonClick(object sender, WizardEventArgs e)
        {
            this.grPlans.MasterTableView.PerformUpdate((sender as RadWizard).NamingContainer as GridEditFormItem);
        }

 

Plamen
Telerik team
 answered on 14 Apr 2016
7 answers
129 views
I'm asking about the "resource view" of the calendar ("groupby").

Let's say Dr Jones is the 1st column, Dr Smith the 2nd and Dr Leroy the 3rd.  If Dr Jones only works from 3pm to 5pm how do I gray out the "off-times" for HIM ONLY (his column only)?

I store all the work hours for the people in a seperate table.

Also, how do I customize the TITLE of the column?  For example change "Dr Jones" to "Dr Jones MD"?
Nencho
Telerik team
 answered on 14 Apr 2016
1 answer
104 views

Hi Telerik Team,

Pls, I have some issues - see attached image.

1. When I edit a task in a window, how to translate the text "Assign"?

2. When I edit % complete in a row or in a window, how to change for spinbutton increase one by one, 1% until 100%?

3. In gantt header how to change the date format to "dom 03/4 - sáb 16/4"?

 

Thanks, Daniel

Nencho
Telerik team
 answered on 14 Apr 2016
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?