or
I am fllowing the demo for teh filew selector, however I am getting am getting an error from the JS:
Compiler Error Message: BC30451: Name 'ExplorerWindow' is not declared.
Source Error:
|
I have a button to add/delete node to the tree. When I click on the button and tree is rebound with the data, horizontal scrollbar disappears. I am using Ajax.
Thanks,
-raj
| Private Sub RadGrid1_DetailTableDataBind(ByVal source As Object, ByVal e As Telerik.Web.UI.GridDetailTableDataBindEventArgs) Handles RadGrid1.DetailTableDataBind |
| Dim dataitem As GridDataItem = e.DetailTableView.ParentItem |
| If dataitem.Item("the_column_I_need_to_check").Text = "AD" then 'it cannot find this column |
| Me.srcADMember.SelectParameters("role").DefaultValue = dataitem.Item("ADGroup").Text 'It finds ADGroup column |
| else |
| 'Use different data source |
| end if |
| 1 Dim intRows As Integer = ds.Tables(0).Rows.Count() |
| 2 upload.AllowedFileExtensions = New String(intRows) {} |
| 3 Dim x As Integer |
| 4 For Each row As DataRow In ds.Tables(0).Rows |
| 5 'upload.AllowedFileExtensions.SetValue("." & row("FileTypeEnding"), x) |
| 6 upload.AllowedFileExtensions.SetValue(row("FileTypeEnding"), x) |
| 7 x += 1 |
| 8 Next |