Bug 493865

Summary: DataGrid:EditableText of TableCells still remain (null) after doing deleteText
Product: [Mono] UI Automation Reporter: calen chen <cachen>
Component: Winforms - GeneralAssignee: E-mail List <mono-a11y-bugs>
Status: NEW --- QA Contact: E-mail List <mono-a11y-qa>
Severity: Normal    
Priority: P4 - Low    
Version: Release 1.0   
Target Milestone: ---   
Hardware: x86   
OS: openSUSE 11.1   
Whiteboard:
Found By: --- Services Priority:
Business Priority: Blocker: ---
Marketing QA Status: --- IT Deployment: ---

Description calen chen 2009-04-10 06:47:46 UTC
REPRO:

1. run uia2atk/test/samples/datagrid.py
2. run accerciser, expand TreeTable and browse to any item (Edit*, Read* or Box*) with 'table cell' role on the left treeview
3. under 'interface viewer', expand 'Text(Editable)', delete all texts
4. or browse to any table cell, then in IPython, insert:
    a = acc.queryEditableText()
    a.deleteText(0, 4) #4 in here means offset

RESULTS:

TableCell's text return to '(null)' under 'Text(Editable') textbox in accerciser

EXPECTED RESULTS:

Empty textbox is expected, '(null') shouldn't being shown
Comment 1 Brad Taylor 2009-04-14 19:39:10 UTC
Someone should verify this behavior against a Gtk+ app.
Comment 2 calen chen 2009-04-15 03:27:15 UTC
Hi Brad, I have tried gtkliststore.py that TableCell under 'String' column doesn't implemented EditableText event thought those tablecells is setted with "set_property('editable', True)", I think it is a bug, what do you think?