I have an image inside of a RadToolTip. While everything is functional, the ToolTip displays, and all of the content, I cannot add AlternateText to the image.
It is an asp:Image control:
<telerik:RadToolTip ID="RadToolTip1" runat="server" RelativeTo="Element" TargetControlID="myImage" Skin="Default" EnableShadow="true" Position="BottomRight" AutoCloseDelay="1000" Sticky="true" IgnoreAltAttribute="true"> <h2>An image with alt text</h2> <asp:Image ID="Image1" runat="server" ImageUrl="~/Path/To/Image.jpg" AlternateText="Here is description of the image" /></telerik:RadToolTip>
I am aware of the IgnoreAltAttribute property but this only refers to the image clicked to open the ToolTip, not images inside of the ToolTip.
How can I prevent alt text from being removed from the contents of the ToolTip?
Any help is appreciated.
Hi, i have encounter some CSS issue with the Image manager and Document Manager dialog. and i cant seems to find the CSS causing this. i have customised the dialog aspx file for some customization but dont's seems to have any css inside it
In my web application I'm using RadWizard in RadWindow for import personels from excel. So in first step there is a RadAsyncUpload control. When ´ActiveStepIndex==1´ saving excel to server in ´NextButtonClick´ event. And when step index is 2 inserting personels.
protected void excelImportWizard_NextButtonClick(object sender, WizardEventArgs e){ if (excelImportWizard.ActiveStepIndex == 1) { var files = excelImportAsyncUpload.UploadedFiles; if (files.Count == 0) { e.CurrentStep.Active = true; CurrentMaster.AlertWindow("Lütfen içeri alınacak verileri içeren dosyayı yükleyiniz."); return; } SaveFile(files[0]); ExcelImportPreviewSpreadsheet.Provider = new SpreadsheetDocumentProvider(LastSavedFilePath); } if (excelImportWizard.ActiveStepIndex == 2) { Departments = OperationController.GetDepartments(); Companies = DefinitionController.GetParentCompaniesFromCompanyType(new List<int> { 2, 3, 4 }); PersonelProfessions = DefinitionController.GetAllPersonelProfessions(); PersonelTitles = OperationController.GetPersonelTitles(SessionManager.CurrentUser.ProfileIdentifier); ProcessFile(excelImportAsyncUpload.UploadedFiles[0]); }}
When importing personels finishes and user clicks finish button of radwizard I'm closing RadWindow from client side in parent window of RadWindow.
protected void excelImportWizard_FinishButtonClick(object sender, WizardEventArgs e){ RadAjaxManager.GetCurrent(Page).ResponseScripts.Add(@"clearUpload();"); RadAjaxManager.GetCurrent(Page).ResponseScripts.Add(@"" + CallBackFunctionOnFinish + "();");}
But when I open RadWindow again, I see that RadWizard's active step is still last WizardStep. Because of this I set active step to 0 on finish button click.
excelImportWizard.ActiveStepIndex = 0;
After I set active step index to 0 manually I opened radwindow and see wizard waits on first step as I wanted. But when I click next button ActiveStepIndex is still 0, not changed to 1. How do I set RadWizard correctly to the initial state on RadWindow opening.
I read a forum thread , documentation Using RadWindow as a Dialog and a demo Window - Return Values from a Dialog. Everything was nice and gave good understanding. But the return value is determined at server side(for example in btnSave_Click event handler) in my scenario. So is there any way to set the arguments of radwindow object in server side i.e code behind ?
In all texts above i mentioned there is a javascript function GetRadWindow () . In that function there is an object used window . What is the server-side equivalent to window object ? I am pondering that whether there is a way to mimic GetRadWindow function into c# in code behind ?
hi, i want have some textboxes in a RadGrid and i use each one of the(insert some data in database)
i don't know what i have to do please some help to me
<telerik:RadGrid AutoGenerateColumns="False" ID="RIV_RateHireGrid" MasterTableView-DataKeyNames="ID" AllowPaging="True" PageSize="5" AllowCustomPaging="False"Hi
I'm having the same problem. i bind dropdown with sqldatasource.and the items are showing as my data. but when try to find that dropdown with BatchEditCommand event its says items count 0. i don't understand the problem. please help..
Is there a way to force the NumericTextbox to display only the numeric keypad on mobile devices? I can do it with a textbox and use radinputmanager to get the effect I want, but it's causing some other issues so I would prefer to just use the NumericTextbox if possible.
Thanks,
Hi,
On which event I need to write my code for add new task ? When I click on "Save" button from add new task popup, event should be fired and execute my code.