¿Cómo hacer scroll vertical de tabla SWT programáticamente? Estoy implementando la función de búsqueda sobre la mesa. Cuando se encuentra un artículo, se desplazará al elemento encontrado.Scrolling SWT Table programmatically
11
A
Respuesta
30
Hay varios métodos que puede intentar:
Table.showItem(TableItem)
Table.showSelection()
Table.showColumn(TableColumn)
Table.setTopIndex(int)
Aparte de eso, se sugiere emplear una TableViewer de JFace. Entonces será desplaza a un elemento con este método:
TableViewer.reveal(Object)
0
que no se sabe muy bien lo que necesita la búsqueda, pero también podría considerar la filtración de la mesa para llegar a su elemento deseado (algo así como una búsqueda rápida).
Hay que ver: http://eclipsesource.com/blogs/2012/10/26/filtering-tables-in-swtjface/
Espero que ayuda, saludos!
Cuestiones relacionadas
- 1. ViewPager programmatically scrolling
- 2. programmatically create new table with ios-core data
- 3. Android - ViewPager scrolling resets
- 4. WPF SelectedItem and Scrolling
- 5. IE9 iframe scrolling
- 6. UIScrollView Infinite Scrolling
- 7. JQuery Scrolling/Paging Tabs
- 8. Crear TableLayout programmatically
- 9. jQuery Infinite Scrolling/Lazy Loading
- 10. UIScrollview llamando a superviews layoutSubviews when scrolling?
- 11. Visual Studio 2010 Kinetic/Smooth Scrolling
- 12. C# create report programmatically
- 13. Android install apk programmatically
- 14. Establecer NSWindow Size programmatically
- 15. configurar un RadioGroup programmatically
- 16. Android Button Position Programmatically
- 17. Restablecer UISearchbar programmatically
- 18. UISegmentedControl value changed programmatically
- 19. Establecer título UITabBarItem programmatically?
- 20. Crear ListView programmatically
- 21. Crear ListView programmatically
- 22. Establezca NSIndexPath programmatically
- 23. ¿Comprobar disponible heapSize programmatically?
- 24. Modifique endpoint ReaderQuotas programmatically
- 25. Crear un UISearchDisplayController programmatically
- 26. Android Factory Reset Programmatically
- 27. Configuración programmatically closereason
- 28. change NSSlider Value programmatically
- 29. Creando logger logger programmatically
- 30. UISegmentedControl text programmatically
Sí. Encontré la solución cavando anoche en documentos swt antes de leer tu respuesta. Por cierto, muchas gracias. – kinclong2
Si esta es la solución correcta, márquela como aceptada para que otros desarrolladores que enfrenten la misma dificultad puedan verla como tal. –