go to settings > devices > keyboard
look for the keyboard shortcut for "Switch windows"
set this to the shortcut Alt+Tab (this will overwrite the old shortcut)
If you now press Alt+Tab you will be able to directly select all open windows without grouping into the different apps.
public class LazyLoad extends WebPage {
public LazyLoad() {
IColumn[] columns = new IColumn[] {
new PropertyColumn(new Model("col1"), "intValue"),
new PropertyColumn(new Model("col2"), "class") };
ISortableDataProvider dataProvider = new SortableDataProvider() {
public int size() {
return 300000;
}
public IModel model(Object object) {
return new Model((Integer) object);
}
public Iterator iterator(int first, int count) {
return loadEntriesFromDatabase(first, count).iterator();
}
private List<Integer> loadEntriesFromDatabase(int first, int count) {
List<Integer> items = new ArrayList<Integer>();
for (int i = 0; i < count; i++) {
items.add(new Integer(first + i));
}
return items;
}
};
DefaultDataTable t = new DefaultDataTable("t", columns, dataProvider, 3);
add(t);
}
}
The SQL OFFSET keyword is evil. It basically behaves like SLEEP in other programming langauges: the bigger the number, the slower the execution. Fetching resul…
N. Trần, M. Staat, and G. Stavroulakis. 11th World Congress on Computational Mechanics (WCCM XI), 5th European Conference on Computational Mechanics (ECCM V), 6th European Conference on Computational Fluid Dynamics (ECFD VI) July 20-25, 2014, Barcelona, Spain
, page 1821--1832. European Community on Computational Methods in Applied Sciences (ECCOMAS), (2014)
M. Staat, M. Schwartz, H. Lang, K. Wirtz, and M. Heitzer. Pressure Vessel Technology 2003. Proceedings ICPVT-10, July 7 10, 2003 Vienna, Austria
, page 59--65. ÖGS, Österreichische Gesellschaft f\ü\r Schwei\ß\technik, Wien, (2003)
T. Trần, and M. Staat. 11th World Congress on Computational Mechanics (WCCM XI), 5th European Conference on Computational Mechanics (ECCM V), 6th European Conference on Computational Fluid Dynamics (ECFD VI) July 20-25, 2014, Barcelona, Spain
, page 1896--1907. European Community on Computational Methods in Applied Sciences (ECCOMAS), (2014)
M. Staat, and M. Heitzer. Proceedings of 7th German-Japanese Joint Seminar on Research in Structural Strength and NDE-Problems in Nuclear Engineering
, page 4.3.1--4.3.19. Stuttgart, Staatliche Materialpüfungsanstalt Universität Stuttgart, Staatliche Materialprüfungsanstalt, Stuttgart, (September 1997)
T. Tran, and M. Staat. Proceedings European Congress on Computational Methods in Applied Sciences and Engineering (ECCOMAS 2012) Vienna, Austria, September 10-14, 2012
, page 4787--4793. European Community on Computational Methods in Applied Sciences (ECCOMAS), (September 2012)