You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi David,
thanx for your work. In my last project I tried to use:
var sections = HoerSuppe.getAllPodcasts();
var Dialogs = require("yy.tidialogs");
var options = [], selected = [];
sections.forEach(function(section) {
options.push(section.title);
if (section.selected)
selected.push(section.title);
});
var picker = Dialogs.createMultiPicker({
title : "Podcastkategoriefilter",
options : options,
selected : selected,
okButtonTitle : "Übernehmen",
cancelButtonTitle : "Abbruch"
});
picker.addEventListener('click', function(e) {
console.log(e.selections);
console.log(e.indexes);
});
On the screen I see the filled dialog, but after clicking both arrays are empty. In thee.source object are all properties of constructor.
I have tested with your binary and with my own compiled under 3.2.3.GA
Any ideas?
Cheers!
Rainer
The text was updated successfully, but these errors were encountered:
if I start with an empty dialog and click, then it works. Maybe I founded: in result basket are only changed options. If you start a dialog and say OK, then the arrayis empty.
Hi David,
thanx for your work. In my last project I tried to use:
On the screen I see the filled dialog, but after clicking both arrays are empty. In thee.source object are all properties of constructor.
I have tested with your binary and with my own compiled under 3.2.3.GA
Any ideas?
Cheers!
Rainer
The text was updated successfully, but these errors were encountered: