0e46b7cc753347aa846d00af78f01390e80b3bcc jnavarr5 Mon Feb 9 17:10:45 2026 -0800 Adding an ID to the searchCell on hgTables. Updating the interactive tutorials since the new search feature breaks some of the tutorials. refs #37097 diff --git src/hg/hgTables/mainPage.c src/hg/hgTables/mainPage.c index 6fa746e9894..7af94a5293b 100644 --- src/hg/hgTables/mainPage.c +++ src/hg/hgTables/mainPage.c @@ -640,31 +640,31 @@ { struct grp *selGroup; boolean isWig = FALSE, isPositional = FALSE, isMaf = FALSE, isBedGr = FALSE, isChromGraphCt = FALSE, isPal = FALSE, isArray = FALSE, isBam = FALSE, isVcf = FALSE, isHalSnake = FALSE, isLongTabix = FALSE, isHic = FALSE; //boolean gotClade = hGotClade(); struct hTableInfo *hti = NULL; hPrintf("
| \n"); + hPrintf(" |
| \n"); char *searchBarId = "genomeSearch"; jsIncludeAutoCompleteLibs(); printGenomeSearchBar(searchBarId, "Search any species, genome or assembly name", NULL, TRUE, "Genome:", "tbSearchLabel"); jsInlineF( "document.hiddenForm.db.value = \"%s\";\n" "setupGenomeSearchBar({\n" " inputId: '%s',\n" " labelElementId: 'genomeLabel',\n" " onSelect: function(item) {\n" " document.hiddenForm.db.value = item.genome;\n" " document.hiddenForm.hgta_regionType.value = regionType;\n" " document.hiddenForm.hgta_outputType.value = document.getElementById('outputTypeDropdown').value;\n" " document.hiddenForm.submit();\n" " }\n" "});\n" |