Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 14th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 73  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to set row height Sencha Touch List
  2. $global-row-height: 100px;
  3.        
  4. .x-list .x-list-item {
  5.    min-height: 100px;
  6. }
  7.        
  8. .myList .x-list-item {
  9.    min-height: 100px;
  10. }
  11.        
  12. var list = new Ext.List({
  13.    cls: 'myList',
  14.    ...
  15.    ...
  16. });