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.
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>
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.
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
>
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>
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);
}
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