app/soc/templates/soc/templatetags/_as_table_row.html
changeset 2295 8566fb2b8012
parent 1819 1e34fa8c5da0
child 2300 b9fd1e20d413
--- a/app/soc/templates/soc/templatetags/_as_table_row.html	Fri May 01 01:37:43 2009 +0200
+++ b/app/soc/templates/soc/templatetags/_as_table_row.html	Mon May 04 19:23:44 2009 +0200
@@ -27,7 +27,7 @@
 
 {% block label_row %}{% endblock %}
 
-<tr title="{{ help_text }}">
+<tr>
   {% block label_column %}
   <td class="{{ field_class_type }}">
     {{ label }}
@@ -51,6 +51,22 @@
       );
     </script>
   {% endif %}
+  {% if help_text %}
+  <script type="text/javascript">
+  $(document).ready( function() {
+    var tooltip = "<div class='tooltip'><div class='tooltip-body'><img src='/soc/content/images/purrInfo.png' alt='' /><h3>Info</h3><p>{{ help_text }}</p></div><div class='tooltip-bottom'></div></div>";
+    var tooltip_object=null;
+    $("#{{ field_id }}").focus(function() {
+      tooltip_object = $(tooltip).purr({usingTransparentPNG: true});
+    });
+    $("#{{ field_id }}").blur(function() {
+      if (tooltip_object!==null) {
+        tooltip_object.remove();
+      }
+    });
+  });
+  </script>
+  {% endif %}
     {{ field|safe }}
   </td>