浏览代码

Added some instructions to the views_handler_filter_chado_select_string options form

Stephen Ficklin 12 年之前
父节点
当前提交
3c1fd84297
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      tripal_views/views/handlers/views_handler_filter_chado_select_string.inc

+ 6 - 0
tripal_views/views/handlers/views_handler_filter_chado_select_string.inc

@@ -44,6 +44,12 @@ class views_handler_filter_chado_select_string extends views_handler_filter_stri
       '#default_value' => (isset($this->options['max_length'])) ? $this->options['max_length'] : 40,
 
     );
+    $form['max_length'] = array(
+      '#type' => 'markup',
+      '#value' => t('<strong><font color="red">Note:</font></strong> If another filter exists for the same table then '.
+                    'the values shown in the drop box will only include those from rows that are not filtered.'),
+
+    );
 
   }