add tables for apprentices
[brisk.git] / web / room.js
index 89ee03c..7874263 100644 (file)
@@ -421,11 +421,13 @@ function j_stand_cont(ddata)
 
             table_add($("standup"), td);
         }
-
         standup_data_old = data;
-        return;
     }
-    // $("esco").innerHTML =  '<input class="button" name="logout" value="Esco." onclick="esco_cb();" type="button">';
+
+    var usr = $("standup").getElementsByClassName("id_usr");
+    for (i = 0 ; i < usr.length ; i++) {
+        addEvent(usr[i], "click", info_show_cb);
+    }
 }
 
 function esco_cb() {
@@ -435,21 +437,21 @@ function esco_cb() {
     act_logout(0);
  };
 
-
-
 function j_tab_cont(table_idx, data)
 {
     var i;
     var content = '';
 
     for (i = 0 ; i < data.length ; i++) {
-        // content += user_decorator(data[i]);
-        // content += state_add(data[i][0]);
         content += j_stand_tdcont(data[i]);
 
         content += '<br>';
     }
     $("table"+table_idx).innerHTML = content;
+    var usr = $("table"+table_idx).getElementsByClassName("id_usr");
+    for (i = 0 ; i < usr.length ; i++) {
+        addEvent(usr[i], "click", info_show_cb);
+    }
 }
 
 function j_tab_act_cont(idx, act)
@@ -458,6 +460,10 @@ function j_tab_act_cont(idx, act)
         // MLANG 1
         $("table_act"+idx).innerHTML = '<input type="button" class="button" name="xhenter'+idx+'"  value="'+(g_lang == 'en' ? "Sit down." : "Mi siedo.")+'" onclick="act_sitdown('+idx+');">';
     }
+    else if (act == 'sitappr') {
+        // MLANG 1
+        $("table_act"+idx).innerHTML = '<input type="button" style="background-repeat: no-repeat; background-position: center; background-image: url(\'img/okappr.png\');" class="button" name="xhenter'+idx+'"  value="'+(g_lang == 'en' ? "Sit down." : "Mi siedo.")+'" onclick="act_sitdown('+idx+');" title="'+(g_lang == 'en' ? "reserved table for authenticated and apprentice users only" : "tavolo riservato agli utenti registrati e agli apprendisti")+'" alt="'+(g_lang == 'en' ? "reserved table for authenticated and apprentice users only" : "tavolo riservato agli utenti registrati e agli apprendisti")+'">';
+    }
     else if (act == 'sitreser') {
         // MLANG 1
         $("table_act"+idx).innerHTML = '<input type="button" style="background-repeat: no-repeat; background-position: center; background-image: url(\'img/okauth.png\');" class="button" name="xhenter'+idx+'"  value="'+(g_lang == 'en' ? "Sit down." : "Mi siedo.")+'" onclick="act_sitdown('+idx+');" title="'+(g_lang == 'en' ? "reserved table for authenticated users only" : "tavolo riservato agli utenti registrati")+'" alt="'+(g_lang == 'en' ? "reserved table for authenticated users only" : "tavolo riservato agli utenti registrati")+'">';