
Hello,
I am new to Telerik. I am struggling with finding a list of methods and properties for the RAD controls.
I can see from intellisense that the controls have a lot to offer.
I was able to find the code samples, I downloaded the "Rad Controls AJAX Courseware", and found other documents online - but I was did not find a list of properties and methods (like the you would find on the MSDN site).
Can someone direct me to the right location please?
Thank you,


<telerik:RadAsyncUpload runat="server" ID="RadAsyncUpload1" MultipleFileSelection="Automatic"></telerik:RadAsyncUpload>
Protected Sub btnsaveimages_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnsaveimages.Click If RadAsyncUpload1.UploadedFiles.Count > 0 Then For Each file As UploadedFile In RadAsyncUpload1.UploadedFiles file.SaveAs("~/" + file.FileName) Next End If End SubSub RadAsyncUpload1_FileUploaded(ByVal sender As Object, ByVal e As FileUploadedEventArgs) Handles RadAsyncUpload1.FileUploaded e.File.SaveAs(Server.MapPath("~/Upload/Images/ImgGallery/2/" + e.File.FileName), True) End Sub

I have followed example provided in below link to export, this exports to a PDF fine, but this opens a dialog asking for open or save the PDF. is it possible to open the PDF directly without showing the open dialog.
Good morning guys, I'm currently stuck on a particular problem here.
Currently on edit mode I have a procedure for the "Update" button to execute a procedure (done via the wizard)
Now I'm trying to add a stored procedure on the "Cancel" button. I need to validate some data
Can I add the command here ?
Kindly please help? I know this is easy for experts out there
If e.Item.IsInEditMode Then
If TypeOf e.Item Is GridDataInsertItem Then
Dim editItem As GridEditableItem = DirectCast(e.Item, GridEditableItem)
Dim InsertButton As ImageButton = DirectCast(editItem.FindControl("PerformInsertButton"), ImageButton)
Dim CancelButton As ImageButton = DirectCast(editItem.FindControl("CancelButton"), ImageButton)
CancelButton.Visible =
True
Else
Dim editItem As GridEditableItem = DirectCast(e.Item, GridEditableItem)
Dim updateButton As ImageButton = DirectCast(editItem.FindControl("UpdateButton"), ImageButton)
Dim CancelUpdateButton As ImageButton = DirectCast(editItem.FindControl("CancelButton"), ImageButton)
CancelUpdateButton.Visible =
True
End If
End If
Thanks in advance :)