Bugzilla – Bug 493865
DataGrid:EditableText of TableCells still remain (null) after doing deleteText
Last modified: 2009-04-15 03:27:15 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
Someone should verify this behavior against a Gtk+ app.
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?