Search Type: Posts; User: jonaldomo
Search: Search took 0.02 seconds.
-
13 Sep 2011 6:17 AM
- Replies
- 5
- Views
- 947
Your errors will be in the console. You are probably going to want to install firebug http://getfirebug.com/logging
-
13 Sep 2011 6:14 AM
- Replies
- 2
- Views
- 589
http://docs.sencha.com/ext-js/4-0/source/Paging.html
-
13 Sep 2011 6:11 AM
- Replies
- 0
- Views
- 272
Is there a best way to add a filter to a store, so that the store's first load call contains the filter?
I've tried adding it to the filter configuration like so:
{dataIndex: 'status', type:... -
12 Sep 2011 11:39 AM
- Replies
- 2
- Views
- 1,246
Did you ever figure this out?
I get a similar error from the same line:
Uncaught TypeError: Object Mon Sep 12 2011 00:00:00 GMT-0500 (Central Daylight Time) has no method 'format'
If i just... -
6 Sep 2011 10:27 AM
- Replies
- 3
- Views
- 492
Thanks for bringing this to my attention. I will try it in future projects. For the project I was working on, I downgraded from 4.0.2a to 4.0.1 and the problem was resolved.
-
27 Jul 2011 9:19 PM
- Replies
- 3
- Views
- 492
Im having the same bug as reported here http://www.sencha.com/forum/showthread.php?138393-Scroll-bar-in-grid-panel-stops-responding&
Ive tried invalidateScroller, determineScrollbars,... -
21 Jul 2011 1:31 PM
- Replies
- 2
- Views
- 640
I'm not too sure what situation you are working with, but could you call max on the grid's store?
grid.getStore().max() -
21 Jul 2011 1:29 PM
- Replies
- 2
- Views
- 485
check out writeAllFields
-
9 Jul 2011 12:08 PM
- Replies
- 1
- Views
- 538
I've put together a PHP script that takes a database schema and generates the html, js, and php to display a grid for each table within the schema.
It's not complete, for example it makes every... -
6 Jul 2011 2:16 PM
- Replies
- 2
- Views
- 790
So my application is going to have to work in IE, Mozilla, Chrome etc so since localStorage requires HTML5 that idea is out the window.
Just to give you an idea after browsing around a few grids,... -
5 Jul 2011 6:42 AM
Jump to post Thread: Ext.ux.grid.column.Checkbox by jonaldomo
- Replies
- 4
- Views
- 2,128
I still appreciate people like you submitting their work in, I was just curious if there was some functionality that I was missing.
-
3 Jul 2011 9:09 PM
- Replies
- 37
- Views
- 21,399
Thanks, I really appreciate it. My datetime column looks like this:
},{
header: 'Begin Eff',
readOnly: false,
dataIndex: 'beginEffectiveDate',
sortable: true,... -
3 Jul 2011 6:48 AM
Jump to post Thread: Ext.ux.button.AutoRefresher by jonaldomo
- Replies
- 4
- Views
- 3,277
Awesome. I've included this on my PagingToolbar for all my grids.
itemId: 'refresh',
tooltip: me.refreshText,
overflowText: me.refreshText,
iconCls: Ext.baseCSSPrefix + 'tbar-loading',... -
2 Jul 2011 1:35 PM
- Replies
- 1
- Views
- 494
That works with CellEditing.
-
2 Jul 2011 8:02 AM
Jump to post Thread: RowEditor help by jonaldomo
- Replies
- 3
- Views
- 542
When a store's sync is called it looks at the store's proxy api. Sync is going to hit update and send the records to update through POST variables.
... -
1 Jul 2011 2:08 PM
Jump to post Thread: DataBinding in ExtJs 4 by jonaldomo
- Replies
- 8
- Views
- 9,185
http://dev.sencha.com/deploy/ext-4.0.2/examples/grid/binding-with-classes.html
-
1 Jul 2011 2:06 PM
- Replies
- 3
- Views
- 1,449
Ext.define('My.Component', {
constructor: function(){
}
afterrender: function(){
console.log(this.getWidth());
}
}); -
1 Jul 2011 1:56 PM
Jump to post Thread: RowEditor help by jonaldomo
- Replies
- 3
- Views
- 542
I have added a save button to the toolbar with a handler that calls sync() on the store.
handler: function(){
store.sync();
}
When you say inline editing do you mean you are using... -
1 Jul 2011 1:51 PM
- Replies
- 1
- Views
- 393
you can use labelCls to change the font size
-
1 Jul 2011 1:43 PM
- Replies
- 2
- Views
- 683
Google Chrome has an optimized javascript engine called v8. It's a beast compared against internet explorer. Here is an old speed test, new speed tests are similar.
... -
1 Jul 2011 1:39 PM
- Replies
- 1
- Views
- 835
Have you tried defining the store and creating it inside your defined panel. Similar to how you nested the panel inside the window.
-
1 Jul 2011 1:35 PM
Jump to post Thread: List Filter Problem in Grid by jonaldomo
- Replies
- 1
- Views
- 973
Hmm, I couldn't get this working either. I'll show the code I am using and hopefully someone can help us both out at the same time.
cgivre, does your code look similar?
My filter:
... -
1 Jul 2011 1:24 PM
Jump to post Thread: Ext.ux.grid.column.Checkbox by jonaldomo
- Replies
- 4
- Views
- 2,128
What makes it different from Ext.ux.CheckColumn as seen here: http://dev.sencha.com/deploy/ext-4.0.2a/examples/grid/cell-editing.html?
Thanks. -
29 Jun 2011 7:55 PM
Jump to post Thread: Stores and exceptions by jonaldomo
- Replies
- 2
- Views
- 735
I don't see 'exception' as an available listener to the store at http://docs.sencha.com/ext-js/4-0/#/api/Ext.data.Store.
You could use the captureEvents function, I forgot where I got it. But it... -
29 Jun 2011 7:49 PM
- Replies
- 2
- Views
- 331
I assume you are trying to display the information in a grid. I think you should start at the example in the documentation at http://dev.sencha.com/deploy/ext-4.0.2/examples/grid/array-grid.html
...
Results 1 to 25 of 47
