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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><?=SITE_TITLE?> - Πρακτικό Πειθαρχικής Υπόθεσης</title>
<?php // header includes
////////////////////////////////////////////////////////////////////////
Render::view('components/header_includes');
?>
</head>
<body class="office central-form">
<div class='container'>
<div class="content max720px">
<div class='content-form'>
<form method="post">
<div>
<h4>
Πρακτικό Πειθαρχικής Υπόθεσης
<button class="btn btn-back2panel btn-sm">
Επιστροφή
</button>
</h4>
<hr />
<?=$form['html']?>
<br />
<div class="row">
<div class="col-4">
<button class="btn btn-preview btn-sm col-12">
Προεπισκόπηση
</button>
</div>
<div class="col-8">
<button type="submit" class="btn btn-primary btn-sm col-12">
Καταχώριση
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
<script>
var values = {};
var empty = '';
$(document).ready(function() {
// supplementary functions to select2 control
////////////////////////////////////////////////////////////////////////////
/** getValues
* --- -- -- - - -
* Get selected value(s) of Select2 control
*
* @param arg: source-element
* @return (string) value(s) comma-separated
*/
function getValues(srcElm) {
var res;
var obj = srcElm.select2('data'); // get delected data array
if (obj.length === 0) return ''; // if empty list then nothig is selected
else {
var i = 0;
obj.forEach(function(elm){ // loop through object elements array
if (i) res += ',' + elm.id; // if not first item, prepend ',' befor value(id)
else res = elm.id; // else set (first) checked value
i++;
});
}
return res;
}
/** select2_set_text
* --- -- -- - - -
* select an (select2-)option by text
* onto a (single) select2 control
*
* @param control = jquery selector,
* @param t (string) = text of option
*/
function select2_set_text(control, t) {
opts = control.select2()[0].options;
var id;
for(i=0; i<opts.length; i++) { if (opts[i].text == t) id = i; }
control.val(id).trigger('change');
}
/** get_id_of_text
* --- -- -- - - -
* get id (=value) of an option with `t` as text
* onto a select2 control;
*
* Can be used on single or multiple select2 contols
*
* @param control = jquery selector,
* @param t (string) = text of option
*/
function get_id_of_text( control , t) {
opts = control.select2()[0].options;
var id = false;
for(i=0; i<opts.length; i++) { if (opts[i].text == t) id = i; }
return id;
}
/** select2_set_multi_text
* --- -- -- - - -
* select several (select2-)options by text
*
* @param control = jquery selector,
* @param t_list (string) = list of selected texts
*/
function select2_set_multi_text(control, t_list) { /* define function */
var ids = [];
t_list.forEach (t => { let id = get_id_of_text(control, t);
if (id !== false) ids.push(id);
})
control.val(ids).change();
}
/**
* get selected text of a select2 control
*/
function selected_text(control) {
if (typeof control.select2('data') === 'undefined') return false;
else if (control.select2('data').length == 0) return false;
else return control.select2('data')[0].text;
}
/**
* get all selected texts from a multi-select2 contol
*/
function selected_multitexts(control) {
if (typeof control.select2('data') === 'undefined') return false;
else if (control.select2('data').length == 0) return false;
else {
var result = [];
control.select2('data').forEach( item => { result.push(item.text); });
return result;
}
}
// intializations from form-definition
////////////////////////////////////////////////////////////////////////////
<?=$form['init_js']?>
// track empty values
////////////////////////////////////////////////////////////////////////////
// When form is submited
////////////////////////////////////////////////////////////////////////////
$('.content-form form').submit( event => {
event.preventDefault();
if (false) {
alert('Τα δυο passrods δεν ταιριάζουν!');
} else {
var data = { // select content data
of_article: selected_text($('select[name=of_article]')),
student_names: $('textarea[name=student_names]').val(),
of_department: $('input[name=of_department]').val(),
date: $('input[name=date]').val(),
time: $('input[name=time]').val(),
place: selected_text($('select[name=place]')),
rapporteur: selected_text($('select[name=rapporteur]')),
charge: $('textarea[name=charge]').val(),
apology: $('textarea[name=apology]').val(),
decision_reasoning: $('textarea[name=decision_reasoning]').val(),
decision: selected_text($('select[name=decision]')),
decision_more: $('input[name=decision_more]').val(),
president: selected_text($('select[name=president]')),
members: selected_multitexts($('select[name="members[]"]'))
};
var form_data = { // prepare data to post
subject: $('input[name=of_department]').val(),
content: JSON.stringify(data),
on_date: $('input[name=date]').val(),
user_id: $('input[name=id]').val()
}
// select action url (add or update)
// var request = '/account/register';
console.log(data);
// send POST request
// $.post(request, form_data)
// .done(function( data ) {
// $('.classroom .content-form').html(data.message)
// });
}
});
});
</script>
</html>
|