or


Workflow
Cases
Case 1001
Case 1002
Case 1003
Search
Search by case number
Search by id
Reports
Activity report
Audit report
Where All but the items under the Cases node are static, but those under Cases are dynamic, retrieved by a call to a WCF service method.
Is this possible??
Thanks,
James
[MissingMethodException: Method not found: 'Void System.Web.UI.ScriptManager.RegisterHiddenField(System.Web.UI.Page, System.String, System.String)'.] Telerik.Web.UI.RadScriptManager.OnLoad(EventArgs e) +0 System.Web.UI.Control.LoadRecursive() +50 System.Web.UI.Control.LoadRecursive() +141 System.Web.UI.Control.LoadRecursive() +141 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
Looking Forward
| function OnClientContextMenuItemClicked(sender, args) { |
| var buttonValue = args.get_item().get_value(); |
| if (buttonValue == "Checkin") { |
| var oExplorer = $find("<%= DocumentExplorer.ClientID %>"); |
| var oAjax = $find("RadAjaxManager"); |
| // I want to open the upload window here |
| } |
| } |
| Private Sub DocumentExplorer_ExplorerPopulated(ByVal sender As Object, ByVal e As RadFileExplorerPopulatedEventArgs) |
| Dim items As List(Of Widgets.FileBrowserItem) = e.List |
| 'Dim isGridPopulated As Boolean = items.Exists(Function(it) (TypeOf it Is Widgets.FileItem)) |
| 'If (isGridPopulated) Then |
| Dim i As Integer = 0 |
| While i < items.Count |
| If TypeOf items(i) Is Widgets.FileItem Then |
| If items(i).Attributes("Status").ToString = "Locked" Then |
| ' how do I get the contextmenu here so I can grey out some of the items? |
| ' also the comment line below seems to have no effect!!!!!!!! |
| 'items(i).Permissions = Widgets.PathPermissions.Read |
| End If |
| End If |
| i += 1 |
| End While |
| 'End If |
| End Sub |