Fix Database Manager GUI ( Enable table filtering and search fields )
When you click on a database table, you're taken to the Select data tab, which is great. However, the header section is only displaying two fields, neither of which are labeled. All the actual labels and additional fields are missing. This means it's impossible to sort the data, filter, or search for advanced content.
Here are two screenshots, one of what IS visible:
https://www.dropbox.com/s/yyp2meohkaxlakk/What%20IS%20Visible.png
and another of what SHOULD BE visible.
https://www.dropbox.com/s/qaycu7qc3h5ux00/What%20SHOULD%20BE%20Visible.png
Hope that helps explain what I'm talking about.
Clearly, all the form fields are already there, but they're hidden. Looking at the CSS, it looks like there are two rules that are for some reason hiding the missing fields.
In the file: /css/style.css
There's this rule:
#inner_page #content fieldset legend {
display: none;
}
This hides the labels for each field.
Additionally, each fieldset seems to have the class "hidden" which then hides those fields.
It would be super helpful to have access to these fields to be able to select the appropriate data using the form rather than having to write SQL for simple Select actions.