Bootstrap Extra Components 1.0.0 released

Hi Patrick

I have a foundset containing the instrument names (around 20) plus a few more attributes and following is the code I use, together wit a Carousel Web Component. The picture is just for test purposes always the same, I recognise the instrument by getting the name of the instrument from the corresponding foundset record. Does this piece of code help?

function showInstruments() {
	/** @type {JSFoundSet<db:/hades/particular_subjects>} */
	var fsInstruments = databaseManager.getFoundSet('hades', 'particular_subjects');
	if (fsInstruments.find()) {
		fsInstruments.subject_code = 'IN';
		fsInstruments.search();
	}
	
	elements.carousel.lazyLoading = true;
	elements.carousel.removeSlide(0); // Remove first empty slide (don't know why there is one)
	for (var i = 1;  i <= fsInstruments.getSize(); i++) {
		/** @type {bootstrapextracomponents-carousel.slide} */
		var slide = {
			imageUrl: 'https://swallowhillmusic.org/wp-content/uploads/2013/03/ukulele.jpg',
			caption: fsInstruments.getRecord(i).name
		};
		slides = elements.carousel.addSlide(slide);
		application.output('ElcInstruments: showInstrument: fsInstruments.getRecord(i).name: ' + fsInstruments.getRecord(i).name, LOGGINGLEVEL.DEBUG);
	}
	
	elements.carousel.cycleInterval = 0; // Do no cycling
	elements.carousel.noPause = false; // Animation does stop when mouse is over the component. Default is false.
}

patrick:
I see the tickets, but they should better go here: https://github.com/Servoy/bootstrapextr … nts/issues

I will transfer them…

Regarding the arrow buttons: I have no issues using them. Do you have a small sample solution that shows the problem? That demo could also show which image scaling options you tried.

I will have a look on styling the indicators, but I think you can already do that. Maybe needs to be added to documentation.

Best regards,
Robert