55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
<%@language = "javascript" %>
|
|
<% /*
|
|
$Revision$
|
|
$Id$
|
|
|
|
File: mld_workflow.asp
|
|
|
|
Description: Bewerken van een workflow *schema*
|
|
|
|
Context:
|
|
|
|
Notes:
|
|
*/
|
|
%>
|
|
<!-- #include file="../scf/scaffolding.inc" -->
|
|
<!-- #include file="../mgt/mgt_tools.inc" -->
|
|
<!-- #include file="../api2/model_mld_workflowstep.inc" -->
|
|
<%
|
|
|
|
var this_model = new model_mld_workflow();
|
|
|
|
var scf_params =
|
|
{
|
|
"search": {
|
|
"autosearch": true,
|
|
"filters": [
|
|
"name"
|
|
]
|
|
},
|
|
"list": {
|
|
"columns": [
|
|
"id",
|
|
"name",
|
|
"stdmelding"
|
|
]
|
|
},
|
|
"edit":{
|
|
"xxmodal": true
|
|
}
|
|
|
|
};
|
|
|
|
scf_params.wrap =
|
|
{
|
|
"no_default_frames": true,
|
|
"frames": [{ url: "mld_workflowstep.asp?mode=list&mystart={0}"
|
|
},
|
|
{ url: "workflow_graph.asp?start_key={0}"
|
|
},
|
|
{ url: "workflow_overview.asp?start_key={0}"
|
|
}]
|
|
};
|
|
|
|
scaffolding(this_model, scf_params)
|
|
%> |