Is there an alternative to jQuery UI widgets?

I am making a calendar for jquery mobile, I am using jquery weekcalendar (jQ wC), but the problem is that jQ wC uses jQuery UI, and this contradicts jQuery mobile.

For this reason, I removed all the UIs from jQ wC, but I was stuck in the last part, and this is part of the widget.

It works as follows: there is a jq wc CORE file that initiates the widget, and an Impl file that points to this widget, and this file overwrites the settings from the main file.

My question is: how can I get rid of widgets and still have this impl file change the kernel settings?

Files can be found here:
http://pastebin.com/gswWRm8D
http://pastebin.com/2180H1Ve

edit . I temporarily resolved tihs by splitting the user interface code and importing only part of the jQuery UI widget (this is only 3kb instead of importing the entire library: 200kb). However, I'm still looking for something to completely remove the library.

+5
source share
2 answers

Since alpha2, jQuery Mobile used the jQUI factory widget.

$.widget there is jQUI, with extensions $.mobile.widget. If you pulled out all other user-interface-specific code, with the exception of the factory widget, you need to replace all the user interface widgets with ui.weekCalendarsomething more appropriate ( mobile.weekCalendar).

. http://jquerymobile.com/blog/2010/11/12/jquery-mobile-alpha-2-released/

jQuery Mobile jQuery UI factory. ( ). , Dialog, Form Buttons, listview, collapsible, Checkbox/Radio, textinput, slider/switch, Select menu, factory .

0

jQuery, , .

, http://www.kendoui.com .

0

All Articles