Hello,
Yes you can do it,
Please follow these steps:
1 Create REST service. http://prntscr.com/43f0d6/direct
2 Put "http://autoc.finance.yahoo.com/autoc" as URL.
3 Set "data type" as "jsonp".
4 Add this service to the page as datasource: http://prntscr.com/43f1k1/direct
5 Open "EVENTS" bottom panel and add "success" event handler for datasource from 4 step. Populate it with following code: http://prntscr.com/43f5mr/direct
pre
if(!self.YAHOO !YAHOO.Finance !YAHOO.Finance.SymbolSuggest)
self.YAHOO = {Finance: {SymbolSuggest: {} } };
YAHOO.Finance.SymbolSuggest.ssCallback = function (data) {
alert(data.ResultSet.Result);
};
YAHOO.Finance.SymbolSuggest.ssCallback(data);
/pre
6 Invoke this service on event you need on the page.
Regards.