Hello Amit,
sms: -uri handler supports only ASCII character set.
Please see this document :
http://wiki.forum.nokia.com/index.ph..._in_WRT_widget
So a workaround would be to use platform services 1.0 messaging API:
Code:
function SendSMS_SAPI()
{
var criteria = new Object();
criteria.MessageType = 'SMS';
criteria.To = '+358123451234';
criteria.BodyText = document.getElementById("smsText").value;
try{
var so = device.getServiceObject("Service.Messaging", "IMessaging");
var result = so.IMessaging.Send(criteria);
}
catch(e){
alert('SendSMS: '+e);
}
}
-Ilkka