Skip to content
Snippets Groups Projects
Commit 43f083b0 authored by juanf's avatar juanf
Browse files

SSDM-2738 : feature vector dropdows Styling (ongoing work).

SVN: 35116
parent d7b60cf9
No related branches found
No related tags found
No related merge requests found
......@@ -458,6 +458,15 @@ table.downloads {
cursor : pointer;
}
#sample-form-plate-view > div > .featureDropdown {
max-width: 300px;
display: inline;
}
.featureDropdown {
margin: 5px;
}
/*
* Storage Widget
*/
......
......@@ -39,6 +39,7 @@ function PlateView(plateController, plateModel) {
"Choose a Feature Vector Dataset first",
false
);
$featureVectorDatasetFeaturesDropdown.addClass("featureDropdown");
//2. Feature Vector Dataset Dropdow
var featureVectorDatasets = this._plateModel.sample.featureVectorsCache.featureVectorDatasets;
......@@ -56,6 +57,7 @@ function PlateView(plateController, plateModel) {
"Choose a Feature Vector Dataset please",
false
);
$featureVectorDatasetsDropdown.addClass("featureDropdown");
$featureVectorDatasetsDropdown.change(function(event) {
var featureVectorDatasetCode = $(this).val();
......@@ -94,12 +96,10 @@ function PlateView(plateController, plateModel) {
});
//Build Toolbar
$toolbar.append(FormUtil.getFieldForComponentWithLabel($featureVectorDatasetsDropdown, "Feature Vector Datasets"))
.append(FormUtil.getFieldForComponentWithLabel($featureVectorDatasetFeaturesDropdown, "Feature Vector Dataset Features"));
$toolbar.append($featureVectorDatasetsDropdown)
.append($featureVectorDatasetFeaturesDropdown);
}
//Paint grid
var $gridTable = this.getGridTable(true);
$container.append($toolbar).append($gridTable);
......
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