Hi all
Currently I have bought ”Kendo UI“ license, and I saw there is "Framework -> Touch Event", which is similar like "UI for IOS".
My question is: if I want to build IOS application, should I buy "UI for IOS" license again? or use "Kendo UI - Touche Event" function?
Thanks
Regards,
We have installed Telerik and We use Visual Studio 2013 professional, by security policies in the enterprise our account don't have administrator's privileges and Telerik's toolbar doesn't appear.
Can you help me please?
Thanks for your help
| if ((e.Item.RowIndex == 2)) |
| { |
| /* Code to add the image banner in between the rows - Start*/ |
| TableCell tCell = new TableCell(); |
| ImageButton img = new ImageButton(); |
| img.ID = "ImageBannerID"; |
| img.ImageUrl = hdnSpecialImageSrc.Value; |
| img.PostBackUrl = hdnSpecialImageRedirect.Value; |
| img.Style.Add("cursor", "hand"); |
| img.Style.Add("margin-top", "5px"); |
| img.Style.Add("margin-bottom", "5px"); |
| tCell.Controls.Add(img); |
| Table tblGrid = ((Table)(this.RadGrid1.MasterTableView.Controls[0])); |
| int intIndex = tblGrid.Rows.GetRowIndex(e.Item); |
| Telerik.Web.UI.GridItem gvrSubHeading = new Telerik.Web.UI.GridItem(this.RadGrid1.MasterTableView, intIndex, intIndex, Telerik.Web.UI.GridItemType.Separator); |
| tCell.ColumnSpan = this.RadGrid1.MasterTableView.Columns.Count; |
| gvrSubHeading.Cells.Add(tCell); |
| tblGrid.Controls.AddAt(intIndex, gvrSubHeading); |
| |
| /*End of Coding*/ |
| } |
We are not sure where to post. We want to send this message to forum admins. We have started using telerik recently and we are developing a very huge application based on telerik asp.net mvc controls. As we are new to telerik, we had so many doubts and posted on forum and used to get very prompt reply, apart from the time zone delays. But recently, we are not sure why, but we are not getting reply until 4 to 5 days. We are not sure what changed recently. At times we will be having close time lines and we end up going for a non telerik solutions. But we love to use to telerik solutions. Will it be faster if we put a support ticket instead of posting on forums?
One of the reason we were happy with telerik is for your prompt reply and support. We are not trying to complain but just want to find same page to better use all the solutions that telerik is offering.
Thanks,
DHHS Team
Hi,
We have an application built using an old version of Vanatec 4.3.19.797 (OpenAccess 2.0) that uses .Net 2.0. The application is a console (DOS) one that references other projects (DLLs) which are compiled to x86. This application was done in VS2008. If we run this application on XP or any 32 bit systems then it works fine. When we tried to run it on x64, we always get the BadImageFormatException error. We tried setting the executable and the DLL it is complaining about (which is the one referencing the Vanatec DLLs) to 32 bit using corflags myassembly/DLL /32BIT+ but still no luck.
Any ideas?
Thanks,
Mustafa
Hi,
I have 2 different pages like "HomeDesktop" and "HomeMobile" .If user comes from desktop i want to display "HomeDesktop" as home page.If user comes from mobile i want to display "HomeMobile" as a home page.Is there any way.Please suggest me.
Thanks,
Suresh
Hi All,
My requirement goes like , we dont have allowed list extensions , instead we have blocked list of file types/extensions. So i wrote java script which will check against the blocked list [i.e xml file]. should be removed from the upload file collection. So i wrote following java script.
function OnClientFileSelected(sender, args) {
var currentFileName = args.get_fileName();
var fileExt = '.' + currentFileName.split('.').pop().toUpperCase();
if (!(IsValidFileType(fileExt))) {
// invalid file - inform user and remove
alert('"' + currentFileName + '" cannot be uploaded and will be removed.');
sender.deleteFileInputAt(args.get_rowIndex());
sender.deleteFileInputAt(currentFileName);
}
}
this script is runing fine. It is able to remove blocked file extensions from uploading. But in target folder am able to see the blocked files. It means in Front end the blocked file types are removed from uploading list.but in backend it goes to target folder.
