Exemplo n.º 1
0
        internal ParametersTab(NWFContext nwfContext, string tabTitle)
        {
            TabTitle = tabTitle;

            InitializeTab();

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

            InitializeChildControl();
        }
Exemplo n.º 2
0
        internal VariablesTab(NWFContext nwfContext, string tabTitle)
        {
            TabTitle = tabTitle;

            InitializeTab();

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

            InitializeChildControl();
        }
Exemplo n.º 3
0
        internal GraphicalTab(NWFContext nwfContext, string tabTitle)
        {
            TabTitle = tabTitle;

            InitializeTab();

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

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