Telerik Forums
UI for ASP.NET AJAX Forum
20 answers
396 views
Hello,
I have created a User Control for activity scheduling. And i set the start date of activity by RadDatePicker to '5 oct, 2013' and Time to'9:00 pm' using RadTimePicker. Now i want  to schedule a activity for recurrence and i set it to daily and Eny by '8 Oct 2013'. So my problem is,  it does not including the last date(8 Oct, 2013) and schedule the activity for 5,6,7 Oct 2013. What is the reason behind that? And also when i set the time to 12:00 am. Then it will include all dates(5,6,7,8 Oct 2013). If  somewhere  i am wrong so please let me know how i can solve this problem. Please help me. This is urgent.
Aref
Top achievements
Rank 1
 answered on 16 Nov 2015
3 answers
114 views

Hi Telerik Team,

We use Telerik ASP.net controls in our project. We found the Image Editor doesn’t work well on web farm environment. In our production server, we uses Image Editor three ways.
    1. RadEditor -> Image Manager -> Image Editor
    2. Using customizing existing Image Manager dialogs Image Manager -> Image Editor
    3. Using Image Editor directly

The first and third ways works perfect but the second way doesn’t work on web farm environment. You can check attachments for the source code and fiddler screen shoot.

Any clues?

Thanks in advance,

Lan

Vessy
Telerik team
 answered on 16 Nov 2015
1 answer
145 views

Hi,

My Datapager is using:

<telerik:RadDataPagerButtonField FieldType="FirstPrev" />
<telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="5" />
<telerik:RadDataPagerButtonField FieldType="NextLast" />

Instead of arrows, how can I show them as text?
I wish to change from < 1,2,3,4,5 > to PREV 1,2,3,4,5 NEXT

Thanks.


 

 

Viktor Tachev
Telerik team
 answered on 16 Nov 2015
4 answers
331 views

Hi,

 

How can I populate a ‘dropDownList’ inside a radGrid from the code behind?

 

The custom form template is as follows:


<FormTemplate> 
              <asp:Label ID = "lblContact" runat ="server" text = "Contact"></asp:Label> 
              <asp:DropDownList ID="ddlContacts" runat ="server" DataValueField ="Description" DataTextField ="description"/> <br/><br /> 
              <asp:Button ID="btnSubmit" runat ="server" Text ="Submit" /> 
              <asp:Button ID="btnCancel" runat ="server" Text ="Cancel" /> 
</FormTemplate> 

In the code behind I have the following:

 

 

Private

 

Sub RadGridService_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles RadGridServices.NeedDataSource

 

 

 

 

 
            Dim objContacts As Array  
            'Gets data from web service  
            objContacts = objReceptionBureauService.getAllContactsForEmployee("EmployeeID")  
 
            Dim contacts As DropDownList = TryCast(FindControl("ddlContacts"), DropDownList)  
            contacts.DataSource = objContacts  
            contacts.DataBind()  
            contacts.DataTextField = "Description" 
            contacts.DataValueField = "Description" 
End Sub

Eyup
Telerik team
 answered on 16 Nov 2015
1 answer
622 views

Hi all

Don't ask - operation reasons, but I have  rad combo box with checkboxes, is it possible to only allow a single checkbox to be selected?

A bit like turning off multiselect, which isn't a property.

Andy

Ivan Danchev
Telerik team
 answered on 16 Nov 2015
5 answers
172 views

We are using radmenu on our website. However when using on mobile browser, radmenu dropdown can not be opened when touched to main menu items. We have searched over many forums, blogs. etc. We couldn't find any solution. We have updated the dll files to the final version but again it did not work.

 

What should we do to overcome this problem. Our mobile clients can not use the menu and we have to solve their problem immediately.

 

Thank you for your help.

 

Kind regards,

Nencho
Telerik team
 answered on 16 Nov 2015
15 answers
207 views
We recently switched from RadUpload to RadAsyncUpload. In general it is working well but we're getting a weird sporadic symptom where the upload seems to corrupt about 1 out of every 10 video files (different types of video files from .mov, to .mpg to .avi). The file will upload and even appear to have the correct size as compared to the original but it is either so corrupted it won't play or it will play to usually about 1 minute and then freeze on that frame for the remainder. 

We've tried to isolate the issue based on our end-user's systems but there doesn't seem to be any consistent set-up. It seems random. Some are on Macs while some are on PCs. But it is consistent in that the same user can upload 5 similar files and 1 will be corrupted. If they try to upload that same file again it is corrupted again. If they ftp the file to us and we try to upload it through the same web page we can upload the file fine.

We thought it may have to do with time-outs (users with slower systems) but then it doesn't seem to make sense that it occurs on the same file when they try to re-upload just the single file. 

We have had a couple of them tell us that the "select" button doesn't always pop up the window for them to select a file but that seems like a completely unrelated issue. 

any thoughts or direction on this would be greatly appreciated. As a note, there is a second process that happens to the uploaded file where an encoder translates it into a new file of a different format and its possible that is what is corrupting the original but this was the same process that was running with the original RadUpload and we never encountered the issue with that and it ran for about 4 years.

We're stumped!

thanks,
Jeff
Plamen
Telerik team
 answered on 16 Nov 2015
1 answer
96 views

We are binding a list<string> as the combobox datasource, however the values do not display as a list. In some cases there are 3 values on the same row, is there specific CSS which will rectify this issue in IE, FireFox and Chrome?

 

Kind Regards

Caolan

Caolan
Top achievements
Rank 1
 answered on 15 Nov 2015
2 answers
215 views
I run into problem when using ScriptReference,
there was a bug in my extrenal  js code contained in .js file
which I load using RadScriptManager /ScriptReference. I corrected the bug
but VS debugger kept breaking on the same line even after I completely removed
everything it still would break on empty line with original error message about
null variable which no longer even in the code. I restarted VS, then Workstation
but it kept breaking on the same empty line. So then I renamed the js file
and VS loaded the old file with original bug, The file tab says "dynamic" and I have no idea
where VS 2010 pulls that from. Is is VS problem or RadScriptManager  using cached js files ?

I have not done much javascript coding in VS 2010 but in VS 2008 I did several
javascript projects(no telerik, just vanilla js) with some heavy coding and never run into problem like this.

Allen
Top achievements
Rank 2
Iron
Veteran
 answered on 15 Nov 2015
14 answers
491 views
Hello,

ISSUE: Every time I call the Rebind() method my select method is called two times. 

GIVEN:
- using Telerik ASP.NET Ajax Q1 2013.
- using RadGrid with model binding.
- select method is GetList().

EXTRA: From the method's description (Rebind) I understand that it calls two methods: 1. NeedDataSouce & 2. DataBind

QUESTION: How can this behavior be avoided?(select method should always be called once)



Cyril Iselin
Top achievements
Rank 1
 answered on 13 Nov 2015
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?