internal ParametersTab(NWFContext nwfContext, string tabTitle)
        {
            TabTitle = tabTitle;

            InitializeTab();

            SetBrowserDocument(nwfContext.GetWorkflowConfigurationNodeListByXPath("//NWActionConfig")[0]);

            InitializeChildControl();
        }
        internal VariablesTab(NWFContext nwfContext, string tabTitle)
        {
            TabTitle = tabTitle;

            InitializeTab();

            GetBrowserDocument(nwfContext.GetWorkflowConfigurationNodeListByXPath("//WorkflowVariables")[0]);

            InitializeChildControl();
        }
Exemple #3
0
        internal GraphicalTab(NWFContext nwfContext, string tabTitle)
        {
            TabTitle = tabTitle;

            InitializeTab();

            GetBrowserDocument(nwfContext.GetWorkflowConfigurationNodeListByXPath("//ExportedWorkflow")[0]);

            InitializeChildControl();
        }
 internal static string GetTabRendering(NWFContext nwfContext)
 {
     return
         (GetRenderedBrowserText(
              nwfContext.GetWorkflowConfigurationNodeListByXPath("//NWActionConfig")[0].OuterXml));
 }