ParamQuery Grid
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
Help
Search
Login
Register
ParamQuery grid support forum
»
General Category
»
Help for ParamQuery Pro
»
Cannot type in Edit mode when the grid is inside a dialog
« previous
next »
Print
Pages: [
1
]
Author
Topic: Cannot type in Edit mode when the grid is inside a dialog (Read 2562 times)
lsl
Pro Deluxe
Jr. Member
Posts: 67
Cannot type in Edit mode when the grid is inside a dialog
«
on:
April 30, 2014, 02:46:39 pm »
Successfully enter edit mode, but cannot type things when the grid is inside a dialog
pic 1: edit function is good
pic 2: can enter edit mode, but can't type things (more info: can use mouse to "paste" string in it, cannot use "Ctrl+V" to paste.)
Logged
paramvir
Administrator
Hero Member
Posts: 6310
Re: Cannot type in Edit mode when the grid is inside a dialog
«
Reply #1 on:
May 01, 2014, 02:14:58 pm »
Please provide more details:
Have you created grid as a child of dialog.
http://api.jqueryui.com/dialog/#method-_allowInteraction
Do you evt.preventDefault or return false in click event somewhere in your code.
Is this problem browser specific. Have you checked in other browsers.
I believe you are using modal: true option in your jQueryUI dialog which causes an issue with text input.
The fix is to add higher z-index and position:relative in your editors
Code:
[Select]
editor: {style:'z-index:10000;position:relative;'}
«
Last Edit: May 01, 2014, 02:43:57 pm by paramquery
»
Logged
Print
Pages: [
1
]
« previous
next »
ParamQuery grid support forum
»
General Category
»
Help for ParamQuery Pro
»
Cannot type in Edit mode when the grid is inside a dialog