Im using two radtextboxes within GridTemplateColumns. Im trying to use an onblur event but when I make some tests for some reazon, the attached function is firing several times. What is causing this behavior?
Aspx
1.<telerik:GridTemplateColumn UniqueName="VisibleAccCode" HeaderText="Código Cuenta"2. HeaderStyle-HorizontalAlign="Center"3. ItemStyle-HorizontalAlign="Center" HeaderStyle-Width="250px">4. <ItemTemplate>5. <telerik:RadTextBox ID="TxtAccCode" runat="server" Width="85%"/>6. </ItemTemplate>7.</telerik:GridTemplateColumn>
01.Dim TxtAccCode As RadTextBox = CType(item.FindControl("TxtAccCode"), RadTextBox)02.Dim TxtAcctName As RadTextBox = CType(item.FindControl("TxtAcctName"), RadTextBox)03. 04.Dim sJsFunction As String05. 06.sJsFunction = "function (s,a){BuscarAccCode(s,a," & RowIndex & ");}"07. 08.If TxtAccCode IsNot Nothing Then09. TxtAccCode.ClientEvents.OnBlur = sJsFunction10.End If11. 12.sJsFunction = "function (s,a){BuscarAccName(s,a," & RowIndex & ");}"13. 14.If TxtAcctName IsNot Nothing Then15. TxtAcctName.ClientEvents.OnBlur = sJsFunction 16.End If
Jscript
1.function BuscarAccCode(sender, eventArgs, rowIndex) {2. alert(sender.get_id() + ' index ' + rowIndex);3. }4. 5.function BuscarAccName(sender, eventArgs, rowIndex) {6. alert(sender.get_id() + ' index ' + rowIndex);7. }Is there any other way to retrieve the client object of a RadNumericTextbox control without using server tags to get the ID? Otherwise, I always retrieve 'null' as the result of the selector.
E.g.:
$find("div[id$='_numTxt_wrapper']").attr("id"));
I also notice there is a <div> element with an id ending in "_wrapper".

<telerik:RadAjaxLoadingPanel ID = "rdAjaxLoadingPanel" runat="server"></telerik:RadAjaxLoadingPanel><telerik:RadAjaxPanel ID = "rdAjaxPanel" runat="server" LoadingPanelID="rdAjaxLoadingPanel" EnablePageHeadUpdate="false"> <telerik:RadNotification RenderMode = "Lightweight" ID="rdNotification" runat="server" Position="Center" Width="330" Height="160" Animation="Fade" EnableRoundedCorners="true" EnableShadow="true" Style="z-index: 100000"> </telerik:RadNotification> <telerik:RadTabStrip RenderMode = "Lightweight" runat="server" ID="rdTpEvents" MultiPageID="rdmlPage" SelectedIndex="0" Skin="Silk" OnTabClick="tabClick"> <Tabs> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage runat = "server" ID="rdmlPage" SelectedIndex="0" CssClass="outerMultiPage"> <telerik:RadPageView runat = "server" ID="rdPgLatest"> <div class="dwp-clear"> </div> <asp:DataList ID = "LatestEvents" runat="server" RepeatDirection="Vertical" Width="100%" OnItemCommand="LatestEvents_ItemCommand" DataKeyField="id" OnItemDataBound="LatestEvents_ItemDataBound"> <ItemTemplate> <div class="row"> <div class="col-md-12"> <div class="text-center register" id="dvRgisterNow" runat="server"> <asp:LinkButton ID = "lnkRegisterNow" runat="server" CommandName="RegisterNow" Text="Register Now"></asp:LinkButton> </div> </div> </div> </ItemTemplate> </asp:DataList> </telerik:RadPageView> </telerik:RadMultiPage></telerik:RadAjaxPanel>
Hi,
I have a asp LinkButton in RadAjaxPanel. The LinkButton initial text is "Register" and after a event happen it will change to "Unregister". After going to another pages and click on Browsers back button, the LinkButton text is "Register" and not "Unregister". This happen in IE but for Chrome and Mozilla it retain "Unregister" because of viewstate.
Please advise.
Thank you
Hi,
I've been slightly confused as to how to use the installation file for a multi WFE Farm.
Installed on say, WFE 1 fine.
Looking at the GAC on WFE1, I also see the DLLs installed for Web.UI,Skins, Design and Ajax.SharePoint
Trying to install on WFE2 and it states the web parts are already installed (because of rpelication this is correct).
When looking on WFE2 the DLL' do not exist in the GAC. How do I install these?
(We do not have GACUTIL etc installed on the production server and am unable to deploy directly from our Development environment.
Thanks
<div>
<telerik:RadSpreadsheet runat="server" ID="rssTest"></telerik:RadSpreadsheet>
</div>
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.InitDim provider As SpreadsheetDocumentProvider<br> Dim path As String = Server.MapPath("~/App_Data/20150530_C09_Schedule.xlsx")provider = New SpreadsheetDocumentProvider(path)rssTest.Provider = providerEnd Sub
Is there any way to get radgrid grouping by a specific column?
Thanks,
d-cpt

Hello I am working in RadCloudUpload to upload files in amazon s3 server. It working with Single file (20MB) perfectly. But when I am trying to open multiple files (ex: 10MB, 20MB, 5MB, 8MB) it is uploading only One or Two files at a time.Not all the files are uploaded. but If I am trying to upload files with smaller size (ex: 10KB, 2MB, 100KB, 3MB) then all the files are uploaded to S3 server. How to resolve this problem ?
<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MaxFileSize="91943040" RenderMode="Lightweight" MultipleFileSelection="Automatic" OnClientFileUploaded="fileUploaded" OnFileUploaded="RadCloudUpload1_FileUploaded" ProviderType="Amazon" > </telerik:RadCloudUpload>
function fileUploaded(sender, args) { theForm.submit(); }
protected void RadCloudUpload1_FileUploaded(object sender, CloudFileUploadedEventArgs args)
{
long contentLenght = args.FileInfo.ContentLength;
string contentType = args.FileInfo.ContentType;
string keyName = args.FileInfo.KeyName;
string originalName = args.FileInfo.OriginalFileName;
args.IsValid = true;
}
<httpRuntime maxRequestLength="91943040" executionTimeout="3200" />
please help !!!
Hello,
When I run IMager manager in rad editor, I can't load css and get the error as shown. please show me another way to fix this problem, thanks

