| | | 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: 2 days ago @ 11:48 PM Posts: 64, Visits: 69 |
| | 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 |
| |
|
|