Hi Octavio,
Found my answer in “Help with toggle buttons – set and re-set”….!!!!!!!
Perhaps u should put a link to this topic
To help others with same problem ……My “summarise” function now is:
function summarize() {
var summary = “”;
//multiple select list: get selected items as array and
// collect label::value strings
$(‘select[name=”list1″] :selected’).each(
function(i, selected) {
summary += $(selected).text() + “::” + $(selected).val() + “\n”; });
//update text-area content
$(‘#m1-summary-textArea1’).text(summary);
////////////////////////////////////////////////////////////////////////////////////
// unselect all list items
$(‘.m1-selection-list > li’).each(function (i) {
$(this).removeClass(m1Design.css(“selected”));
});
phoneui.preprocessDOM();
///////////////////////////////////////////////////////////////////////////////////////
}​
This works fine for me