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

I have this requirement wherein I will add permission to a user. The permissions are grouped and displayed in a treeview.

Now once a user selected a specific permission, this permission together with the group node will be transferred to another treeview on the right side. How can I do it using javascript/jquery? Is this supported by your treeview control? Right now I can do this using the selected node change event of the .NET Built In Treeview Control but I can't use it now since I have new requirement wherein

  • Clicking an item will only highlight it. 
  • Double clicking the node will trigger the move function. 
  • I can select multiple nodes and move them to another Treeview by clicking the move button at the center


I need to know if you can support it before I can recommend your product to my superior.


I've attached a sample ui to describe what I'm trying to achieve.





Plamen
Telerik team
 answered on 22 May 2012
4 answers
319 views
Hi,

I'm looking for a solution uploading large files in ASP.NET MVC project. I tried RadAsyncUpload component and really liked it, but this approach requires me to use ASCX syntax which might be not very appropriate. Is there a way to use native MVC component like "Telerik Upload for ASP.NET MVC" which would work for large files?

Thank you much!
Yuriy
Top achievements
Rank 1
 answered on 22 May 2012
1 answer
157 views
To:



When default expand is false, while click edit button all will not expand, how to make the group expand while editing?

Thanks


Shinu
Top achievements
Rank 2
 answered on 22 May 2012
1 answer
161 views
Hi,

I have been trying to use the DaysOfWeekMask property of RecurrencePattern.
I have to map the values from the database to the DaysOfWeekMask property.
suppose if i have selected Pattern frequency as Weekly
> it occurs ever 'Monday and Friday', then i am saving the value in database as 'Monday | Friday'
> it occurs ever 'Monday, Thursday, Friday', then i am saving the value in database as 'Monday | Thursday | Friday'
and many more such cases
but how can i map these values to DaysOfWeekMask,as DaysOfWeekMask accepts only values of type

 

RecurrenceDay and not the string or int

 

 

.
I know that we can assign multiple days using pipeline operator, but it is not feasible to write all the conditions in that case. So, please suggest some efficient and easy way to assign some string or integer based value to DaysOfWeekMask property.

Please revert asap.
Regards

Ivana
Telerik team
 answered on 22 May 2012
1 answer
197 views

I am having a problem with some of the tool dialogs in RadEditor.

I tried installing the latest release but the sale problem is occurring. The problem is with the Flash, MediaManager, LinkManager and TemplateManager dialogs, which all cause a 403 error. The First 2 dialog controls "ImageManager and DocumentManager" work correctly with no errora.
I have traced it down what I believe is the root cause which is the broken dialogs are generating a bad/truncated url that is missing the "Telerik.Web.UI.DialogHandler.aspx?" url portion.

Bad URL:
http://localhost:80/MySite/Providers/HtmlEditorProviders/Telerik/?tabid=184&DialogName=MediaManager..............................

http://localhost:80/MySite/Providers/HtmlEditorProviders/Telerik/?Tabid=184&DialogName=MediaManager&Skin=Vista&Title=Media%20Manager&doid=..........

Good URL:
http://localhost/MySite/Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?tabid=184&DialogName=ImageManager&Skin=Vista&.......

======================

Do you have any idea why only some of the dialogs/tool have the incorrectly formatted URL and how I can resolve it.

Many thanks.

Rumen
Telerik team
 answered on 22 May 2012
1 answer
61 views
Hi,

RAD Editor control not getting focus in IOS tablet (in safari browser).I checked with your online sample. Is this issue or behavior of the editor control. 

Thanks in advance,
SumanSmith
Rumen
Telerik team
 answered on 22 May 2012
1 answer
61 views
If I purchase Radcontrol for ASP .NET AJAX($999) 
Is support for .Net1.1?


Sorry for bad English :(

Thank you.
Peter
Telerik team
 answered on 22 May 2012
2 answers
209 views
Hello,

I have following scenario. Running asp.net application on machine which has 2 hard drives, system drive C and storage drive D. On C drive there is only 50 MB of free space and on D there is 100 GB of free space. ASP.Net application files are on D drive. TemporaryFolder of the RadAsyncUpload control is set like this "../App_Data/RadUploadTemp".

The problem is that when I try to upload a file which is bigger than 50 MB (amount of free space on C drive) I get an exception: The  System.IO.IOException: There is not enough space on the disk. which is fired from Telerik.Web.UI.AsyncUploadHandler.ProcessRequest(HttpContext context). However, when file upload starts I can see that the file is created on the D drive (previously mentioned path), so it is confusing that no disk space exception is fired. Also worth mentioning is that when I try to upload a file which is 100 MB big, on the D drive I have file with the size of always less then 50 MB and then exception is fired. There was enough RAM memory.

Is there any requirement to have enough disk space on system drive?

Thanks!
Marko
Marko
Top achievements
Rank 1
 answered on 22 May 2012
10 answers
303 views
I have a list of appointment objects binding to the scheduler, one of which has a recurrence set to weekly, every Wednesday, for the following 10 weeks.

I can put a break point on my AppointmentDataBound handler and see the appointment come through and look at it's RecurrenceState and see it's set to master.

The problem is that when the calendar renders I don't see the original date or any of it's occurrences.

If I remove the following string from my databases table's RecurrenceRule field then it will show correctly on it's original start/end date.

DTSTART:20080507T100000Z  DTEND:20080507T103000Z  RRULE:FREQ=WEEKLY;COUNT=10;INTERVAL=1;BYDAY=WE

QuickWatch example can be seen here http://screencast.com/t/BUMerUhOKz

Version 2008.1.415.35 of Telerik.Web.UI.dll

Thanks!
Peter
Telerik team
 answered on 22 May 2012
3 answers
100 views
I'm trying to create a recurring appointment in the code-behind and am following the below example found here -

http://www.telerik.com/help/silverlight/radscheduler-features-recurrences-recurrence-rule.html

This code doesn't appear to work... RecurrenceRule is an abstract class so you can not create an instance of it like in the example below. Can someone give me an example of creating a recurring appointment programmatically? 

Appointment fitnessAppointment = new Appointment();
fitnessAppointment.Subject = "Fitness";
fitnessAppointment.Start = DateTime.Now;
fitnessAppointment.End = DateTime.Now.AddHours(2);
 
RecurrencePattern recurrencePattern = new RecurrencePattern();
recurrencePattern.Frequency = RecurrenceFrequency.Weekly;
recurrencePattern.MaxOccurrences = 30;
recurrencePattern.DaysOfWeekMask = RecurrenceDays.Monday | RecurrenceDays.Wednesday | RecurrenceDays.Friday;
 
RecurrenceRule recurrenceRule = new RecurrenceRule( recurrencePattern );
 
fitnessAppointment.RecurrenceRule = recurrenceRule;
Peter
Telerik team
 answered on 22 May 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?