mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
improve service selection dropdown behavior
This commit is contained in:
parent
b1dcfeebd5
commit
cf60932ed0
|
|
@ -552,11 +552,13 @@ WfmMetaPanel.prototype.clear = function() {
|
||||||
|
|
||||||
function DabMetaPanel(el) {
|
function DabMetaPanel(el) {
|
||||||
MetaPanel.call(this, el);
|
MetaPanel.call(this, el);
|
||||||
|
var me = this;
|
||||||
this.modes = ['DAB'];
|
this.modes = ['DAB'];
|
||||||
|
this.service_id = 0;
|
||||||
this.$select = $('<select id="dab-service-id"></select>');
|
this.$select = $('<select id="dab-service-id"></select>');
|
||||||
this.$select.on("change", function() {
|
this.$select.on("change", function() {
|
||||||
var service_id = parseInt($(this).val());
|
me.service_id = parseInt($(this).val());
|
||||||
$('#openwebrx-panel-receiver').demodulatorPanel().getDemodulator().setDabServiceId(service_id);
|
$('#openwebrx-panel-receiver').demodulatorPanel().getDemodulator().setDabServiceId(me.service_id);
|
||||||
});
|
});
|
||||||
var $container = $(
|
var $container = $(
|
||||||
'<div class="dab-container">' +
|
'<div class="dab-container">' +
|
||||||
|
|
@ -582,15 +584,16 @@ DabMetaPanel.prototype.update = function(data) {
|
||||||
var options = Object.entries(data.programmes).map(function(e) {
|
var options = Object.entries(data.programmes).map(function(e) {
|
||||||
return '<option value="' + e[0] + '">' + e[1] + '</option>';
|
return '<option value="' + e[0] + '">' + e[1] + '</option>';
|
||||||
});
|
});
|
||||||
$(this.el).find('#dab-service-id').html(
|
this.$select.html(
|
||||||
'<option value="0" disabled selected></option>' +
|
|
||||||
options.join('')
|
options.join('')
|
||||||
);
|
);
|
||||||
|
this.$select.val(this.service_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DabMetaPanel.prototype.clear = function() {
|
DabMetaPanel.prototype.clear = function() {
|
||||||
|
this.service_id = 0;
|
||||||
|
this.$select.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
MetaPanel.types = {
|
MetaPanel.types = {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue