BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
let games: ComboBox = new ComboBox({
dataSource: data,
fields: { text: 'Name', value: 'Code' },
placeholder: 'Select countries',
popupWidth: '200px',
open: function (args) {
args.popup.position = { X: 'right', Y: 'bottom' };
}
});
games.appendTo('#local'); |