Search found 5 matches
- Wed Apr 24, 2013 10:13 am
- Forum: Help & Discussion
- Topic: Theming UberGrid
- Replies: 5
- Views: 6844
Re: Theming UberGrid
Hi, are there examples of how to theme the grid: I'd like to change background color of header, rows, height of header, and also changing background color of first column. Thanks I did the same thing yesterday. Just make a copy of the ubergrid-all-debug.css, and see my changes below: .ubergrid-head...
- Tue Apr 23, 2013 4:41 pm
- Forum: Help & Discussion
- Topic: Nesting UbergridPanel
- Replies: 5
- Views: 7236
Re: Nesting UbergridPanel
In your MyApp.view.main.OmniSearchResultPanel's constructor: constructor: function(){ this.callParent(); } should be constructor: function(){ this.callParent(arguments); } To pass the provided configuration to the parent constructor. OMG, stupid mistake. Works like a charm :) thanks!
- Tue Apr 23, 2013 3:50 pm
- Forum: Help & Discussion
- Topic: Nesting UbergridPanel
- Replies: 5
- Views: 7236
Re: Nesting UbergridPanel
Also, if I call upon the gridpanel directly (by adding it to the viewport) it displays nicely, with data. If I put it in a container of any sorts, the headers are shown but no data is shown.
- Tue Apr 23, 2013 3:41 pm
- Forum: Help & Discussion
- Topic: Nesting UbergridPanel
- Replies: 5
- Views: 7236
Re: Nesting UbergridPanel
Yeah the store should be moved, its legacy code while trying out different approaches. If I switch to a default panel with this: { //xtype : 'omnisearchresultpanel', xtype: 'panel', flex : 1, html: 'plain text' } The flex attribute works and the parent panel is cut nicely in half with both panels ta...
- Tue Apr 23, 2013 3:27 pm
- Forum: Help & Discussion
- Topic: Nesting UbergridPanel
- Replies: 5
- Views: 7236
Nesting UbergridPanel
So I just bought this awesome product but i'm having issues using this in an nested configuration. I have a Tabpanel consisting of two panels in a vbox layout. However, whenever I run this the bottom one (the grid) is stuck to the bottom, not adhering the flex option. See my code for details: Main t...