diff options
Diffstat (limited to 'admin/survey/script/customizeImageView.js')
-rw-r--r-- | admin/survey/script/customizeImageView.js | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/admin/survey/script/customizeImageView.js b/admin/survey/script/customizeImageView.js index fd8fb41..7969324 100644 --- a/admin/survey/script/customizeImageView.js +++ b/admin/survey/script/customizeImageView.js @@ -119,7 +119,7 @@ function customizeImageView4Respondent(tip, spremenljivka, vre_id, ajax, anketa, }
//ureditev visine kategorije (div) glede na prisotnost slike ali vecvrsticnega teksta **************************************************
- var default_cat_height = 15;
+ var default_cat_height = 30;
var final_height = 0;
//var cat_text_length = $('#spremenljivka_'+spremenljivka+'_vrednost_'+vre_id).text().length; //hrani stevilo znakov, ki so vpisani v trenutni kategoriji odgovora
var cat_text_length = $('#spremenljivka_'+spremenljivka+'_vrednost_'+vre_id).html().length; //hrani stevilo znakov, ki so vpisani v trenutni kategoriji odgovora
@@ -222,6 +222,7 @@ function customizeImageView4Respondent(tip, spremenljivka, vre_id, ajax, anketa, if (final_height != 0){
$('#spremenljivka_'+spremenljivka+'_vrednost_'+vre_id).css({'height':final_height}); //dodaj style atributu še novo višino za levi blok
}
+ //console.log(final_height);
//ureditev visine kategorije (div) glede na prisotnost slike ali vecvrsticnega teksta - konec********************************************
//ureditev visine celotnega vprasanja****************************************************************************************************
@@ -274,6 +275,23 @@ function question_height_ranking(spremenljivka){ //console.log("final_height: "+final_height);
}
+function frame_height_ranking (ui, spremenljivka){
+ var trenutna_visina_prenesenega = ui.item.height();
+ console.log(trenutna_visina_prenesenega);
+ //console.log('drugo');
+ var trenutni_okvir = $('#half2_'+spremenljivka);
+ var stevilo_prisotnih = trenutni_okvir.children('div').length;
+ console.log(stevilo_prisotnih);
+ var i = 0;
+ trenutni_okvir.siblings().children('li').children('div').each(function(){ //preleti prazne okvirje
+ i = i + 1;
+ if(stevilo_prisotnih == i){
+ $(this).height(trenutna_visina_prenesenega);
+ //console.log(i);
+ }
+ });
+}
+
function frame_height_ranking_premikanje_dyn (ui, spremenljivka){
var trenutna_visina_prenesenega = ui.item.height();
var trenutni_okvir = $('#sortzone_'+spremenljivka);
|