Hi,
I have created a subclass of the PopupTextAreaItem to be used in inline grid editing. I noticed however that tabbing out of the popup does not work. After checking the source code I noticed these lines in the ListGrid:
	This means that if I have my own subclass of PopupTextArea then the required properties are not set. 
Is there a solution for this? I am using the nightly build of the 11th of January.
Btw, the above remark also applies to the _checkboxEditorTypes (although accidentally the code checks for the underlying type (boolean) so it works fine for me).
gr. Martin
					I have created a subclass of the PopupTextAreaItem to be used in inline grid editing. I noticed however that tabbing out of the popup does not work. After checking the source code I noticed these lines in the ListGrid:
Code:
	
	_popUpTextAreaEditorTypes:{popUpTextArea:true, PopUpTextAreaItem:true},
        //>PopUpTextAreaItem    
        // For pop-up textArea type editors, apply the keyPress handling code to the textArea<b></b>
        if (this._popUpTextAreaEditorTypes[eT] == true) {
}
Is there a solution for this? I am using the nightly build of the 11th of January.
Btw, the above remark also applies to the _checkboxEditorTypes (although accidentally the code checks for the underlying type (boolean) so it works fine for me).
gr. Martin

Comment