Search Type: Posts; User: KRavEN
Search: Search took 0.04 seconds.
-
6 Oct 2010 2:40 PM
- Replies
- 1
- Views
- 750
If you want the background of the Checkbox column to look the same as Grid CheckboxSelectionModel just set the plugin cls to ux-lv-checkboxsel-wrap like this:
var checkcolumn =... -
6 Oct 2010 2:14 PM
- Replies
- 1
- Views
- 750
This works similar to Grid CheckboxSelectionModel except it's for a ListView.
Extract into the examples/list folder for a demo. (Must be behind a webserver to load the plants.xml file)
22718 -
28 Sep 2010 11:19 AM
- Replies
- 14
- Views
- 2,121
Also make sure none of your javascript variables or methods are named the same as a javascript function like var delete='delete'. This will work okay in firefox but not chrome or IE.
-
28 Sep 2010 8:09 AM
- Replies
- 0
- Views
- 534
Anyone have a modified ListView template to add vertical borders between ListView columns?
-
28 Sep 2010 7:44 AM
- Replies
- 1
- Views
- 1,170
I'm also seeing this issue. The problem is in ListView.onResize(). Here is the line:
if(Ext.isNumber(h)){
bdp.style.height = (h - hd.parentNode.offsetHeight) + 'px';
... -
24 Sep 2010 8:25 AM
Jump to post Thread: Ext.ux.list.ProgressColumn by KRavEN
- Replies
- 6
- Views
- 2,538
Just a warning. This will not render correctly in IE7 unless IE7 is in quirks mode. If you use a doctype things don't scroll correctly.
Edit:
I refactored to resolve the IE issue and I'll... -
21 Sep 2010 6:26 AM
Jump to post Thread: Ext.ux.GroupingListView by KRavEN
- Replies
- 7
- Views
- 2,537
Okay, I added the values.rs array similar to how GroupingView does it. I also added groupRenderer similar to GroupingView. Finally I renamed the ux to Ext.ux.list.GroupingListView to be more...
-
17 Sep 2010 6:16 AM
Jump to post Thread: Ext.ux.GroupingListView by KRavEN
- Replies
- 7
- Views
- 2,537
Anyone using this have any ideas on how to add an array of values objects for each grouping to the values object that is passed to the template?
With GroupingView you can access values.rs in the... -
16 Sep 2010 9:15 AM
Jump to post Thread: Ext.ux.GroupingListView by KRavEN
- Replies
- 7
- Views
- 2,537
This extension is for a ListView. You're asking about GroupingView for a grid. Go ask on the help forum.
-
15 Sep 2010 10:42 AM
Jump to post Thread: Ext.ux.GroupingListView by KRavEN
- Replies
- 7
- Views
- 2,537
If you add an overClass to the GroupingListView config like 'x-grid3-row-over' it doesn't behave properly. The row gets bigger because of the added border causing the list to jump a bit.
-
2 Sep 2010 8:12 AM
Jump to post Thread: Ext.ux.ListView.plugin.RowActions by KRavEN
- Replies
- 1
- Views
- 1,221
Screenshot:
22226 -
2 Sep 2010 8:10 AM
- Replies
- 1
- Views
- 1,553
Screenshot:
22225 -
2 Sep 2010 8:08 AM
Jump to post Thread: Ext.ux.list.ProgressColumn by KRavEN
- Replies
- 6
- Views
- 2,538
Screenshot:
22224 -
2 Sep 2010 8:05 AM
Jump to post Thread: Ext.ux.grid.plugin.ProgressColumn by KRavEN
- Replies
- 3
- Views
- 1,651
Here's a screenshot because I know how everyone loves screenshots
22223 -
2 Sep 2010 7:06 AM
Jump to post Thread: Ext.ux.grid.plugin.ProgressColumn by KRavEN
- Replies
- 3
- Views
- 1,651
Ext.ux.grid.plugin.ProgressColumn is a Grid plugin that shows a progress bar for the integer value of that column.
By default a number between 0 and 100 is expected but this can be changed by... -
1 Sep 2010 12:03 PM
Jump to post Thread: Ext.ux.list.ProgressColumn by KRavEN
- Replies
- 6
- Views
- 2,538
Ext.ux.list.ProgressColumn is a ListView column that shows a progress bar for the integer value of that column. By default a number between 0 and 100 is expected but this can be changed by setting...
-
27 Aug 2010 5:56 AM
- Replies
- 1
- Views
- 1,553
First I have Ext.ux.ListView.plugin.CheckColumn. This works similar to the example ux Grid CheckColumn plugin except it's for a ListView. It changes the store value and fires beforecheck and check...
-
26 Aug 2010 12:40 PM
Jump to post Thread: ListView Alternate row colors by KRavEN
- Replies
- 7
- Views
- 5,913
You could also provide tpl when defining the ListView
var listView = new Ext.ListView({
tpl : new Ext.XTemplate('<tpl for="rows">',
'<dl class="x-grid3-row {[xindex % 2 === 0 ? "" : ... -
26 Aug 2010 11:23 AM
Jump to post Thread: Ext.ux.ListView.plugin.RowActions by KRavEN
- Replies
- 1
- Views
- 1,221
Here's a plugin for ListView that does most of the same things that Saki's http://rowactions.extjs.eu/ does for a Grid. In fact it's mostly Saki's code re-factored to remove the grouping support and...
-
26 Aug 2010 4:41 AM
Jump to post Thread: Ext.ux.GroupingListView by KRavEN
- Replies
- 7
- Views
- 2,537
Thank you for sharing. I needed this.
-
27 Jul 2010 1:04 PM
- Replies
- 61
- Views
- 24,180
Thanks for this Condor. For anyone wanting to add Ext.ux.RowActions type functionality to a ListView here is an example:
new Ext.ux.ComponentListView({
store : lbStore,
autoHeight : true,... -
23 Jul 2010 9:20 AM
Jump to post Thread: Ext.ux.grid.ProgressColumn plugin by KRavEN
- Replies
- 33
- Views
- 19,980
it is an xtype:
Ext.reg('progresscolumn', Ext.ux.grid.ProgressColumn);
use xtype: 'progresscolumn'.
I'll do a 3.x version soon and make it a ptype. -
22 Jul 2010 6:13 AM
- Replies
- 253
- Views
- 97,984
Now I'm confused. I've been using the google repo but it looks like it's still using Ext.ux.layout.CardLayout(). I've tested and both
Ext.ux.layout.CardLayout() and Ext.layout.CardLayout() work... -
8 Jul 2010 11:19 AM
Jump to post Thread: JSON viewer by KRavEN
- Replies
- 9
- Views
- 7,519
Just a note, the Firefox plugin JSONView I linked before will mess with the iframe content you get when using Ext.data.Connection and file uploads.
If your server sends a json response (which it... -
7 Jul 2010 6:15 AM
Jump to post Thread: Field help text plugin. by KRavEN
- Replies
- 38
- Views
- 17,674
You can pass helpText as a config option for the field and use Ext.preg if you change the init to this:
init : function(f) {
f.helpAlign = this.align;
if ('object' != typeof...
Results 1 to 25 of 115
