Hi Guys,
I'm dynamicly setting the DeletePaths, UploadPaths and ViewPaths based on some users credentials with the following code:
I'm dynamicly setting the DeletePaths, UploadPaths and ViewPaths based on some users credentials with the following code:
Dim viewImages As String() = New String() {"~/Images/" & ddMenuName.SelectedValue}
Dim uploadImages As String() = New String() {"~/Images/" & ddMenuName.SelectedValue}
Dim deleteImages As String() = New String() {"~/Images/" & ddMenuName.SelectedValue}
If Not IsPostBack Then
RadEditor1.ImageManager.ViewPaths = viewImages
RadEditor1.ImageManager.UploadPaths = uploadImages
RadEditor1.ImageManager.DeletePaths = deleteImages
End If
This works very good, however the upload button is disabled. What am I doing wrong here?