| | | Supreme Being
       
Group: Forum Members Last Login: Friday, September 05, 2008 Posts: 11, Visits: 89 |
| | Hi I need to know how i can put a WorkflowListPanel in my aspx page, like the image below, and one way to open the Process Design page from the selected workflow in the list, and which are the controls to use, properties, etc 
Thanks |
| | | | Supreme Being
       
Group: Forum Members Last Login: Thursday, March 17, 2011 Posts: 66, Visits: 73 |
| | Hi In the ASPX Page add <%@ Register Assembly="Skelta.Repository.Web, Version=3.5.0.0, Culture=neutral, PublicKeyToken=bfb586d2c6c4a4f4" Namespace="Skelta.Repository.Web" TagPrefix="cc1" %>
<cc1:ListControl ID="ListControl1" runat="server" HeaderControlPath="/Repository/ListControl/ListHeader.ascx" MenuControlPath="/Repository/ListControl/WorkflowRibbonBar.ascx" VersionMenuControlPath="/Repository/ListControl/VersioningRibbonBar.ascx" />
In the CS page, add the following lines of code. ListControl1.RepositoryName = ConfigurationManager.AppSettings[ "RepositoryName"];ListControl1.ListName = "WorkFlow"; Hope this helps. Regards, RSimon |
| | | | Supreme Being
       
Group: Forum Members Last Login: Friday, September 05, 2008 Posts: 11, Visits: 89 |
| | Thanks RSimon But didn´t i have to register some dll for list control? It returns a error : Value cannot be null. Parameter name: key Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentNullException: Value cannot be null. Parameter name: key
Source Error:
Line 15: Line 16: ListControl1.RepositoryName = ConfigurationManager.AppSettings("RepositoryName")Line 17: ListControl1.ListName = "WorkFlow"Line 18: Line 19: End Sub |
Source File: C:\InfodocX\frm_skeltaworkflowlist.aspx.vb Line: 17
Thanks |
| |
|
|