Add visible column to the virtual table fields list.
This commit is contained in:
parent
0a6d7a5cec
commit
52979ac0c2
|
|
@ -85,6 +85,7 @@ $order = $_GET["order"];
|
|||
echo th_order_by('virtual_field_type', 'Type', $order_by, $order);
|
||||
echo th_order_by('virtual_field_column', 'Column', $order_by, $order);
|
||||
echo th_order_by('virtual_field_required', 'Required', $order_by, $order);
|
||||
echo th_order_by('virtual_field_list_hidden', 'Visible', $order_by, $order);
|
||||
echo th_order_by('virtual_field_order', 'Field Order', $order_by, $order);
|
||||
echo th_order_by('virtual_field_order_tab', 'Tab Order', $order_by, $order);
|
||||
echo th_order_by('virtual_field_description', 'Description', $order_by, $order);
|
||||
|
|
@ -103,6 +104,7 @@ $order = $_GET["order"];
|
|||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['virtual_field_type']."</td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['virtual_field_column']."</td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['virtual_field_required']."</td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['virtual_field_list_hidden']."</td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['virtual_field_order']."</td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['virtual_field_order_tab']."</td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['virtual_field_description']." </td>\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue