Skip to content
Snippets Groups Projects
Commit 17adf6a7 authored by Carlos Vega's avatar Carlos Vega
Browse files

new type of select for none, true, false, inconclusive

parent aaf8c2b6
No related branches found
Tags v1.0.1
1 merge request!250Virus visit column changes
...@@ -301,7 +301,10 @@ function createTable(params) { ...@@ -301,7 +301,10 @@ function createTable(params) {
$(this).html('<select style="width:60px" ><option value selected="selected">---</option><option value="true">YES</option><option value="false">NO</option></select>'); $(this).html('<select style="width:60px" ><option value selected="selected">---</option><option value="true">YES</option><option value="false">NO</option></select>');
}); });
$(tableElement).find('tfoot div[name="yes_no_null_filter"]').each(function () { $(tableElement).find('tfoot div[name="yes_no_null_filter"]').each(function () {
$(this).html('<select style="width:60px" ><option value selected="selected">---</option><option value="true">YES</option><option value="false">NO</option><option value="null">N/A</option></select>'); $(this).html('<select style="width:120px" ><option value selected="selected">---</option><option value="true">YES</option><option value="false">NO</option><option value="null">N/A</option></select>');
});
$(tableElement).find('tfoot div[name="yes_no_null_inconclusive_filter"]').each(function () {
$(this).html('<select style="width:120px" ><option value selected="selected">---</option><option value="true">YES</option><option value="false">NO</option><option value="null">N/A</option><option value="inconclusive">Inconclusive</option></select>');
}); });
$(tableElement).find('tfoot div[name="integer_filter"]').each(function () { $(tableElement).find('tfoot div[name="integer_filter"]').each(function () {
var options = '<option value selected="selected">---</option>'; var options = '<option value selected="selected">---</option>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment