| |   |
| diff --git a/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/preflist-assistant.js b/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/preflist-assistant.js |
| index 4c1b0e2..97610bf 100644 |
| --- a/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/preflist-assistant.js |
| +++ b/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/preflist-assistant.js |
| @@ -224,7 +224,8 @@ var PreflistAssistant = Class.create({ |
| |
| this.voiceRoamingChoices = [ |
| {label: this.carrierOnlyLabel,value: "homeonly"}, |
| - {label : $L("Automatic"),value: "any"} |
| + {label : $L("Automatic"),value: "any"}, |
| + {label : "Roam Only",value: "roamonly"} |
| ], |
| |
| this.voiceRoamingModel = { |
| @@ -1230,6 +1231,11 @@ voiceNumberSetDone: function(payload){ |
| $('dataroamingrow').show(); |
| $('voiceRoamingRow').removeClassName('last'); |
| } |
| + else if(payload.extended.mode == 'roamonly') { |
| + this.voiceRoamingModel.currentVoiceRoaming = "roamonly"; |
| + $('dataroamingrow').show(); |
| + $('voiceRoamingRow').removeClassName('last'); |
| + } |
| else { |
| this.voiceRoamingModel.currentVoiceRoaming = "homeonly"; |
| $('dataroamingrow').hide(); |