fires when selection in the DataSelector is changed
| id | string|number | the id of the selected item |
| value | mixed | the value of the selected item |
myDataSelector.attachEvent("onSelect", function(id, value){
// your code here
});
Back to top