68 lines
No EOL
3.2 KiB
Text
68 lines
No EOL
3.2 KiB
Text
@using Kreta.Resources
|
|
@using Kreta.Web.Areas.Tanulo.Models
|
|
@model TanuloModel
|
|
|
|
<div class="container-fluid details">
|
|
<h4>@TanuloResource.BeilleszkedesiTanulasiEsMagatartasiProblema</h4>
|
|
|
|
<div class="row">
|
|
@Html.KretaCheckBoxFor(x => x.TanuloBTMProblemakModel.BTMProblema).RenderWithName()
|
|
</div>
|
|
@*
|
|
<div id="BTMHiddenInputsDiv" class="displayNone">
|
|
<div class="row">
|
|
@Html.KretaNumericFor(x => x.TanuloBTMProblemakModel.TanuloLetszamSulyozasa).RenderWithName(3, 3)
|
|
@Html.KretaCheckBoxFor(x => x.TanuloBTMProblemakModel.BeilleszkedesiProblemavalKuzd).RenderWithName(3, 3)
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaCheckBoxFor(x => x.TanuloBTMProblemakModel.TanulasiProblemavalKuzd).RenderWithName(3, 3)
|
|
@Html.KretaCheckBoxFor(x => x.TanuloBTMProblemakModel.MagatartasiProblemavalKuzd).RenderWithName(3, 3)
|
|
</div>
|
|
<div id="BTMHiddenTanulasiProblemaInputsDiv" class="displayNone">
|
|
<div class="row">
|
|
@Html.KretaCheckBoxFor(x => x.TanuloBTMProblemakModel.Diszlexia).RenderWithName(3, 3)
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaCheckBoxFor(x => x.TanuloBTMProblemakModel.Diszgrafia).RenderWithName(3, 3)
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaCheckBoxFor(x => x.TanuloBTMProblemakModel.Diszkalkulia).RenderWithName(3, 3)
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaTextBoxFor(x => x.TanuloBTMProblemakModel.BTMHatarozatOkmanySzam).RenderWithName(3, 3)
|
|
@Html.KretaTextBoxFor(x => x.TanuloBTMProblemakModel.KiallitoIntezmeny).RenderWithName(3, 3)
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaDatePickerFor(x => x.TanuloBTMProblemakModel.OkmanyErvenyessegKezdete).RenderWithName(3, 3)
|
|
@Html.KretaDatePickerFor(x => x.TanuloBTMProblemakModel.OkmanyErvenyessegVege).RenderWithName(3, 3)
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaDatePickerFor(x => x.TanuloBTMProblemakModel.KontrolIdopontja).RenderWithName(3, 3)
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaTextAreaFor(x => x.TanuloBTMProblemakModel.HatarozatTartalma).RenderWithName(3, 9)
|
|
</div>
|
|
</div>
|
|
*@
|
|
</div>
|
|
@*
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
setTimeout(function () {
|
|
if ('@Model.TanuloBTMProblemakModel.BTMProblema' == 'True') {
|
|
$("#BTMHiddenInputsDiv").removeClass('displayNone');
|
|
}
|
|
|
|
if ('@Model.TanuloBTMProblemakModel.TanulasiProblemavalKuzd' == 'True') {
|
|
$("#BTMHiddenTanulasiProblemaInputsDiv").removeClass('displayNone');
|
|
}
|
|
}, 1);
|
|
});
|
|
|
|
$("#TanuloBTMProblemakModel_BTMProblema").change(function () {
|
|
$("#TanuloBTMProblemakModel_OkmanyErvenyessegKezdete").data("kendoDatePicker").value(null);
|
|
$("#TanuloBTMProblemakModel_OkmanyErvenyessegVege").data("kendoDatePicker").value(null);
|
|
});
|
|
</script>
|
|
*@ |