For anyone from Sencha Support - what is going on?
All of these from the latest ExtReact 7.1.0
None of the examples from the sencha docs work!
Here's an example from ExtButton
Even...
Type: Posts; User: abhijit
For anyone from Sencha Support - what is going on?
All of these from the latest ExtReact 7.1.0
None of the examples from the sencha docs work!
Here's an example from ExtButton
Even...
In ExtReact, can we have stores at the app level like in ExtJs?
Found the solution. I need to trap events on the panel and sync the event store. If anybody has a better solution, I would certainly like to know.
,items: [{
xtype: 'calendar-day'
,flex: 1...
I've put the calendar as items in a panel, as below. Both the calendars and the saved events load correctly. However, when I add or edit an event, the sync does not happen.
What am I missing?
...
I have a store with a proxy type as 'ajax'. I'm loading the data from a data.json file. On Windows, everything works in Chrome as well as on Android emulator.
On Mac, this works perfectly if I run...
If a grid is reconfigured, and the store is empty, then the horizontal scroll doesn't appear if the total width of columns exceeds the view width.
For instance, in the KitchenSink Reconfigure Grid...
I have a simple editor grid which has infinite scrolling enabled on it -
Ext.Loader.setConfig({
enabled: true,
disableCaching: true,
});
Ext.onReady(function() {
Thanks a lot for that comprehensive explanation. Seeing that error all of a sudden was more frustrating than worrying because of being unable to figure out how it appeared!
Thanks Mitchell, I got that. Is there any workaround that you can suggest?
Currently, I'm doing this -
Ext.StoreMgr.get('Master').on({
write: function(st, operation){
if...
I want to create a 'details' record on the server and send it back when the 'master' is created.
The 'details' record is NOT created in the front. Instead the 'master' record is created and...
.x-column-header-text {
display : block;
overflow : hidden;
text-overflow : ellipsis;
}
Seems to be resolved with the latest version of ExtJs
As mentioned, initial pointers given by Condor from this forum thread. This solution was for ExtJs 3.
After that I got a big hint from bogc in this forum thread.
Then I just tied everything...
I know. But that doesn't give the same effect as what I'm looking for. I did find this implementation by Condor for Extjs 3.
Although, there isn't a ExtJs 4 implementation, I'm trying to create...
Let's say a Grid has the same value in a particular column, like so -
39632
Would like to show the repeated rows in this fashion -
39633
After going through ExtJs code some more, especially the 'Ext.grid.Lockable' mixin, this is my understanding -
When you set 'enableLocking: true' on a Grid Panel, the 'Ext.grid.Lockable' mixin steps...
After some more head banging and going through 'Editing' plugin a little more in detail, I understood how the 'getEditor' and 'setEditor' functions are getting added.
So, this override seems...
I overrode the 'Ext.grid.plugin.CellEditing' plugin's two methods - 'startEdit' and 'getEditor'
However, I see that the plugin had 'getEditor()' in a number of places. As of now, those lines don't...
Scott,
I did what you suggested - the gird is now being reconfigured by the store's 'metachange' event.
However, the problem still persists - I still get the following error when I try to edit...
In our scenario, the column configurations is not known in the client and is received from the server.
Is there any other solution? Even if you can suggest me some other alternative ways to...
ExtJs 4.1.1
I posted this earlier but somehow don't see the thread. In case of duplication, please delete.
I have a EditorGrid which is created with reconfigure. The editorgrid consists of...
The grid renders perfectly, with the locked columns also. However, when I double-click on a cell to edit it, I get an error "columnHeader.getEditor is not a function".
This is generated in the...
Essentially, for a reconfigured grid, when no model is created explicitely, and the grid has cell editing plugin, when you change the data of any cell, the store update is not fired.
The store is...
Hi Don,
My store is created like this -
Ext.define('App.store.Dynamic', {
extend : 'Ext.data.Store'
,fields : []
,proxy : {
type : 'rest'
Hi,
I'm having a grid reconfigured dynamically. The first column has 'locked: true' and the grid has 'lockable: true' set.
However, during the reconfigure, it fails and gives a ...