Control the number of carousel frames displayed
I have the page shown in the picture below. I want the user to control the number of carousel frames show by inserting the number into mobiletextinput. Assuming I have 5 carousel items, I want to hide last 2 if the user insert 3 and tab to confirm the number. Is that possible?
I have created 'value change' envent of 'mobileinputtext_7' to run java script:
var selectedValue = this.value;
var carousel = $('[name=mobilecarouselItem_8]');
Appery( 'mobilecarouselItem_8' ).refresh();
I think my logic is correct, it is just that my script is missing the part that conrols the number of frames shown. I am not familiar with carousel features. What do I need to add to my script? Is there any other properties need to change? I deeply appreciate your help