I am working on asp.net website.In that I used google translator for translating English to Marathi in textbox and it is working fine, But the problem is it translating when I type something and give tab or space . I want is, when I am typing in textbox that time only it should be translated.
Below Code That i am using.
// Load the Google Transliterate API
google.load("elements", "1", {
packages: "transliteration"
});
function onLoad() {
var options = {
sourceLanguage:
google.elements.transliteration.LanguageCode.ENGLISH,
destinationLanguage:
[google.elements.transliteration.LanguageCode.MARATHI],
shortcourtkey: 'ctrl+e',
transliterationEnabled: true
};
// Create an instance on TransliterationControl with the required
// options.
var control = new google.elements.transliteration.TransliterationControl(options);
// Enable transliteration in the textbox with id
// 'transliterateTextarea'.
control.makeTransliteratable(['FirstName']);
}
google.setOnLoadCallback(onLoad);

Pradeep SahooPosted Oct 28, 2016, 11:26 PM