Search Type: Posts; User: jbeaven
Search: Search took 0.03 seconds.
-
19 Oct 2012 7:16 AM
Jump to post Thread: Marking a Record Field Dirty? by jbeaven
- Replies
- 1
- Views
- 274
So looking through the ext code I found this way to force a field to be marked as modified
record.modified[name] = record.data[name]; Just in case anyone had trouble finding that in the future. -
19 Oct 2012 6:37 AM
Jump to post Thread: Marking a Record Field Dirty? by jbeaven
- Replies
- 1
- Views
- 274
Is there a way anyone knows of to mark a record field dirty? I'm working on editing an event record and I can't just say
rec.markDirty() because there are fields in the record that our controlling... -
10 Oct 2012 6:52 AM
Jump to post Thread: What is Ext.lib? by jbeaven
- Replies
- 1
- Views
- 327
So I am implementing an override (that I don't agree with but that's not my decision) and I came across
x = Ext.lib.Event.getPageX(e), while trying to get my work going.
I was not familiar with... -
16 May 2012 11:43 AM
- Replies
- 11
- Views
- 2,740
I realize I'm a few years behind on this issue but I'm having a similar problem. I have an EditorGridPanel that has a textArea laid on the rows via the viewConfig. The problem is that we can...
-
3 May 2012 9:04 AM
- Replies
- 3
- Views
- 423
Ok...so for those of you playing along at home a co-worker thought to look at what data was getting sent back after the save/reload process was getting called. And while the save worked the reload...
-
3 May 2012 5:45 AM
- Replies
- 3
- Views
- 423
No one else has experienced anything like this? I'm kinda at my wit's end here and am starting to think destruction and recreation of the GridPanel is the only way to have this thing reload...
-
1 May 2012 10:09 AM
- Replies
- 3
- Views
- 423
No thoughts anyone? Not even an, "Only idiots use IE," remark?
-
30 Apr 2012 4:01 PM
- Replies
- 3
- Views
- 423
So the code that I have seems to work fine in Firefox but in IE the grid doesn't refresh and show the new grouping when we make a change to the store. We're changing an Active/Inactive flag in the...
-
1 Feb 2012 11:18 AM
Jump to post Thread: GroupingStore Code Help by jbeaven
- Replies
- 4
- Views
- 630
Wow...sweet that might be exactly what I'm looking for. Thanks for the heads up and information on that.
-
1 Feb 2012 11:14 AM
Jump to post Thread: GroupingStore Code Help by jbeaven
- Replies
- 4
- Views
- 630
No I need to emulate the way that the groups are collapsible for each record. So you'd have the 2-4 groups that can collapse but then each record inside the groups can be collapsed as well.
Edit:... -
1 Feb 2012 10:56 AM
Jump to post Thread: GroupingStore Code Help by jbeaven
- Replies
- 4
- Views
- 630
Hi all,
We're using Ext pretty much swimmingly. Unfortunately I've been asked to essentially replicate the grouping store functionality (exspansion/contraction) for each record in the store.
... -
27 Oct 2011 6:08 AM
- Replies
- 4
- Views
- 807
var form = Ext.DomHelper.append(document.body, { tag:'form', method:'post', action:url, target:id });
I'd check the documentation for DomHelper but you could... -
26 Oct 2011 10:08 AM
- Replies
- 4
- Views
- 807
Put an exception listener on the proxy?
listeners: {
exception: function(proxy, string, action, options, response, args){
if (string... -
26 Oct 2011 9:58 AM
- Replies
- 0
- Views
- 383
So I'm not new to ExtJS per se but I am new to trying to debug server interactions with Ext.
I have my store built with a proxy like so:
this.stateStore = new Ext.data.JsonStore({
... -
14 Oct 2011 12:09 PM
Jump to post Thread: Column State in a Grid by jbeaven
- Replies
- 0
- Views
- 464
This may be impossible but I don't think so...I think I'm too stupid.
Our requirements have us saving "user preferences" essentially they want our Ext components to be stateful. Easy right... -
12 Oct 2011 8:40 AM
Jump to post Thread: Proxy API and how to call by jbeaven
- Replies
- 0
- Views
- 385
Hey all...this is probably an easy question but I have my Proxy created on my JsonStore with the api as such:
proxy: new Ext.data.HttpProxy({
api: {
read :... -
18 Jul 2011 5:47 AM
- Replies
- 2
- Views
- 483
No....I'll check the docs and see if that'll work. Thanks for the heads up.
-
15 Jul 2011 9:10 AM
- Replies
- 2
- Views
- 483
So I have a Window. Inside this Window are 3 panels arranged via the border layout. The first panel is a formpanel, the second a panel, and the third is another formpanel.
When this window is... -
21 Jun 2011 7:40 AM
Jump to post Thread: FormPanels inside Panel issue by jbeaven
- Replies
- 3
- Views
- 641
So...that did the trick fixing the Ext generated error I was getting but how would someone create ids or get the data for that object without the id?
Edit: Nevermind. I believe itemId will do... -
21 Jun 2011 6:43 AM
Jump to post Thread: FormPanels inside Panel issue by jbeaven
- Replies
- 3
- Views
- 641
What do you mean by static ids?
Wait...because the ids are static Ext would be getting confused or something during the creation process etc.
DRAT!!!
I had a similar thought like that for... -
20 Jun 2011 10:06 AM
Jump to post Thread: FormPanels inside Panel issue by jbeaven
- Replies
- 3
- Views
- 641
So I'm creating form panels to display information on the fly. I created my form panel object thusly:
NewFormPanel = Ext.extend(Ext.FormPanel, {
constructor: function(config) {
... -
3 May 2011 10:59 AM
- Replies
- 0
- Views
- 685
This is probably a really simple question but one that as I've thought about might not be as simple as I once thought.
We have an eventStore from extensible (which is just a regular store with... -
22 Apr 2011 10:48 AM
Jump to post Thread: Change grouping in grouping view by jbeaven
- Replies
- 3
- Views
- 511
So...I found the solution and I was WAY off base. For those trying to find the solution:
...
handler: function () {store.clearGrouping(); store.groupBy('name');}
...
This is if the store... -
22 Apr 2011 9:20 AM
Jump to post Thread: Change grouping in grouping view by jbeaven
- Replies
- 3
- Views
- 511
Any news on this? I'm having the same question and was thinking I could resolve my problem the same way but am running into the same problem.
I read from Condor on another forum post that you... -
7 Apr 2011 5:56 AM
Jump to post Thread: Combobox Form submission issue by jbeaven
- Replies
- 3
- Views
- 537
Wow...thanks for the info. I never would have known that based on the API. I assumed Name was one of those things you just always had for good practice and that hiddenName ensured the data was...
Results 1 to 25 of 65
