Top "Jquery-widgets" questions

jQuery UI widgets allow web developers to use familiar desktop style controls within a web application environment.

Accessing widget instance from outside widget

This is a simple widget mock: (function ($) { $.widget("ui.myDummyWidget", { options: { }, _create: function () { }, hide: function () { this.element.hide(); }, _setOption: function (…

jquery jquery-widgets
Removing and Reapplying Widget on an Element

I have got a problem. I am applying the widget on select element. When I am reloading the same select …

jquery-ui jquery-widgets
How to get the input element triggering the jQuery autocomplete widget?

I have several input fields that are enhanced with jQuery auto-complete functionality. How to get the corresponding input field when …

jquery jquery-autocomplete jquery-widgets
Jquery Mobile pageshow function

I am building a webapp using the jqm framework and I have been attempting to use the pageshow function when …

jquery jquery-mobile jquery-widgets
JavaScript frameworks comparison : ExtJS, JQWidgets, DHTMLX

I will develop a commercial web application based on PHP and MySQL database. Now, I'm guessing about the JavaScript framework. …

javascript extjs dhtmlx jquery-widgets jqwidget
jQuery plugins vs widgets

Few months ago I started some experiments with jQuery plugin. I found some tutorials on the Interenet and I started …

javascript jquery jquery-ui jquery-plugins jquery-widgets
Best way to make jquery ui with typescript

I'm making a jquery widget with widget factory typed in typescript. How to provide a good intellisense without having to …

jquery-ui typescript jquery-widgets
jquery widget apply(this, arguments)

Sometimes I see people using this to call function within a widget this.myFunction.apply(this, arguments); instead of this: …

javascript jquery jquery-widgets