43 lines
803 B
Plaintext
43 lines
803 B
Plaintext
<%@language = "javascript" %>
|
|
<% /*
|
|
$Revision$
|
|
$Id$
|
|
|
|
File: mld_workflow.asp
|
|
|
|
Description: fac_management aanroep van model_mld_workflow
|
|
|
|
Context:
|
|
|
|
Notes:
|
|
*/
|
|
%>
|
|
<!-- #include file="../scf/scaffolding.inc" -->
|
|
<!-- #include file="../mgt/mgt_tools.inc" -->
|
|
<!-- #include file="../api2/model_mld_workflow.inc" -->
|
|
<%
|
|
var this_model = new model_mld_workflow();
|
|
|
|
this_model.hook_pre_edit = function (obj, fld)
|
|
{
|
|
%>
|
|
<script type="text/javascript">
|
|
var module = "MLD";
|
|
</script>
|
|
<%
|
|
}
|
|
|
|
scaffolding(this_model,
|
|
{
|
|
"search": {
|
|
"autosearch": true
|
|
},
|
|
"list": {
|
|
"columns": [
|
|
"id",
|
|
"name",
|
|
"stdmelding"
|
|
]
|
|
}
|
|
});
|
|
%> |