Keuze in dropdown automatisch vullen in ander veld

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

San Hamelink

San Hamelink

08/10/2019 14:36:56
Quote Anchor link
Hoi ik heb een vraag mbt een webformulier


Ik hoop dat ik het goed kan uitleggen.


Ik heb een veld "Soort autorisatie" dit is een dropdown veld, er zitten twee keuzes achter het veld (voorbeeld 1 en voorbeeld 2).
Ik heb ook een veld "Beschrijving", dit is een grijs en alleen lezen veld.
Als ik keuze "voorbeeld 1" kies, wil ik dat de tekst van voorbeeld 1 in het veld "Beschrijving" komt te staan. Kies ik voor keuze "Voorbeeld 2", dan wil ik dat de tekst voorbeeld 2 in het veld "Beschrijving" komt te staan.

Kan iemand mij helpen om dit werkend te krijgen in mijn webformulier?
Gewijzigd op 08/10/2019 21:30:08 door San Hamelink
 
PHP hulp

PHP hulp

19/03/2024 12:21:58
 
Michael -

Michael -

08/10/2019 16:51:50
Quote Anchor link
Graag de code tussen code-tags plaatsen. Zie ook Veel gestelde vragen
 
San Hamelink

San Hamelink

08/10/2019 16:57:16
Quote Anchor link
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*jslint browser: true*/
/*jslint plusplus: true */
/*global $, jQuery, alert, console*/


var omschrijvingVoorbeeld1= "Voorbeeld 1";
var omschrijvingVoorbeeld2= "Voorbeeld 2";


var fieldDisabledColor = '#D4D0C8';

function setResultFieldsReadonly(){
    $('.pss_fieldname_description').find('input').prop('readonly', true);
    $('.pss_fieldname_description').find('input').prop('tabindex', -1);
    $('.pss_fieldname_description').find('input').css({'background-color' : fieldDisabledColor});
}

function updateRequestFields() {
    "use strict";
    var soortautorisatie = "";

      soortautorisatie = $('.pss_fieldname_qq00004129').find(':selected').attr('data-value');

     if (soorautorisatie === '01'){
        $('.pss_fieldname_description').find('input').val(omschrijvingVoorbeeld1);
    }    
    else if (soorautorisatie === '02'){
        $('.pss_fieldname_description').find('input').val(omschrijvingVoorbeeld2);
    }    


function registerEventHandlers() {
    "use strict";

    $(document).on("propertychange change mouseleave", '.pss_fieldname_Description', function () {
        setResultFieldsReadonly();
    });

}

$(document).ready(function () {
    "use strict";
    registerEventHandlers();
    setResultFieldsReadonly();
});


Edit:
Bericht even opgepoetst van een onnodige quote....
Gewijzigd op 08/10/2019 17:04:28 door - Ariën -
 
Thomas van den Heuvel

Thomas van den Heuvel

08/10/2019 17:36:42
Quote Anchor link
Waar is de HTML / een compleet voorbeeld?
 
San Hamelink

San Hamelink

08/10/2019 17:52:37
Quote Anchor link
Thomas van den Heuvel op 08/10/2019 17:36:42:
Waar is de HTML / een compleet voorbeeld?



Die kan ik niet geven helaas, dit is voor mijn werk en als ik de link geef dan werk de link niet.
 
- Ariën  -
Beheerder

- Ariën -

08/10/2019 17:56:15
Quote Anchor link
Beetje onzin, want HTML kan je prima hier in beperkte mate tonen. (dus geen 100-en regels) ;-)
Eventueel een testcase via JSfiddle....
Gewijzigd op 08/10/2019 17:57:07 door - Ariën -
 
San Hamelink

San Hamelink

09/10/2019 07:36:32
Quote Anchor link
Het enige wat ik kan geven is onderstaande.
Als het formulier werkt is hij niet volledig, deze is alleen gebouwd als voorbeeld.

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
<title>Planon Self-Service</title>
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/static/images/favicon/favicon-144.png?v=1"/>
<link rel="shortcut icon" type="image/x-icon" href="/static/favicon.ico?v=5"/>
<link rel="icon" sizes="144x144" href="/static/images/favicon/favicon-144.png?v=1"/>
<link rel="icon" sizes="128x128" href="/static/images/favicon/favicon-128.png?v=1"/>
<link rel="icon" sizes="32x32" href="/static/images/favicon/favicon-32.png?v=1"/>
<link rel="icon" sizes="24x24" href="/static/images/favicon/favicon-24.png?v=1"/>
<link rel="icon" sizes="16x16" href="/static/images/favicon/favicon-16.png?v=1"/>
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/static/images/favicon/favicon-152.png?v=1"/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/static/images/favicon/favicon-144.png?v=1"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/static/images/favicon/favicon-114.png?v=1"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/static/images/favicon/favicon-72.png?v=1"/>
<link rel="apple-touch-icon-precomposed" href="/static/images/favicon/favicon-57.png?v=1"/>

<link href="../../wicket/resource/nl.planon.pss.wicket.PssBasePage/styling/pss-ver-013B53B1B57F2BD67B9C1ADDFC23042F.css" rel="stylesheet" type="text/css"/>
<link href="../../wicket/resource/nl.planon.pss.wicket.PssBasePage/styling/mobile-ver-2EC79C478956EE75FA046645D57C1394.css" rel="stylesheet" type="text/css"/>

<noscript>
<div class="noscript">
<div class="error-box">
<div id="legend">
<div id="legend_text">JavaScript disabled</div>
</div>
<hr>
<div class="message">
This application requires JavaScript to be enabled in your browser. Please enable JavaScript.
</div>
</div>
</div>
</noscript>

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable = no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<script type="text/javascript" src="../../wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-2.2.4-ver-663694EF379D0F06B5D8868EAAD8A89C.js"></script>
<script type="text/javascript" id="PnMessageEventBehaviorJs" src="../../wicket/resource/nl.planon.pss.wicket.behavior.PnMessageEventBehavior/PnMessageEventBehavior-ver-26DBDE4D4D8E8D61FA5C1693B20A0B3F.js"></script>
<script type="text/javascript" id="resendToParent">
/*<![CDATA[*/
PnMessageEventUtils.addEventListener('workspaceLogoutEvent', function (aEvent, aData) {  console.log("Received logout event [" + aEvent + "] with data [" + aData +"] ... ");  PnMessageEventUtils.fireEvent('workspaceLogoutEvent', {}, null);}, 'body');
/*]]>*/
</script>
<script type="text/javascript" id="JsonRPCConnector" src="../../wicket/resource/nl.planon.pss.wicket.webservice.impl.JsonRPCConnectorResourceReference/JsonRPCConnector-ver-EDEBF1473C6B0F82AE071FA8F097EFC0.js"></script>
<script type="text/javascript" id="JsonRPC_General_init">
/*<![CDATA[*/

    /* Remote webservice API for mountpath General
       For each method of each interface in the mount path a function is available
       aMethodArguments: arguments of aMethod, a single argument can be provided as is, multiple arguments can be provided as array
       aCallbacks: object describing callbacks where
        fn_success(res): invoked upon success, res is the return value of the invoked method
        fn_exception(ex): invoked upon exception, ex is the exception
        fn_error(res): invoked upon error
        fn_before: invoked before the ajax request is made
        fn_complete: invoked after the call and the normal callbacks are completed
    */
    var JsonRPC_General = {
        PssGeneralService: {
            serviceName: "PssGeneralService",
            serviceUrl: '../../Bl3kYoPQRD0nm0HvOln1OBHQV8UInRaIjFkFOizQbUvlWX_Nj5pa6Q/Bl3b8/vlW90',
            getDateTimeAsString: function getDateTimeAsString(aCallbacks, aMethodArguments) {
                return JsonRPCConnector.rpc(JsonRPC_General.PssGeneralService.serviceUrl, 'getDateTimeAsString', null, aCallbacks);
            },
            getDefaultComment: function getDefaultComment(aCallbacks, aMethodArguments) {
                return JsonRPCConnector.rpc(JsonRPC_General.PssGeneralService.serviceUrl, 'getDefaultComment', null, aCallbacks);
            },
            getTimeAsString: function getTimeAsString(aCallbacks, aMethodArguments) {
                return JsonRPCConnector.rpc(JsonRPC_General.PssGeneralService.serviceUrl, 'getTimeAsString', null, aCallbacks);
            },
            keepalivePing: function keepalivePing(aCallbacks, aMethodArguments) {
                return JsonRPCConnector.rpc(JsonRPC_General.PssGeneralService.serviceUrl, 'keepalivePing', null, aCallbacks);
            },
            getDateAsString: function getDateAsString(aCallbacks, aMethodArguments) {
                return JsonRPCConnector.rpc(JsonRPC_General.PssGeneralService.serviceUrl, 'getDateAsString', null, aCallbacks);
            }
        },
    };

/*]]>*/
</script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.resource.ModernizrResourceReference/::/js/detectizr/modernizr.min-ver-EE6DB2FDBC130818CA2FCB8D87BAF6F0.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.resource.DetectizrResourceReference/::/js/detectizr/detectizr.min-ver-817D9FD1D541F5F9DD3B35135206A5AD.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssBasePage/js/deviceruling/PssDeviceRuling-ver-F5E9E3230FBA3B56DA50A1661B8755CE.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssBasePage/js/wicket.pss-ver-BD95932C0081A5A59E57FF0F0E3495FF.js"></script>
<script type="text/javascript" src="../../wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery.min-ver-F9895CC8E65D4CD054E8B64B9196385E.js"></script>
<link rel="stylesheet" type="text/css" href="../../resource/6e699c892c5cb5e3b3b973a5e28a3e24abd6c123/18.414/siteCSS" />
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssWebApplication/js/plugin/scrollto.jquery-ver-55CAF37762DA13D482EFD86572B1A0DC.js"></script>
<link rel="stylesheet" type="text/css" href="../../wicket/resource/nl.planon.pssm.servicecalls.addeditdetails.engine.wicket.AddEditDetailsWicketComponentFactory/styling/sc_addeditdetails-ver-F1DAEF8E9F18B20363874F245F3F3C00.css" />
<script type="text/javascript" src="../../resource/c38aa4f99a55974bb217582070cd2c4957dd95d0/V73/JS"></script>
<script type="text/javascript" src="../../wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-ajax-jquery.min-ver-5A00F2783FA172481F8A178E6C4F30A6.js"></script>
<script type="text/javascript" id="wicket-ajax-base-url">
/*<![CDATA[*/
Wicket.Ajax.baseUrl="case/PSS/ICT_1013?33";
/*]]>*/
</script>
<script type="text/javascript" >
/*<![CDATA[*/
function executeDialogIsClosedAction(){var attrs = {"u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4d46WvIFg1A7Q","c":"id99"};
var params = [];
attrs.ep = params.concat(attrs.ep || []);
Wicket.Ajax.ajax(attrs);
}
/*]]>*/
</script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssWebApplication/js/MessageHandling-ver-6A04A7FF32D8663B200E9C90536C859C.js"></script>
<script type="text/javascript" src="../../wicket/resource/org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow/res/modal.min-ver-07E56710B55DC32BAADD279682D7A8D4.js"></script>
<link rel="stylesheet" type="text/css" href="../../wicket/resource/org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow/res/modal.min-ver-E99D4201F0F6C5D3081AD42ACB1F22C2.css" />
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssWebApplication/js/PssModalWindow-ver-B36840DA0A787981EA9B2681822CC56D.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssWebApplication/js/keyinputbehavior/PssInputFieldOnKeyBehavior-ver-F5DB9C0F49114D5ACFCE74D47B9B637B.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssWebApplication/js/keyinputbehavior/PssSubmitFormOnKeyBehavior-ver-A60E0E8021C5B5538C9D9B2B6B464C0C.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssWebApplication/js/plugin/info.jquery-ver-37CE991D93E01632B0FE27FA14F24826.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.PssWebApplication/js/plugin/dynamicBehavior.jquery-ver-06CE5EAFB3368A0E432A243B1052F70D.js"></script>
<script type="text/javascript" src="../../wicket/resource/nl.planon.pss.wicket.framework.PssWebKeepSessionAliveComponent/PssWebKeepSessionAliveBehavior-ver-9A1AC083DC2E90F8E1E8DDBFE5A56C5A.js"></script>
<script type="text/javascript" >
/*<![CDATA[*/
Wicket.Event.add(window, "domready", function(event) {
if( window.self !== window.top ){ parent.postMessage({ eventName: 'resize'},window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '')); };
window.PssDeviceRuling.init(false);;
$('html').addClass(' standalone');;
$().scrollTo(0, 250);;
$('html').addClass('pss_module_servicecallsaddedit');;
Wicket.Window.unloadConfirmation = false;;
$('#id9a').on('keydown', function(e){ PssInputFieldOnKeyBehavior.shortKeyPress(e, 13, null); });;
$('#id9a').on('keydown', function(e){ PssSubmitFormOnKeyBehavior.shortKeyPress(e, 13, null); });;
$('#id9b').info();;
Wicket.Ajax.ajax({"u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4eyu3_It71In20CO0xSm3635mVO27m7-Q9Q2hk0MyYXv-nPAAtO1gZSO5pAVMnep0YCRB6_tuX6yod4-5x_1HsHCWneUJp_5L3N9Qqp4RfAG2aNCdRqeCDwMz2D61Xhv7QuazenqNOTp_smG0aJcPqMHCkkVPL08hpE8klhXmco0w_zwuHBQsvA","e":"change","c":"id9c","ad":true,"m":"POST"});;
$('#id9d').info();;
Wicket.Ajax.ajax({"u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4eyu3_It71In20CO0xSm3635mVO27m7-Q9Q2hk0MyYXv-nPAAtO1gZSO5pAVMnep0YCRB6_tuX6yod4-5x_1HsHCWneUJp_5L3N9Qqp4RfAG2aNCdRqeCDwisJmSVPEu_Jp8Ty6X2Bw-XtweEHiBVdTidm81CQIJpTNxMkxAwqw0HmCXCkWTleI","e":"change","c":"id9e","ad":true,"m":"POST"});;
$('#id9f').info();;
Wicket.Ajax.ajax({"u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4eyu3_It71In20CO0xSm3635mVO27m7-Q9Q2hk0MyYXv-nPAAtO1gZSO5pAVMnep0YCRB6_tuX6yod4-5x_1HsHCWneUJp_5L3N9Qqp4RfAG2aNCdRqeCDwUjx4oa317Z9WPuFvaGYWMv7YV6R1ZuAf_iTNollqOPg0ZaWrio4XXRDTUDH_s6g6zZxaAxRKk8U","e":"change","c":"ida0","ad":true,"m":"POST"});;
$('#ida1').info();;
Wicket.Ajax.ajax({"u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4eyu3_It71In20CO0xSm3635mVO27m7-Q9Q2hk0MyYXv-nPAAtO1gZSO5pAVMnep0YCRB6_tuX6yod4-5x_1HsHCWneUJp_5L3N9Qqp4RfAG2aNCdRqeCDwAsS7oSmMFkZXo9TLEuIw_WTasuGob9ucMrEe0jZ6xSTKDXnm24agn2aLW5yF_DN4aU1sVjDoDok","e":"change","c":"ida2","ad":true,"m":"POST"});;
$('#ida3').info();;
Wicket.Ajax.ajax({"u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4eyu3_It71In20CO0xSm3635mVO27m7-Q9Q2hk0MyYXv-nPAAtO1gZSO5pAVMnep0YCRB6_tuX6yod4-5x_1HsHCWneUJp_5L3N9Qqp4RfAG2aNCdRqeCDwRf-B1pcBidZ8YUV6i3Z9mip9g8GUyl26dNglKY3V5HLqFQ59vmk6G1e4aqBu1gOx2P0_GiY67Vs","e":"change","c":"ida4","ad":true,"m":"POST"});;
Wicket.Ajax.ajax({"f":"ida5","u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4eyu3_It71In20CO0xSm3635mVO27m7-Q9Q2hk0MyYXv9ezDYCgH0XuINSmrGIsnZpYCLZpy9u94h5J-01XBtpcYKE64tZdpZaF9OHcYYsiS6Urm98Jwlf7","e":"click","c":"ida6","sc":"actions:button_bar:actions:0:actionContainer:action","bh":[function(attrs){Wicket.Pss.showOverlay(this) }],"coh":[function(attrs, jqXHR, textStatus){Wicket.Pss.hideOverlay();}],"pre":[function(attrs){return Wicket.Pss.hasEnableAction(this)}],"dh":[function(attrs){Wicket.Pss.hideOverlay();}],"m":"POST"});;
Wicket.Ajax.ajax({"u":"./ICT_1013?wicket-crypt=W2u8MeYHgKuEMwwFJKSUP4HA5E5fKe16nLVlV9cez4eyu3_It71In20CO0xSm3635mVO27m7-Q9Q2hk0MyYXv9ezDYCgH0XuINSmrGIsnZpYCLZpy9u94ibhBF1JVs8bcEZq6sdpY2CyVrPoCRta7aK2aQDLzvZD","e":"click","c":"ida7","bh":[function(attrs){Wicket.Pss.showOverlay(this) }],"coh":[function(attrs, jqXHR, textStatus){Wicket.Pss.hideOverlay();}],"pre":[function(attrs){return Wicket.Pss.hasEnableAction(this)}],"dh":[function(attrs){Wicket.Pss.hideOverlay();}]});;
Wicket.Event.publish(Wicket.Event.Topic.AJAX_HANDLERS_BOUND);
;});
/*]]>*/
</script>
</head>
<body class="pss_body" id="pss_body">
<div id="ida8"></div>
<div class="pss_content">

<div id="id99" class="pss_caseparttype_servicecallsaddedit pss_main_casepart pss_casepart ">
<div class="pss_header pss_casepart_header">
<div class="pss_header_icon_container"><img class="pss_header_icon" src="/webclient/workspace/resource/dynamic/icons/Navigator_Monitor"/></div>
<h1 class="pss_caption" id="ida9">Melding</h1>
</div>
<form id="idaa" method="post" action="./ICT_1013?wicket-crypt=m6NraxR_06a-wCYBSKvRSzq5YEami_wK3BWRh3-LUZIqdrwnbSzifw"><div style="width:0px;height:0px;position:absolute;left:-100px;top:-100px;overflow:hidden"><input type="hidden" name="idaa_hf_0" id="idaa_hf_0" /></div>
<wicket:container id="idab" style="display:none"></wicket:container>
</form>

<div id="idac" class="pss_group pss_grouptype_base pss_groupname_addgroup ">
<div class="pss_header pss_page_header">
<div class="pss_header_icon_container"><img class="pss_header_icon" src="/webclient/workspace/resource/dynamic/icons/Navigator_Monitor"/></div>
<h2 class="pss_caption">Toevoegpagina</h2>
<div id="idae" class="pss_gadget_filters_inactive"></div>
</div>


<form class="pss_form pss_group_form" id="ida5" method="post" action="./ICT_1013?wicket-crypt=m6NraxR_06a-wCYBSKvRSzq5YEami_wK3BWRh3-LUZKpkiIkxlmD396x3ar2OoQz3sbVa_jlglsm8-1mwDj2iaqQx9GzKqFl"><div style="width:0px;height:0px;position:absolute;left:-100px;top:-100px;overflow:hidden"><input type="hidden" name="ida5_hf_0" id="ida5_hf_0" /></div>
<wicket:container id="idaf" style="display:none"></wicket:container>

<div class="pss_dialogaware_message_block" id="idb1">
<div id="idb2" style="display:none"></div>
<div id="idb3">
<div id="idb4" style="display:none">

</div>
</div>


</div>
<div class="pss_dialogaware_block" id="idb5">
<div id="idb6" style="display:none"></div>
<div id="idb7">
<div id="idb8" style="display:none">

</div>
</div>

</div>


<div class="pss_block pss_blocktype_add pss_blockname_add  pss_building_block_container" id="id9a">
<div class="pss_header pss_block_header">

</div>

<div class="pss_form pss_block_form" id="idba">

<div id="id9b" class="pss_integer pss_fieldname_qq00004122 pss_question_field pss_field pss_questiontypesingleselectcombo pss_fieldtype_addfield pss_readwrite ">


<label class="pss_field_label" for="id9c">Aanvraag voor concern/cluster</label>
<div class="pss_field_info_button"></div>


<span class="pss_field_value">
<select class="pss_field_input" name="buildingBlocks:inlineBuildingBlocks:block1:form:fieldRepeater:1:field:fieldContent:field-editor:select" id="id9c">
<option selected="selected" value=""></option>
<option data-value="00" value="5457">Concern (o.a. Oracle/Financien en HR)</option>
<option data-value="01" value="5458">Bestuur &amp; Concernondersteuning</option>
</select>
</span>

<div class="pss_field_feedback" id="idbb">

</div>
<wicket:container id="idbc" style="display:none"></wicket:container>



</div>

<div id="id9d" class="pss_integer pss_question_field pss_field pss_fieldname_qq00004129 pss_questiontypesingleselectcombo pss_fieldtype_addfield pss_readwrite ">


<label class="pss_field_label" for="id9e">Soort autorisatie</label>
<div class="pss_field_info_button"></div>


<span class="pss_field_value">
<select class="pss_field_input" name="buildingBlocks:inlineBuildingBlocks:block1:form:fieldRepeater:2:field:fieldContent:field-editor:select" id="id9e">
<option selected="selected" value=""></option>
<option data-value="01" value="5459">voorbeeld 1</option>
<option data-value="02" value="5460">voorbeeld 2</option>
</select>
</span>

<div class="pss_field_feedback" id="idbd">

</div>
<wicket:container id="idbe" style="display:none"></wicket:container>



</div>

<div id="id9f" class="pss_fieldname_description pss_field pss_mandatory pss_fieldtype_addfield pss_readwrite pss_string ">


<label class="pss_field_label" for="ida0">Beschrijving</label>
<div class="pss_field_info_button"></div>


<div class="pss_field_value">
<input class="pss_field_input" type="text" value="" name="buildingBlocks:inlineBuildingBlocks:block1:form:fieldRepeater:3:field:fieldContent:field-editor:textfield" id="ida0" maxlength="100"/>
</div>

<div class="pss_field_feedback" id="idbf">

</div>
<wicket:container id="idc0" style="display:none"></wicket:container>



</div>

<div id="ida1" class="pss_question_field pss_fieldname_qq00004123 pss_field pss_questiontypetext pss_fieldtype_addfield pss_readwrite pss_string ">


<label class="pss_field_label" for="ida2">Toegang tot welke mappen</label>
<div class="pss_field_info_button"></div>


<div class="pss_field_value">
<input class="pss_field_input" type="text" value="" name="buildingBlocks:inlineBuildingBlocks:block1:form:fieldRepeater:4:field:fieldContent:field-editor:textfield" id="ida2"/>
</div>

<div class="pss_field_feedback" id="idc1">

</div>
<wicket:container id="idc2" style="display:none"></wicket:container>



</div>

<div id="ida3" class="pss_question_field pss_field pss_questiontypetext pss_fieldtype_addfield pss_readwrite pss_string pss_fieldname_qq00004124 ">


<label class="pss_field_label" for="ida4">Opmerking</label>
<div class="pss_field_info_button"></div>


<div class="pss_field_value">
<input class="pss_field_input" type="text" value="" name="buildingBlocks:inlineBuildingBlocks:block1:form:fieldRepeater:5:field:fieldContent:field-editor:textfield" id="ida4"/>
</div>

<div class="pss_field_feedback" id="idc3">

</div>
<wicket:container id="idc4" style="display:none"></wicket:container>



</div>


<wicket:container id="idc5" style="display:none"></wicket:container>
<wicket:container id="idc6" style="display:none"></wicket:container>
</div>
</div>


<div class="pss_page_buttonbar pss_buttonbar pss_page_bottom_buttonbar ">


<a id="ida6" href="javascript:;" class="pss_action pss_actionname_save pss_button pss_actiontype_save pss_first_action" draggable="false"> <span class="pss_action_label">Verzenden</span> </a>





<a id="ida7" href="javascript:;" class="pss_action pss_actiontype_cancel pss_button pss_actionname_cancel pss_last_action" draggable="false"> <span class="pss_action_label">Annuleren</span> </a>




</div>

</form>
</div>


<div class="pss_dialogaware_message_block" id="idc9">
<div id="idca" style="display:none"></div>
<form id="idcb" method="post" action="./ICT_1013?wicket-crypt=m6NraxR_06a-wCYBSKvRSzq5YEami_wK3BWRh3-LUZKpkiIkxlmD30Wk2gSY6Utp3m5Tghe_V8jfoAoyOW4gDDLx-rqDGQk3DaunJrfA4t3W_CwGEzx2xDqzeMhlhbkCUuu8pabQ4eI"><div style="width:0px;height:0px;position:absolute;left:-100px;top:-100px;overflow:hidden"><input type="hidden" name="idcb_hf_0" id="idcb_hf_0" /></div>
<div id="idcc" style="display:none">

</div>
</form>


</div>
<div class="pss_dialogaware_block" id="idcd">
<div id="idce" style="display:none"></div>
<form id="idcf" method="post" action="./ICT_1013?wicket-crypt=m6NraxR_06a-wCYBSKvRSzq5YEami_wK3BWRh3-LUZKpkiIkxlmD30Wk2gSY6Utp3m5Tghe_V8hZ9eBj0f6CZrGFa5huO8RL8vkDu1GI-mFWWr14WQ31BauzifawSm_3"><div style="width:0px;height:0px;position:absolute;left:-100px;top:-100px;overflow:hidden"><input type="hidden" name="idcf_hf_0" id="idcf_hf_0" /></div>
<div id="idd0" style="display:none">

</div>
</form>

</div>

</div>

</div>
</body>
</html>
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.