Skip to main content

Search and Top Navigation

#9767 closed bug (duplicate)

Opened January 23, 2014 11:17AM UTC

Closed January 23, 2014 01:18PM UTC

v 1.10.2+ Problem with input fields on jqgrid dialogs

Reported by: scuenca Owned by:
Priority: minor Milestone: none
Component: ui.dialog Version: 1.10.2
Keywords: Cc:
Blocked by: Blocking:
Description

I have a jqgrid table that is open inside a dialog. This table opens another dialog with an input text to filter data. With the version 1.9.2 of jquery-ui it works fine (see http://jsfiddle.net/IrvinDominin/zdACB/).

But if you change the version of jquery-ui for the 1.10.2 for example, the input text of the second dialog (the filter dialog) is not editable, but not disabled.

Attachments (0)
Change History (1)

Changed January 23, 2014 01:18PM UTC by tj.vantoll comment:1

component: ui.coreui.dialog
resolution: → duplicate
status: newclosed

Duplicate of #9087.This is a duplicate of #9087.

You can get this working with this extension:

$.widget( "ui.dialog", $.ui.dialog, {
	_allowInteraction: function( event ) {
		return !!$( event.target ).closest( ".ui-jqdialog" ).length || this._super( event );
	}
});

See http://jsfiddle.net/tj_vantoll/zdACB/1/.