Search found 27 matches
- Fri Sep 13, 2013 9:41 pm
- Forum: Help & Discussion
- Topic: Dynamic Ubergrid
- Replies: 7
- Views: 7705
Re: Dynamic Ubergrid
This is more of a sencha question, but I was hoping you can help me out since it is using ubergrid. With the dynamic change of ubergrid I need to basically, Create Store Set Model Set ubergrid store Set ubergrid columns. repeat for different data. Is there any way to programatically create a new mod...
- Fri Sep 13, 2013 5:03 pm
- Forum: Help & Discussion
- Topic: Highlighting a row on tap
- Replies: 6
- Views: 7314
Re: Highlighting a row on tap
Thanks mats,
This helped and worked for me. Similar to this idea, any thoughts on how to implement a checkbox to the list?
I was thinking about adding an additional column that would turn on or off a checkbox when clicked and would probably like to use the sencha checkbox image.
Any thoughts?
This helped and worked for me. Similar to this idea, any thoughts on how to implement a checkbox to the list?
I was thinking about adding an additional column that would turn on or off a checkbox when clicked and would probably like to use the sencha checkbox image.
Any thoughts?
- Wed Sep 11, 2013 8:00 pm
- Forum: Help & Discussion
- Topic: Dynamic Ubergrid
- Replies: 7
- Views: 7705
Re: Dynamic Ubergrid
awesome that works!
thanks again for the awesome support!
thanks again for the awesome support!
- Wed Sep 11, 2013 7:30 pm
- Forum: Help & Discussion
- Topic: Dynamic Ubergrid
- Replies: 7
- Views: 7705
Re: Dynamic Ubergrid
mats, Two questions. 1. Is it possible to just change the store and refresh data? It doesn't seem to be working for me. 2. How would you add ubergrid programmatically? I've tried the following var ubergrid = Ext.create('Ext.Panel',{ extend: 'Ext.Panel', alias: 'widget.ubergrid', store:'MyStore', col...
- Fri Sep 06, 2013 11:16 pm
- Forum: Help & Discussion
- Topic: Highlighting a row on tap
- Replies: 6
- Views: 7314
Re: Highlighting a row on tap
mats,
Could you explain how to get the target element? Looking at the event, there is no parameter that will help get the specific row dom. It only has row and cell index data.
Could you explain how to get the target element? Looking at the event, there is no parameter that will help get the specific row dom. It only has row and cell index data.
- Fri Sep 06, 2013 9:10 pm
- Forum: Help & Discussion
- Topic: Highlighting a row on tap
- Replies: 6
- Views: 7314
Re: Highlighting a row on tap
I would also like to request this feature.
The ability to either highlight a row or include a radio button would be perfect for me.
The ability to either highlight a row or include a radio button would be perfect for me.
- Wed Jul 17, 2013 3:04 pm
- Forum: Help & Discussion
- Topic: rowHeight breaks table when buffered set to true
- Replies: 6
- Views: 7072
Re: rowHeight breaks table when buffered set to true
Whenever I set the rowHeight the height of the row does change, but the table list becomes infinite. The last row item of the list isn't the last, and a lot of blank space follows after the last item.
- Fri Jul 12, 2013 12:41 am
- Forum: Help & Discussion
- Topic: rowHeight breaks table when buffered set to true
- Replies: 6
- Views: 7072
Re: rowHeight breaks table when buffered set to true
Actually, the table is broken even when the buffered is set to false. If I change rowHeight at all, the list looks like there is no end.
- Fri Jul 12, 2013 12:36 am
- Forum: Help & Discussion
- Topic: rowHeight breaks table when buffered set to true
- Replies: 6
- Views: 7072
rowHeight breaks table when buffered set to true
Found another bug for you guys :) When setting ubergrid with buffered set to true, changing the rowHeight breaks the table. If you set it back to false, everything works fine. Ext.define('MyApp.view.SimpleUberGrid', { extend: 'Ext.Panel', config: { layout: { type: 'fit' }, items: [ { xtype: 'ubergri...
- Wed Jul 10, 2013 4:46 pm
- Forum: Help & Discussion
- Topic: Add and remove main columns from grid.
- Replies: 8
- Views: 8107
Re: Add and remove main columns from grid.
In my case the code I've been testing with is: Ext.define('MyApp.view.MyPanel', { extend: 'Ext.Panel', requires: [ 'MyApp.view.MyToolbar' ], config: { layout: { type: 'fit' }, items: [ { xtype: 'ubergrid', columns: [ { header: 'name', dataIndex: 'name', width: 100, locked: true }, { header: 'field',...