Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
Browser compatibility in onsen
-
My app is working fine in chrome browser but not in default browser of mobile and mozilla.
Functionalities like drag and drop i have used sharing the code below :+1:
$(’.sortable-list’).sortable({
axis: ‘y’,
handle: ‘.list__header’,
cancel: ‘.RemoveSection’,
stop: function( event, ui ) {
// IE doesn’t register the blur when sorting
// so trigger focusout handlers to remove .ui-state-focus
ui.item.children( '.list__header ’ ).triggerHandler( ‘focusout’ );
}
});