I currently have a static carousel set up as below:
varPanelTop = new Ext.Carousel({
defaults: {
cls: 'homeTop'
},
items: [{
html: '<img src="IMAGE ONE" />'
},
{
html: '<img src="IMAGE TWO" />'
},
{
html: '<img src="IMAGE THREE" />'
},
{
html: '<img src="IMAGE FOUR" />'
}]
});
Not a problem all works fine, but now i have been thrown a big one, in which 'can i do this so that each time this page is refreshed the order of the html/imgs are different each time?
So would this be possible to do and how if so?
Many Thanks