Bug 493865 - DataGrid:EditableText of TableCells still remain (null) after doing deleteText
Summary: DataGrid:EditableText of TableCells still remain (null) after doing deleteText
Status: NEW
Alias: None
Product: UI Automation
Classification: Mono
Component: Winforms - General (show other bugs)
Version: Release 1.0
Hardware: x86 openSUSE 11.1
: P4 - Low : Normal
Target Milestone: ---
Assignee: E-mail List
QA Contact: E-mail List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-10 06:47 UTC by calen chen
Modified: 2009-04-15 03:27 UTC (History)
0 users

See Also:
Found By: ---
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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?