6
edits
mNo edit summary |
|||
| Line 61: | Line 61: | ||
* Events do not apply to a static HTML table. | * Events do not apply to a static HTML table. | ||
= Implementations of | = Implementations of list tables in Win apps = | ||
For multi col lists there are various implementations. | For list tables (multi col lists) there are various implementations. | ||
# Native Win like File Explorer or File Open | # Native Win like File Explorer or File Open: The acc name is the text from the first col. The acc desc contains the remaining column text with the text from each column prefixed with the text from the col header. The last child of the list is a WINDOW with a child of LIST with children of COLUMN_HEADERs. Those col headers have acc names and actions named "Click". Larry and I would perfer "Sort". For some reason I can't navigate to that last child with Inspect or the navigation menu item of AccExplorer - but AccExplorer does show it as the last child. I don't think there is any directly obtainable n of m info without writing some app specific code, i.e. accounting for the extra non list item sibling. | ||
# Eclipse | # Eclipse: Just like the native list but the list of col headers is the prior sibling to the list of list items. | ||
# Firefox | # Firefox: The full list item (all the col data) is in the acc name, n of m info is in the acc desc, the list of col headers is the first child of the main list, the col headers have actions named "Click". And I can nav to the list of col headers with Inspect. | ||
# SODC | # SODC: The acc name is the full line of text (all the col data). The list has one next sibling that is a COLUMN_HEADER with no name and no action. The n of m info is coded in IA2::groupPosition. | ||
edits