AjaxCrud 有一个问题。创建关系时,将使用输入文本字段创建搜索。
所以如果你和另一个表有关系,你就不能使用外表的描述字段。您必须使用外键的 ID 进行搜索。失败
好吧,我的用户甚至不知道有 ID 字段。
所以我真的需要使用外键表值来更改那些带有字段的输入文本。
我的解决方案就在下面。
我改变了 ajaxCRUD.class.php
靠近 1191 号线,介于
$top_html .= "</select>\n";
} and `else{
$custom_class = "";
if ($this->display_field_with_class_style[$filter_field] != '') {`
我已经插入了这段代码:
else
if (is_numeric($found_category_index))
{
$category_field_name = $this->category_field_array[$found_category_index];
$category_table_name = $this->category_table_array[$found_category_index];
$category_table_pk = $this->category_table_pk_array[$found_category_index];
$order_by = '';
if ($this->category_sort_field_array[$found_category_index] != ''){
$order_by = " ORDER BY " . $this->category_sort_field_array[$found_category_index];
}
$whereclause = '';
if ($this->category_whereclause_array[$found_category_index] != ''){
$whereclause = $this->category_whereclause_array[$found_category_index];
}
$dropdown_array = q("SELECT $category_table_pk, $category_field_name FROM $category_table_name $whereclause $order_by");
$top_html .= "<br><select name=\"$filter_field\" onChange=\"filterTable(this, '" . $this->db_table . "', '$filter_field', '$extra_query_params');\">";
$top_html .= "<option value=\"\">==Select==</option>\n";
foreach ($dropdown_array as $dropdown)
{
$dropdown_value = $dropdown[$this->category_table_pk_array[$found_category_index]];
$dropdown_text = $dropdown[$this->category_field_array[$found_category_index]];
$top_html .= "<option value=\"$dropdown_value\" >$dropdown_text</option>\n";
}
$top_html .= "</select>\n";
}
我已经包括了这一行$found_category_index = array_search($filter_field, $this->db_table_fk_array);
在此之后:foreach ($this->ajaxFilter_fields as $filter_field){
1156 线附近。
它通过关系数组并根据查询结果创建一个选择。
投票是否解决了您的问题。如果您有更好的解决方案,请分享。