Languages

Menu
Sites
Language
swipe event in tizen
i want to add swipe event using jquery mobile. swipe is working when i click  on preview button of tizen ide.when when i run the application in tizen web simulater application,swipe event is not working.i just include the jquery and juery mobile js file.Have i need to add any additional js file for swipe event?
Edited by: anfas ci on 10 Feb, 2013

Responses

3 Replies
Lakshmi Grandhi
Hi anfas, you can use swipeleft, swiperight events , it works both on emulator and simulator as well.
anfas ci
hi , I used the swipeleft and swiperight events. it is working fine on browsers . but swipe events is not working on simulator.Can you help me.Thanks. i append the code below. Calendar

Calendar

Lakshmi Grandhi
Hi anfas, add these bind event inside "init" funtion var init = function () { // TODO:: Do your initialization job console.log("init() called"); $('#calendar').bind('swipeleft', function(event) { console.log("---------------swipeleft---------"); $('#calendar').fullCalendar('next'); }); $('#calendar').bind('swiperight', function(event) { console.log("---------------swiperight---------"); $('#calendar').fullCalendar('prev'); }); }; $(document).ready(init);