暂无描述

criteria.blade.php 43KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108
  1. @extends('layouts.master')
  2. @section('navigation')
  3. @include('local.managers.admins._navigation')
  4. @stop
  5. @section('main')
  6. <div class="row">
  7. <div class="col-md-6">
  8. <!-- Form to add a new criterion -->
  9. <div class="panel panel-default panel-button">
  10. <div class="panel-heading">
  11. Create
  12. </div>
  13. <div class="panel-body">
  14. {{ Form::open(array('action' => 'CriteriaController@create')) }}
  15. <div id='outcomeGroup' data-value="1">
  16. <div class="form-group col-md-11">
  17. <label>Associated Outcomes</label>
  18. {{ Form::select('outcome[]', $outcomes, reset($outcomes), ['class'=>'form-control selectpicker', 'id' =>'outcome0', 'onchange'=>'fetchObjectiveForSelect("outcomeGroup", "objectiveGroup")']) }}
  19. </div>
  20. </div>
  21. <input type='hidden' name='counterOutcome' id='counterOutcome' value=1>
  22. <button id='button-add-outcome' class='btn btn-md btn-secondary' onclick='addOutcomeTest()'>
  23. <span class='glyphicon glyphicon-plus'>
  24. </span>
  25. Add another Outcome
  26. </button>
  27. <div id='objectiveGroup' data-value = '1'>
  28. <div class="form-group">
  29. <label>Associated Objectives</label>
  30. <select id="objective_0" name="objective[]" class="form-control selectpicker">
  31. </select>
  32. </div>
  33. </div>
  34. <input type='hidden' name='counterObjective' id='counterObjective' value=1>
  35. <button id='button-add-objective' class='btn btn-md btn-secondary' onclick='addObjectiveTest()'>
  36. <span class='glyphicon glyphicon-plus'>
  37. </span>
  38. Add another Objective
  39. </button>
  40. <!-- Associated Program -->
  41. <div class="form-group">
  42. {{ Form::label('program_id', 'Associated Program') }}<br>
  43. <br>
  44. @foreach ($programs as $program)
  45. <input type="checkbox" id="{{ $program->name }}" name="program_id[]" value="{{$program->id}}">
  46. <label for="{{ $program->name }}"> {{ $program->name }} [{{ $program->school->name }}]</label><br>
  47. @endforeach
  48. </div>
  49. <div class="form-group">
  50. {{ Form::label('name', 'Name') }}
  51. {{ Form::text('name', '', array('class' => 'form-control')) }}
  52. </div>
  53. <div class="form-group">
  54. {{ Form::label('subcriteria', 'Subcriteria') }}
  55. <p class="help-block"><strong>Manually add</strong> bullets or numbering.</p>
  56. {{ Form::textarea('subcriteria', '', array('class' => 'form-control', 'rows'=>3, 'aria-labelledby'=>'subcriteria')) }}
  57. </div>
  58. <div class="form-group">
  59. {{ Form::label('maximum_score', 'Maximum Score') }}
  60. {{ Form::text('maximum_score', '1', array('class' => 'form-control', 'id'=>'maximum_score', 'oninput'=>'addOptions("Num_scale", "maximum_score", "Scales")')) }}
  61. </div>
  62. <div class="form-group">
  63. {{ Form::label('scales', 'Number of Scales') }}
  64. <select id="Num_scale" name="scales" class="form-control selectpicker" onchange='numberOfScales("Num_scale", "Scales")'>
  65. </select>
  66. </div>
  67. <div id='Scales' data-value="0">
  68. </div>
  69. <div class="form-group">
  70. {{ Form::label('copyright', 'Copyright') }}
  71. {{ Form::textarea('copyright', '', array('class' => 'form-control', 'rows'=>2, 'placeholder'=>'(optional)', 'aria-labelledby'=>'copyright')) }}
  72. </div>
  73. <div class="form-group">
  74. {{ Form::label('notes', 'Notes') }}
  75. {{ Form::textarea('notes', '', array('class' => 'form-control', 'rows'=>2, 'placeholder'=>'(optional)', 'aria-labelledby'=>'notes')) }}
  76. </div>
  77. {{ Form::submit('Create', array('class' => 'btn btn-primary btn-block')) }}
  78. {{ Form::close() }}
  79. </div>
  80. </div>
  81. </div>
  82. <div class="col-md-6">
  83. <div class="panel panel-default panel-button">
  84. <div class="panel-heading">
  85. Edit
  86. </div>
  87. <div class="panel-body">
  88. {{ Form::open(array('action' => 'CriteriaController@update')) }}
  89. <button class="btn btn-md btn-secondary filterButton">
  90. <span class="glyphicon glyphicon-plus">
  91. </span>
  92. Filters
  93. </button>
  94. <div class="form-group">
  95. {{ Form::label('program_id2', 'Associated Program')}}
  96. <select id='select-program' class="form-control selectpicker" onchange='fetchAllCriterion("select-program", "assoc_outcomes_fetch")'>
  97. @foreach ($programs as $program)
  98. <option value='{{$program->id}}' data-subtext="{{$program->code}}">{{$program->name}}</option>
  99. @endforeach
  100. </select>
  101. </div>
  102. <div class="form-group">
  103. <label>Associated Outcome</label>
  104. {{ Form::select('assoc_outcome_fetch', $outcomes, null, ['class'=>'form-control selectpicker', 'id'=>'assoc_outcomes_fetch', 'onchange'=>'fetchAllCriterion("select-program", "assoc_outcomes_fetch")']) }}
  105. </div>
  106. <div class="form-group">
  107. {{ Form::label('criterion_id', 'Criterion') }}
  108. <select id="select-criterion" name="id" class="form-control selectpicker" onchange='fetchCriterionForEditing()'>
  109. @foreach ($criteria as $criterion)
  110. <option value="{{ $criterion->id }}" data-subtext="
  111. @if($criterion->program)
  112. &nbsp;&nbsp;&nbsp;[{{ $criterion->program->name }}]
  113. @endif
  114. ">
  115. {{ $criterion->name }}
  116. </option>
  117. @endforeach
  118. </select>
  119. </div>
  120. <!-- Associated Outcome -->
  121. <div id='assocOutcomeGroup' data-value="1">
  122. <div class="form-group">
  123. <label>Associated Outcome</label>
  124. {{ Form::select('assoc_outcome[]', $outcomes, null, ['class'=>'form-control selectpicker', 'id'=>'assoc_outcome_0', 'onchange'=>'fetchAssocObjective("assoc_outcome_0")']) }}
  125. </div>
  126. </div>
  127. <button id='button-add-objective-assoc' class='btn btn-md btn-secondary' onclick='addAssocOutcome()'>
  128. <span class='glyphicon glyphicon-plus'>
  129. </span>
  130. Add another Outcome
  131. </button>
  132. <div id='assoc_objectiveGroup' data-value ='1'>
  133. <div class="form-group">
  134. <label>Associated Objectives</label>
  135. <select id="assoc_objective_0" name="assoc_objective[]" class="form-control selectpicker">
  136. <option value="0">No associated objectives</option>
  137. </select>
  138. </div>
  139. </div>
  140. <button id='button-add-outcome-assoc' class='btn btn-md btn-secondary' onclick='addAssocObjective()'>
  141. <span class='glyphicon glyphicon-plus'>
  142. </span>
  143. Add another Objective
  144. </button>
  145. <!-- Associated Program -->
  146. <div class="form-group">
  147. {{ Form::label('program_id2', 'Associated Program') }}<br><br>
  148. @foreach ($programs as $program)
  149. <input type="checkbox" id="assoc_program_id_{{ $program->id }}" name="program_id[]" value="{{$program->id}}">
  150. <label for="assoc_program_id_{{ $program->id }}"> {{ $program->name }} <sub>[{{ $program->school->name }}]</sub></label><br>
  151. @endforeach
  152. </div>
  153. <!-- Status -->
  154. <div class="form-group">
  155. {{ Form::label('status', 'Status') }}
  156. <span data-toggle="tooltip" data-placement="top" title="Use this option to deactivate or reactivate criteria. Inactive criteria will stay in the system, but will not be available to use in new rubrics." class="glyphicon glyphicon-question-sign"></span>
  157. <select id="status" name="status" class="form-control">
  158. <option value="1">Active</option>
  159. <option value="0">Inactive</option>
  160. </select>
  161. </div>
  162. <div class="form-group">
  163. {{ Form::label('name', 'Name') }}
  164. {{ Form::text('name', Input::old('name'), array('class' => 'form-control', 'id'=>'criterion_name')) }}
  165. </div>
  166. <div class="form-group">
  167. {{ Form::label('subcriteria', 'Subcriteria') }}
  168. <p class="help-block"><strong>Manually add</strong> bullets or numbering.</p>
  169. {{ Form::textarea('subcriteria', '', array('class' => 'form-control', 'rows'=>3, 'id' => 'criterion_subcriteria')) }}
  170. </div>
  171. <div class="form-group">
  172. {{ Form::label('assoc_maximum_score', 'Maximum Score') }}
  173. {{ Form::text('assoc_maximum_score', '', array('class' => 'form-control', 'id'=>'assoc_maximum_score', 'oninput'=>'addOptions("Num_assoc_scale", "assoc_maximum_score", "Assoc_Scales")')) }}
  174. </div>
  175. <div class="form-group">
  176. {{ Form::label('scales', 'Number of Scales') }}
  177. <select id="Num_assoc_scale" class="form-control selectpicker" onchange='numberOfAssoc("Num_assoc_scale", "Assoc_Scales")'>
  178. </select>
  179. </div>
  180. <div id='Assoc_Scales' data-value="0">
  181. </div>
  182. <div class="form-group">
  183. {{ Form::label('copyright', 'Copyright Information') }}
  184. {{ Form::textarea('copyright', Input::old('copyright'), array('class' => 'form-control', 'rows'=>2, 'id'=>'criterion_copyright', 'placeholder'=>'(optional)')) }}
  185. </div>
  186. <div class="form-group">
  187. {{ Form::label('notes', 'Additional Notes') }}
  188. {{ Form::textarea('notes', Input::old('notes'), array('class' => 'form-control', 'rows'=>2, 'id'=>'criterion_notes', 'placeholder'=>'(optional)')) }}
  189. </div>
  190. {{ Form::submit('Update', array('class' => 'btn btn-primary btn-block')) }}
  191. {{ Form::close() }}
  192. {{ Form::open(array('action' => 'CriteriaController@delete')) }}
  193. <input type='hidden' name='criterion_delete' id='deleteCriteria'>
  194. {{Form::submit("Delete", array('class'=> 'btn btn-primary btn-block', 'id'=>"DeleteButton"))}}
  195. </div>
  196. </div>
  197. </div>
  198. </div>
  199. <script>
  200. var selectOptions = document.getElementById('outcome0').innerHTML;
  201. var counter = 1;
  202. var counterObj = 1;
  203. var outcomeString = 'OutcomeGroup_';
  204. $(document).ready(function() {
  205. addOptions('Num_scale', 'maximum_score', 'Scales');
  206. numberOfScales('Num_scale', 'Scales');
  207. });
  208. function numberOfAssoc(string, Scales) {
  209. var maximum = $('#assoc_maximum_score').val();
  210. var amountOfScale = parseInt($('#' + string).val());
  211. var dataValue = parseInt($('#' + Scales).attr('data-value'));
  212. //add
  213. if (dataValue < amountOfScale) {
  214. fullDiv = '';
  215. for (var i = dataValue; i < amountOfScale; i++) {
  216. div = '<div id="assoc_eval' + i.toString() + Scales + '">' +
  217. '<div class ="form-row">' +
  218. '<label for="header' + (i).toString() + '">Evaluación ' + (i + 1).toString() + '</label><br><br>' +
  219. '<input type="hidden" id="header' + i.toString() + '">' +
  220. '<div class="form-group col-md-8" >' +
  221. '<label for="title' + i.toString() + '">Nombre de Evaluación ' + (i + 1).toString() + '</label>' +
  222. '<input class="form-control" name="assoc_title[]" type="text" id="title' + i.toString() + '" placeholder ="Nombre de evaluacion" ></div>' +
  223. '<div class ="form-group col-md-2">' +
  224. '<label for="min' + i.toString() + '">Mínimo </label>' +
  225. '<input class="form-control" type="number" id="assoc_min' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMin(' + "'assoc_min" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_min[]"></div>' +
  226. '<div class ="form-group col-md-2">' +
  227. '<label for="max' + i.toString() + '">Máximo </label>' +
  228. '<input class="form-control" type="number" id="assoc_max' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMax(' + "'assoc_max" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_max[]"></div></div>' +
  229. '<div class ="form-group">' +
  230. '<label for ="descripcion' + i.toString() + '">Descripción de evaluación</label>' +
  231. '<textarea class="form-control" rows="2" aria-labelledby="descripcion' + i.toString() + '" name="assoc_scales[]" cols="50" ></textarea></div></div>';
  232. fullDiv += div;
  233. }
  234. $('#' + Scales).append(fullDiv);
  235. $('#' + Scales).attr('data-value', amountOfScale);
  236. } else {
  237. for (var i = dataValue; i > amountOfScale; i--) {
  238. $('#assoc_eval' + (i - 1).toString()).remove();
  239. }
  240. }
  241. $('#' + Scales).attr('data-value', amountOfScale);
  242. }
  243. function addOptions(select, max, scaleDiv) {
  244. var maxscore = parseInt($('#' + max).val())
  245. options = '';
  246. for (var i = 1; i <= maxscore; i++) {
  247. options += '<option value="' + i.toString() + '">' + i.toString() + '</option>';
  248. }
  249. var previousvalue = parseInt($('#' + select).val());
  250. $('#' + select).html(options);
  251. $('#' + select).val(previousvalue);
  252. $('#' + select).selectpicker('refresh');
  253. var attribute = parseInt($('#' + scaleDiv).attr('data-value'));
  254. for (var i = 0; i < attribute; i++) {
  255. $('#max' + i.toString()).attr('max', maxscore);
  256. $('#min' + i.toString()).attr('max', maxscore);
  257. }
  258. }
  259. $('.filterSection').hide();
  260. $('.filterButton').on('click', function()
  261. {
  262. var span = $(this).find('span');
  263. if(span.attr('class') == 'glyphicon glyphicon-plus'){
  264. span.attr('class','glyphicon glyphicon-minus');
  265. } else{
  266. span.attr('class','glyphicon glyphicon-plus');
  267. }
  268. $('.filterSection').toggle(533);
  269. });
  270. function numberOfScales(string, Scales) {
  271. var maximum = $('#maximum_score').val();
  272. var amountOfScale = parseInt($('#' + string).val());
  273. var dataValue = parseInt($('#' + Scales).attr('data-value'));
  274. //add
  275. if (dataValue < amountOfScale) {
  276. fullDiv = '';
  277. for (var i = dataValue; i < amountOfScale; i++) {
  278. div = '<div id="eval' + i.toString() + Scales + '">' +
  279. '<div class ="form-row">' +
  280. '<label for="header' + (i).toString() + '">Evaluación ' + (i + 1).toString() + '</label><br><br>' +
  281. '<input type="hidden" id="header' + i.toString() + '">' +
  282. '<div class="form-group col-md-8" >' +
  283. '<label for="title' + i.toString() + '">Nombre de Evaluación ' + (i + 1).toString() + '</label>' +
  284. '<input class="form-control" name="title[]" type="text" id="title' + i.toString() + '" placeholder ="Nombre de evaluacion" ></div>' +
  285. '<div class ="form-group col-md-2">' +
  286. '<label for="min' + i.toString() + '">Mínimo </label>' +
  287. '<input class="form-control" type="number" id="min' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMin(' + "'min" + i.toString() + "', '" + i.toString() + "', 'Scales' " + ')" name = "min[]"></div>' +
  288. '<div class ="form-group col-md-2">' +
  289. '<label for="max' + i.toString() + '">Máximo </label>' +
  290. '<input class="form-control" type="number" id="max' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMax(' + "'max" + i.toString() + "', '" + i.toString() + "', 'Scales' " + ')" name = "max[]"></div></div>' +
  291. '<div class ="form-group">' +
  292. '<label for ="descripcion' + i.toString() + '">Descripción de evaluación</label>' +
  293. '<textarea class="form-control" rows="2" aria-labelledby="descripcion' + i.toString() + '" name="' + Scales + '[]" cols="50" ></textarea></div></div>';
  294. fullDiv += div;
  295. }
  296. $('#' + Scales).append(fullDiv);
  297. } else {
  298. for (var i = dataValue; i > amountOfScale; i--) {
  299. $('#eval' + (i - 1).toString() + Scales).remove();
  300. }
  301. }
  302. $('#' + Scales).attr('data-value', amountOfScale);
  303. }
  304. function changedMin(min, index, scaleDiv) {
  305. var maximum = parseInt($('#' + min).val()) + 1;
  306. var maxScaleScore = parseInt($('#' + scaleDiv).attr('data-value'));
  307. for (var i = parseInt(index); i < maxScaleScore; i++) {
  308. $('#max' + i).attr('min', maximum);
  309. }
  310. }
  311. function changedMax(max, index, scaleDiv) {
  312. var maximum = parseInt($('#' + max).val()) + 1;
  313. var maxScaleScore = parseInt($('#' + scaleDiv).attr('data-value'));
  314. for (var i = parseInt(index) + 1; i < maxScaleScore; i++) {
  315. $('#min' + i).attr('min', maximum)
  316. }
  317. }
  318. //Add outcome Button
  319. function addOutcomeTest() {
  320. counter = parseInt($('#outcomeGroup').data("value"));
  321. var $select = $('<select/>', {
  322. 'class': "selectpicker form-control",
  323. 'name': "outcome[]",
  324. 'data-live-search': 'true',
  325. 'id': 'outcome' + counter.toString(),
  326. 'onchange': 'fetchObjectiveForSelect("outcomeGroup", "objectiveGroup")'
  327. });
  328. var $div = $('<div/>', {
  329. 'id': 'outcomeForm' + counter.toString(),
  330. 'class': 'form-group col-md-11'
  331. });
  332. var $divForButton = $('<div/>', {
  333. 'class': 'col-md-1',
  334. 'id': 'close' + counter.toString()
  335. });
  336. var $button = $('<button/>', {
  337. 'type': 'button',
  338. 'class': 'btn btn-primary',
  339. 'onclick': 'deleteLast("outcomeForm'+counter.toString()+'", "outcomeGroup", "close' + counter.toString() + '", "objectiveGroup")'
  340. });
  341. $button.append('X');
  342. $divForButton.append($button);
  343. $div.appendTo('#outcomeGroup')
  344. $select.append(selectOptions);
  345. $select.appendTo('#outcomeForm' + counter.toString()).selectpicker('refresh');
  346. $('#outcomeGroup').data("value", counter +1);
  347. fetchObjectiveForSelect('outcomeGroup', "objectiveGroup");
  348. $divForButton.appendTo('#outcomeGroup');
  349. }
  350. //Delete Outcome and OptGroup associated
  351. function deleteLast(outcomeForm, outcomeDiv, closeButton, objectiveGroup) {
  352. $div = document.getElementById(outcomeForm );
  353. $div.remove();
  354. $div = document.getElementById(closeButton);
  355. $div.remove();
  356. if(outcomeDiv =='outcomeGroup'){
  357. $('#' + outcomeDiv).data('value',parseInt($('#' + outcomeDiv).data('value')) - 1);
  358. fetchObjectiveForSelect(outcomeDiv, objectiveGroup);}
  359. }
  360. //Delete Objective
  361. function deleteObjective(objectiveForm, closeObj, objectiveGroup) {
  362. $div = document.getElementById(objectiveForm);
  363. $div.remove();
  364. $div = document.getElementById(closeObj);
  365. $div.remove();
  366. counter = parseInt($('#'+objectiveGroup).data("value"));
  367. $('#'+objectiveGroup).data("value", counter-1);
  368. }
  369. //Add objective when editing
  370. function addAssocObjective() {
  371. selectObj = document.getElementById('assoc_objective_0').innerHTML;
  372. assocObjectiveCounter = parseInt($('#assoc_objectiveGroup').data('value'));
  373. var $select = $('<select/>', {
  374. 'class': "selectpicker form-control",
  375. 'name': "assoc_objective[]",
  376. 'data-live-search': 'true',
  377. 'id': 'assoc_objective_' + assocObjectiveCounter.toString(),
  378. });
  379. var $div = $('<div/>', {
  380. 'id': 'assoc_objectiveForm' + assocObjectiveCounter.toString(),
  381. 'class': 'form-group col-md-11'
  382. });
  383. var $divForButton = $('<div/>', {
  384. 'class': 'col-md-1',
  385. 'id': 'assoc_closeObj' + assocObjectiveCounter.toString()
  386. });
  387. var $button = $('<button/>', {
  388. 'type': 'button',
  389. 'class': 'btn btn-primary',
  390. 'onclick': 'deleteObjective("assoc_objectiveForm' + assocObjectiveCounter.toString() + '", "assoc_closeObj' + assocObjectiveCounter.toString() + ', assoc_objectiveGroup")'
  391. });
  392. $button.append('X');
  393. $divForButton.append($button);
  394. $div.appendTo('#assoc_objectiveGroup')
  395. $select.append(selectObj);
  396. $select.appendTo('#assoc_objectiveForm' + assocObjectiveCounter.toString()).selectpicker('refresh');
  397. $('#assoc_objectiveGroup').data("value", assocObjectiveCounter +1);
  398. $divForButton.appendTo('#assoc_objectiveGroup');
  399. }
  400. //Add objective when creating a criteria
  401. function addObjectiveTest() {
  402. selectObj = document.getElementById('objective_0').innerHTML;
  403. counter = $("#objectiveGroup").data('value');
  404. $('#objectiveGroup')
  405. var $select = $('<select/>', {
  406. 'class': "selectpicker form-control",
  407. 'name': "objective[]",
  408. 'data-live-search': 'true',
  409. 'id': 'objective_' + counter.toString()
  410. });
  411. var $div = $('<div/>', {
  412. 'id': 'objectiveForm' + counter.toString(),
  413. 'class': 'form-group col-md-11'
  414. });
  415. var $divForButton = $('<div/>', {
  416. 'class': 'col-md-1',
  417. 'id': 'closeObj' + counter.toString()
  418. });
  419. var $button = $('<button/>', {
  420. 'type': 'button',
  421. 'class': 'btn btn-primary',
  422. 'onclick': 'deleteObjective("objectiveForm' + counter.toString() + '", "closeObj' + counter.toString() + '","objectiveGroup")'
  423. });
  424. $button.append('X');
  425. $divForButton.append($button);
  426. $div.appendTo('#objectiveGroup')
  427. $select.append(selectObj);
  428. $select.appendTo('#objectiveForm' + counter.toString()).selectpicker('refresh');
  429. $divForButton.appendTo('#objectiveGroup');
  430. $('#objectiveGroup').data('value', counter +1);
  431. }
  432. //Create outcome for editing
  433. var assocOutcomeCounter = 0;
  434. function addAssocOutcome() {
  435. assocOutcomeCounter = parseInt($('#assocOutcomeGroup').data('value'));
  436. var $select = $('<select/>', {
  437. 'class': "selectpicker form-control",
  438. 'name': "assoc_outcome[]",
  439. 'data-live-search': 'true',
  440. 'id': 'assoc_outcome_' + assocOutcomeCounter.toString(),
  441. 'onchange': 'fetchAssocObjective("assoc_outcome_' + assocOutcomeCounter.toString() + '")'
  442. });
  443. var $div = $('<div/>', {
  444. 'id': 'assoc_outcomeForm' + assocOutcomeCounter.toString(),
  445. 'class': 'form-group col-md-11'
  446. });
  447. var $divForButton = $('<div/>', {
  448. 'class': 'col-md-1',
  449. 'id': 'assoc_close' + assocOutcomeCounter.toString()
  450. });
  451. var $button = $('<button/>', {
  452. 'type': 'button',
  453. 'class': 'btn btn-primary',
  454. 'onclick': 'deleteLast("assoc_outcomeForm' + assocOutcomeCounter.toString() + '", "assocOutcomeGroup", "assoc_close' + assocOutcomeCounter.toString() + '","assoc_objectiveGroup")'
  455. });
  456. $button.append('X');
  457. $divForButton.append($button);
  458. $div.appendTo('#assocOutcomeGroup')
  459. $select.append(selectOptions);
  460. $select.appendTo('#assoc_outcomeForm' + assocOutcomeCounter.toString()).selectpicker('refresh');
  461. assocOutcomeCounter += 1;
  462. $('#assocOutcomeGroup').data('value', assocOutcomeCounter);
  463. $divForButton.appendTo('#assocOutcomeGroup');
  464. }
  465. //Fetch associated objective for editing
  466. var assocObjectiveCounter = 1;
  467. function fetchAssocObjective(outcomeDiv, objectiveGroup) {
  468. var count = $('#'+outcomeDiv).data('value');
  469. var allOutcomes =[];
  470. $("#" + outcomeDiv + ' select').each(function() {
  471. allOutcomes.push( this.value);
  472. })
  473. var allObjectives = [];
  474. $("#" + objectiveGroup + ' select').each(function() {
  475. var temp = {
  476. id: this.id,
  477. value: this.value
  478. }
  479. allObjectives.push(temp);
  480. })
  481. $.post(
  482. "{{ URL::action('CriteriaController@fetchObjectivesForSelect') }}", {
  483. allOutcomes: allOutcomes
  484. },
  485. function(json) {
  486. optionName = '';
  487. for(outcome in varArray.outcomes){
  488. optionName += '<optgroup label="' + varArray.outcomes[outcome][0].name + '"';
  489. var objectiveForOutcome = varArray.objectives;
  490. var objectives = objectiveForOutcome[outcome];
  491. for (objective in objectives) {
  492. var obj= objectives[objective];
  493. var option = '<option value ="' + obj.id + '">' +obj.text + '</option>';
  494. optionName += (option);
  495. }
  496. }
  497. $('#assoc_objective_0').html(optionName);
  498. $('#assoc_objective_0').selectpicker('refresh');
  499. if($("#assoc_objective_0 option[value='"+allObjectives[0].value+"']").length>0){
  500. $("#assoc_objective_0").val(allObjectives[0].value);
  501. $('#assoc_objective_0').selectpicker('refresh');
  502. }
  503. for (var i = allObjectives.length - 1; i > 0; i--) {
  504. deleteObjective('assoc_objectiveForm' + i.toString(), 'assoc_closeObj' + i.toString(), 'assoc_objectiveGroup');
  505. }
  506. for(var i=1; i<allObjectives.length; i++){
  507. addAssocObjective();
  508. $('#assoc_objective_'+i.toString()).selectpicker('refresh');
  509. if($("#assoc_objective_"+i.toString()+" option[value='"+allObjectives[i].value+"']").length>0){
  510. $("#assoc_objective_"+i.toString()).val(allObjectives[i].value);
  511. $("#assoc_objective_"+i.toString()).selectpicker("refresh");
  512. }
  513. }
  514. },
  515. 'json'
  516. );
  517. }
  518. //Fetch objective at creating criteria
  519. counterForPost = 0;
  520. function fetchObjectiveForSelect(outcomeDiv, objectiveGroup) {
  521. var count = $("#" + outcomeDiv).data('value');
  522. var allOutcomes = [];
  523. $("#" + outcomeDiv + ' select').each(function() {
  524. allOutcomes.push( this.value);
  525. })
  526. var allObjectives = [];
  527. $("#" + objectiveGroup + ' select').each(function() {
  528. var temp = {
  529. id: this.id,
  530. value: this.value
  531. }
  532. allObjectives.push(temp);
  533. })
  534. $.post(
  535. "{{ URL::action('CriteriaController@fetchObjectivesForSelect') }}", {
  536. allOutcomes: allOutcomes
  537. },
  538. function(varArray) {
  539. counterOutcome =0;
  540. optionName = '';
  541. for(outcome in varArray.outcomes){
  542. optionName += '<optgroup label="' + varArray.outcomes[outcome][0].name + '"';
  543. var objectiveForOutcome = varArray.objectives;
  544. var objectives = objectiveForOutcome[outcome];
  545. for (objective in varArray.objectives[outcome]) {
  546. var obj= objectives[objective];
  547. var option = '<option value ="' + obj.id + '">' +obj.text + '</option>';
  548. optionName += (option);
  549. }
  550. }
  551. $('#objective_0').html(optionName);
  552. $('#objective_0').selectpicker('refresh');
  553. if($("#objective_0 option[value='"+allObjectives[0].value+"']").length>0){
  554. $("#objective_0").val(allObjectives[0].value);
  555. $('#objective_0').selectpicker('refresh');
  556. }
  557. for (var i = allObjectives.length - 1; i > 0; i--) {
  558. deleteObjective('objectiveForm' + i.toString(), 'closeObj' + i.toString(), 'objectiveGroup');
  559. }
  560. for(var i =1; i<allObjectives.length; i++){
  561. addObjectiveTest();
  562. $('#objective_'+i.toString()).selectpicker('refresh');
  563. if($("#objective_"+i.toString()+" option[value='"+allObjectives[i].value+"']").length>0){
  564. $("#objective_"+i.toString()).val(allObjectives[i].value);
  565. $("#objective_"+i.toString()).selectpicker("refresh");
  566. }
  567. }
  568. },
  569. 'json'
  570. );
  571. }
  572. //after post
  573. fetchAllCriterion("select-program", "assoc_outcomes_fetch");
  574. //For editing criterion
  575. function fetchAllCriterion(program, outcome) {
  576. var program_id_fetch = $('#' + program).find(':selected').val();
  577. var outcome_fetch = $('#' + outcome).find(':selected').val();
  578. $.post(
  579. "{{URL::action('CriteriaController@fetchAllCriterion')}}", {
  580. program_fetch: program_id_fetch,
  581. outcome_fetch: outcome_fetch
  582. },
  583. function(json) {
  584. json_length = (json.criterion.length);
  585. fullHTML = '';
  586. for (var i = 0; i < json_length; i++) {
  587. fullHTML += '<option value="' + json.criterion[i].id + '">' + json.criterion[i].name + '</option>';
  588. }
  589. $('#select-criterion').html(fullHTML);
  590. $('#select-criterion').selectpicker('refresh');
  591. fetchCriterionForEditing()
  592. },
  593. 'json'
  594. );
  595. }
  596. function deleteCriterion() {
  597. var id = $('#select-criterion').find(':selected').val()
  598. $.post(
  599. "{{ URL::action('CriteriaController@delete')}}", {
  600. id: id
  601. },
  602. function() {
  603. window.location.reload(true)
  604. }
  605. )
  606. }
  607. function fetchCriterionForEditing() {
  608. var id = $('#select-criterion').find(':selected').val();
  609. $.post(
  610. "{{ URL::action('CriteriaController@fetchCriterionWithTrashed') }}", {
  611. id: id
  612. },
  613. function(json) {
  614. if (!(json.activity_criterion.length)) {
  615. $('#DeleteButton').prop('disabled', true);
  616. } else {
  617. $('#DeleteButton').prop('enabled', true);
  618. }
  619. if (!(json.criteria.length)) {
  620. name = ' ';
  621. var subcriteria = '';
  622. copyright = null;
  623. notes = null;
  624. $('#status').val(0);
  625. maximum = 1;
  626. $('#assoc_maximum_score').val(1);
  627. } else {
  628. var name = json.criteria[0].name;
  629. if (json.criteria[0].subcriteria) {
  630. subcriteria = JSON.parse(json.criteria[0].subcriteria).join('\n');
  631. } else {
  632. subcriteria = "";
  633. }
  634. if (json.criteria[0].copyright) {
  635. var copyright = json.criteria[0].copyright;
  636. } else {
  637. var copyright = ''
  638. }
  639. if (json.criteria[0].notes) notes = json.criteria[0].notes;
  640. else notes = '';
  641. // Display info
  642. $('#criterion_name').val(name);
  643. $('#criterion_subcriteria').text(subcriteria);
  644. if (json.criteria[0].deleted_at)
  645. $('#status').val(0);
  646. else
  647. $('#status').val(1);
  648. $('#assoc_maximum_score').val(json.criteria[0].maximum_score);
  649. var maximum = json.criteria[0].maximum_score;
  650. // If copyright or notes aren't empty, load them
  651. }
  652. $('#criterion_copyright').text(copyright);
  653. $('#criterion_notes').text(notes);
  654. // Select associated outcome
  655. try {
  656. assocOutcomeCounter= parseInt($("#assocOutcomeGroup").data('value'));
  657. for (var i = assocOutcomeCounter - 1; i > 0; i--) {
  658. deleteLast("assoc_outcomeForm" + i.toString() , "assocOutcomeGroup", "assoc_close" + i.toString() ,"assoc_objectiveGroup");
  659. }
  660. } catch (err) {
  661. var Notran = true;
  662. }
  663. if (json.outcomes.length) {
  664. $('#assoc_outcome_0').val(json.outcomes[0].id);
  665. $('#assoc_outcome_0').selectpicker('refresh');
  666. } else {
  667. $('#assoc_outcome_0').val($('#assoc_outcomes_fetch').find(':selected').val());
  668. $('#assoc_outcome_0').selectpicker('refresh');
  669. }
  670. for (var i = 1; i < json.outcomes.length; i++) {
  671. addAssocOutcome();
  672. $('#assoc_outcome_' + i.toString()).val(json.outcomes[i].id);
  673. $('#assoc_outcome_' + i.toString()).selectpicker('refresh');
  674. }
  675. counterObj =$('#assoc_objectiveGroup').data('value');
  676. try {
  677. for (var i = counterObj - 1; i > 0; i--) {
  678. deleteObjective('assoc_objectiveForm' + i.toString(), 'assoc_closeObj' + i.toString(), 'assoc_objectiveGroup')
  679. }
  680. } catch (err) {
  681. var noEntro = true;
  682. }
  683. $('#assoc_objectiveGroup').data('value', 1);
  684. assocOutcomeCounter = 0;
  685. var i = 0;
  686. optionName = '';
  687. for(outcome in json.outcomes_assoc){
  688. optionName += '<optgroup label="' + json.outcomes_assoc[outcome][0].name + '"';
  689. var objectiveForOutcome = json.objectives_assoc;
  690. var objectives = objectiveForOutcome[outcome];
  691. for (objective in objectives) {
  692. var obj= objectives[objective];
  693. var option = '<option value ="' + obj.id + '">' +obj.text + '</option>';
  694. optionName += (option);
  695. }
  696. }
  697. $('#assoc_objective_0').html(optionName);
  698. $('#assoc_objective_0').selectpicker('refresh');
  699. try {
  700. $('#assoc_objective_0').val(json.objectives[0].id);
  701. $('#assoc_objective_0').selectpicker('refresh');
  702. } catch (err) {
  703. if (!json.objectives.length) {
  704. $('#assoc_objective_0').val(0);
  705. $('#assoc_objective_0').selectpicker('refresh');
  706. }
  707. }
  708. for (var i = 1; i < json.objectives.length; i++) {
  709. addAssocObjective();
  710. $('#assoc_objective_' + i.toString()).val(json.objectives[i].id);
  711. $('#assoc_objective_' + i.toString()).selectpicker('refresh');
  712. }
  713. $('assoc_objectiveGroup').data('value',json.objectives.length);
  714. // Select associated program
  715. var program_length = json.program.length;
  716. $('input[type=checkbox]').prop('checked', false);
  717. for (var i = 0; i < program_length; i++) {
  718. $('#assoc_program_id_' + json.program[i].program_id).prop("checked", true);
  719. }
  720. // Select status
  721. scaleLength = json.scales.length;
  722. fullDiv = '';
  723. if (!scaleLength) {
  724. div = '<div id="assoc_eval 0"">' +
  725. '<div class ="form-row">' +
  726. '<label for="header0">Evaluación 1</label><br><br>' +
  727. '<input type="hidden" id="header0">' +
  728. '<div class="form-group col-md-8" >' +
  729. '<label for="title0">Nombre de Evaluación 1</label>' +
  730. '<input class="form-control" name="assoc_title[]" value =" "type="text" id="title0" placeholder ="Nombre de evaluacion" ></div>' +
  731. '<div class ="form-group col-md-2">' +
  732. '<label for="min0">Mínimo </label>' +
  733. '<input class="form-control" type="number" id="assoc_min0" min="1" max = "1" value =" " name = "assoc_min[]"></div>' +
  734. '<div class ="form-group col-md-2">' +
  735. '<label for="max">Máximo </label>' +
  736. '<input class="form-control" type="number" id="assoc_max" min="1" max = "" value =" " name = "assoc_max[]"></div></div>' +
  737. '<div class ="form-group">' +
  738. '<label for ="descripcion">Descripción de evaluación</label>' +
  739. '<textarea class="form-control" rows="2" aria-labelledby="descripcion" name="assoc_scales[]" cols="50" ></textarea></div></div>';
  740. fullDiv += div;
  741. } else {
  742. var dataValue = parseInt($('#Assoc_Scales').attr('data-value'));
  743. $('#assoc_maximum_score').val(json.criteria[0].maximum_score);
  744. var maximum = json.criteria[0].maximum_score;
  745. $('#Assoc_Scales').html(' ');
  746. for (var i = 0; i < scaleLength; i++) {
  747. div = '<div id="assoc_eval' + i.toString() + '">' +
  748. '<div class ="form-row">' +
  749. '<label for="header' + (i).toString() + '">Evaluación ' + (i + 1).toString() + '</label><br><br>' +
  750. '<input type="hidden" id="header' + i.toString() + '">' +
  751. '<div class="form-group col-md-8" >' +
  752. '<label for="title' + i.toString() + '">Nombre de Evaluación ' + (i + 1).toString() + '</label>' +
  753. '<input class="form-control" name="assoc_title[]" value ="' + json.scales[i].title + '"type="text" id="title' + i.toString() + '" placeholder ="Nombre de evaluacion" ></div>' +
  754. '<div class ="form-group col-md-2">' +
  755. '<label for="min' + i.toString() + '">Mínimo </label>' +
  756. '<input class="form-control" type="number" id="assoc_min' + i.toString() + '" min="1" max = "' + maximum + '" value ="' + json.scales[i].min_score + '"oninput ="changedMin(' + "'assoc_min" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_min[]"></div>' +
  757. '<div class ="form-group col-md-2">' +
  758. '<label for="max' + i.toString() + '">Máximo </label>' +
  759. '<input class="form-control" type="number" id="assoc_max' + i.toString() + '" min="1" max = "' + maximum + '" value ="' + json.scales[i].max_score + '"oninput ="changedMax(' + "'assoc_max" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_max[]"></div></div>' +
  760. '<div class ="form-group">' +
  761. '<label for ="descripcion' + i.toString() + '">Descripción de evaluación</label>' +
  762. '<textarea class="form-control" rows="2" aria-labelledby="descripcion' + i.toString() + '" name="assoc_scales[]" cols="50" >' + json.scales[i].description + '</textarea></div></div>';
  763. fullDiv += div;
  764. }
  765. }
  766. addOptions('Num_assoc_scale', 'assoc_maximum_score');
  767. $('#Assoc_Scales').append(fullDiv);
  768. $('#Assoc_Scales').attr('data-value', scaleLength);
  769. $('#Num_assoc_scale').val(scaleLength);
  770. $('#Num_assoc_scale').selectpicker('refresh')
  771. },
  772. 'json'
  773. );
  774. }
  775. </script>
  776. @stop
  777. @section('javascript')
  778. // --------------------------------------------------------------------------
  779. // Page load
  780. // --------------------------------------------------------------------------
  781. // Hide accordion panel contents by default
  782. $('.panel-group .panel-body').hide();
  783. $('#outcome-display').parent().hide();
  784. fetchCriterionForEditing();
  785. fetchObjectiveForSelect('outcomeGroup', 'objectiveGroup');
  786. // setCriterionStatus();
  787. // --------------------------------------------------------------------------
  788. // Functions
  789. // --------------------------------------------------------------------------
  790. $('#button-add-outcome').on('click', function(e) {
  791. // Prevent the default action of the clicked item. In this case that is submit
  792. e.preventDefault();
  793. return false;
  794. });
  795. $('#button-add-objective-assoc').on('click', function(e) {
  796. // Prevent the default action of the clicked item. In this case that is submit
  797. e.preventDefault();
  798. return false;
  799. });
  800. $('#button-add-outcome-assoc').on('click', function(e) {
  801. // Prevent the default action of the clicked item. In this case that is submit
  802. e.preventDefault();
  803. return false;
  804. });
  805. $('#button-add-objective').on('click', function(e) {
  806. // Prevent the default action of the clicked item. In this case that is submit
  807. e.preventDefault();
  808. return false;
  809. });
  810. // Fetch criterion info for editing
  811. // --------------------------------------------------------------------------
  812. // Events
  813. // --------------------------------------------------------------------------
  814. // When panel heading is clicked, toggle it
  815. $('.panel-group .panel-heading').on('click', function()
  816. {
  817. $(this).next().stop().slideToggle();
  818. })
  819. //$('#outcome[0]').on('change', function(){
  820. //fetchObjectiveForSelect(0);
  821. //$('.selectpicker').selectpicker('refresh');
  822. //})
  823. // When list item is clicked, load corresponding info
  824. // When list item is clicked, load corresponding info
  825. $('.selectpicker').on('change', function()
  826. {
  827. //alert($(this).find(':selected').val());
  828. $('.selectpicker').selectpicker('refresh');
  829. });
  830. @stop