Hello
How can i hide the trial message without purchease telerik??
thanks
}.wwgItem { background-color: white; border-color:white; border-style:none; letter-spacing: .15em; font-size: 14pt; }.rmFocused {Hello,
I am in the process of migrating some combo boxes that used to be data source driven to be populated from a web service. I am facing a scenario where I need to force the combo box to load by calling ComboBox.DataBind() in the code behind. However, following the call the ComboBox contains no data!
I have tried searching for a solution and I have referred to the documentation but I can't find anything that works. I should mention that the combo box is populated if the user interacts with it so it is configured correctly, the web service is returning data and so on.
I have tried experimenting with different values for EnableLoadOnDemand and EnableAutomaticLoadOnDemand but no luck!
Any help would be appreciated, so thanks in advance.
John.
Hi ...
I would like to have a documentation for these 2 methods ...
I figured out, that you can set some values with the get_agendaViewSettings() method eg. get_agendaViewSettings().numberOfDays = 30;
I don't know how to use the set_agendaViewSettings().
Thank You
Peter
Hi,
I want to limit the number of appointment that can overlap at the same time.
I found here how to limit that when a new appointment is created. However, lets say I want to limit to 2 appointment that overlap, I create two appointments from 8 to 9 and one from 10 to 11, if I drag and Drop the 10 to 11 to 8:30-9:30, the system will not detect that the limit is reached.
When I look in the update, the appointment that I get as "sender" is the one with the old start and end, so it is not detected as being in the interval by using "
GetAppointmentsInRange"
Can you help me ?
Hi,
I like to set a conditional OnResponseEnd client event on RadAjaxPanel?
Would it be possible to set like this:
if............
RadAjaxPanel1.ClientEvents.OnResponseEnd = "Doit"
end if
My page keeps on saying "Object reference not set to an instance of an object" on this line​
Thanks,
Marc
Hi,
I want change the colour of a navigation.
The property BackColour doesn't work, and if I want modify a Skin with your tool http://stylebuilder.telerik.com this control doesn't appear.
How can i change the background colour?
Thanks


I'm trying to save uploaded files into a db and return the row id. I'm having significant problems with getting the uploaded files from the RadTreeView node. The application allows users to drag/drop a file onto a node. This part is working. However, on the server side, the uploadedfiles is always empty. So I implemented a custom handler and I can access and save the file at that point. However, I can not access the results object that is returned because my OnFileUploaded event is not getting fired. I need the returned file id so I can open a new window.
I have a hidden button that is clicked via the OnClientFileUploaded event by doing a postback on the hidden button.
Here's my control:
<rad:RadAsyncUpload runat="server" ID="radUpload" OnClientFilesUploaded="OnClientFilesUploaded" PostbackTriggers="btnUploadFiles"
DisableChunkUpload="false" EnableFileInputSkinning="false" UploadedFilesRendering="AboveFileInput" MultipleFileSelection="Automatic" Skin="Default" OnFileUploaded="RadAsyncUpload1_FileUploaded" OverwriteExistingFiles="true" OnClientAdded="OnClientAdded" HttpHandlerUrl="~/Tools/CustomHandler.ashx">
Is there another way to access the results object without using the OnFileUploaded event?