I'm not sure exactly what you are trying to do here, but I think you mean that you have various different options from which you want you want your user to select one. You can do this by creating multiple buttons using the buttons
option:
$(selector).dialog({
buttons: {
'button 1': function() {
// handle if button 1 is clicked
},
'button 2': function() {
// handle if button 2 is clicked
},
'button 3': function() {
// handle if button 3 is clicked
}
}
});
If this isn't what you need, perhaps you could provide a more detailed explanation of what you want to achieve.