Search Type: Posts; User: krullj
Search: Search took 0.03 seconds.
-
24 Apr 2013 7:28 AM
- Replies
- 19
- Views
- 3,338
I haven't tested this fix with versions other than 4.1.3, but it seems to be working great.
The code below simply pulls the records out of the store in the order that they are grouped, then... -
22 Apr 2013 4:55 AM
- Replies
- 4
- Views
- 140
Sorry, I should have been more specific in my first post. Basically anything another person would need to set up a test to see if they can reproduce your problem. For instance, your store has a model...
-
21 Apr 2013 12:43 PM
- Replies
- 4
- Views
- 140
It looks like the "2" might be the ID of the record you're trying to use PUT or DELETE on. That's just how REST works. It's helpful that you put the ExtJS version, but overall you didn't provide...
-
21 Apr 2013 9:38 AM
- Replies
- 5
- Views
- 167
If you want to edit the actual ExtJS properties of the field, you'll need to loop through the properties of the field (excluding functions) and put them into the property grid's store. To...
-
21 Apr 2013 6:32 AM
Jump to post Thread: ExtJS and Internet Explorer 6 ! by krullj
- Replies
- 28
- Views
- 795
I was wondering what the reason is that you need IE6 support to begin with. According to http://www.ie6countdown.com/ , less than 7% of the entire world uses IE6, and the majority of the users are...
-
4 Apr 2013 6:04 PM
Jump to post Thread: Check if row is expanded? by krullj
- Replies
- 1
- Views
- 82
If you look in the rowexpander source, it looks like they check whether or not a row is expanded in the following:
isCollapsed = row.hasCls(me.rowCollapsedCls)
You can see the rest of it here,... -
4 Apr 2013 5:36 PM
- Replies
- 1
- Views
- 74
Do you have to have all the functionality of a window? You could make the form panel be a floating form panel instead. You could probably even give it a header and some tools to give it the usual...
-
2 Apr 2013 11:45 PM
- Replies
- 4
- Views
- 198
Figured it out. If you override the class that inherits the Labelable mixin, it works fine.
Ext.define('MyOverride', {
override: 'Ext.form.field.Base',
msgTarget: 'under'
}); -
2 Apr 2013 4:39 AM
Jump to post Thread: Regarding Paging by krullj
- Replies
- 1
- Views
- 91
You can use whatever server side language you want, including JSP. Paging has to do with the database, and not the server side language, so your database has to support "limit" and "offset" or...
-
1 Apr 2013 6:19 PM
- Replies
- 4
- Views
- 198
Honestly, it looks like it should work, but you may want to try the newer format (and make absolutely sure that your override is being applied).
Just to be safe, try this format, adjusting the... -
1 Apr 2013 3:20 PM
Jump to post Thread: How to set tpl config for comboBox by krullj
- Replies
- 1
- Views
- 109
Please see here: http://docs.sencha.com/ext-js/4-2/#!/api/Ext.form.field.ComboBox-cfg-tpl
-
31 Mar 2013 8:29 PM
- Replies
- 1
- Views
- 87
According to the docs, getAssociatedData() returns and object and not a store, so you'll probably have to first put that data into a store and then pass it as a parameter to valueGrid.reconfigure()....
-
31 Mar 2013 5:18 AM
- Replies
- 4
- Views
- 137
Ah, okay. I see now. I was confused about the second objective you have.
I believe you're going to have to implement a solution without using the CheckboxModel. The selection of rows is tied to... -
30 Mar 2013 9:43 PM
- Replies
- 4
- Views
- 137
Try adding the following config to your selection model:
checkOnly: false -
30 Mar 2013 4:42 PM
Jump to post Thread: How can I add store to this grid by krullj
- Replies
- 7
- Views
- 299
Glad to help, zeeshanjeelani. As long as you define the store before your "holiday" class, you should be able to set the store property of the grid to the class name you give the store. In that case...
-
30 Mar 2013 8:29 AM
Jump to post Thread: How can I add store to this grid by krullj
- Replies
- 7
- Views
- 299
After you create the store you can attach it to the grid by using the following method:
// this code assumes you already have store defined and assigned to the "store" variable
var... -
30 Mar 2013 1:24 AM
Jump to post Thread: store.getById too slow by krullj
- Replies
- 3
- Views
- 198
How many records are in the store that you're using getById() on? I'm wondering why it's being slow for you. If you really want to map the records, you could do it when the store loads (or some other...
-
30 Mar 2013 12:46 AM
- Replies
- 1
- Views
- 107
I think your best bet would be to remove the class that gets applied to read-only fields.
Here's what you need to do in your case:
this.PForm.findField('field1').removeCls('x-form-readonly');
... -
30 Mar 2013 12:31 AM
Jump to post Thread: focusing default texstfield by krullj
- Replies
- 2
- Views
- 104
@zeeshanjeelani, I tested your code almost entirely by itself and it worked fine. My guess is something else is happening after the rendering of the textfield that is making it lose focus. Try...
-
30 Mar 2013 12:22 AM
- Replies
- 1
- Views
- 190
When you're firing an event, you need to pass the object as the second parameter. In your case, you would probably want to do this:
me.fireEvent('datachanged', me);
Hopefully that fixes your... -
30 Mar 2013 12:12 AM
- Replies
- 3
- Views
- 186
What you can do is to simply use this one component to add text before and after the input field. In my test, the text showed up above and below the input field, but it's probably just a styling...
-
29 Mar 2013 11:54 PM
Jump to post Thread: How can I add store to this grid by krullj
- Replies
- 7
- Views
- 299
Can you please specify if you are trying to add a store using the Sencha Architect tool or if you want to simply add it manually?
-
3 Dec 2012 9:09 AM
- Replies
- 5
- Views
- 1,065
I finally found the solution to be, in my case, this:
sencha compile --classpath=ext/src,ext/examples/ux,app/model,app/store,app/view,app/controller,app/app.js union -recursive -file app/app.js... -
30 Nov 2012 10:37 AM
- Replies
- 5
- Views
- 1,065
Thank you for the responses.
In terms of using
sencha app refresh
I am unable to do that as the application was not initially created with SenchaCmd. If there's a way to force the refresh,... -
29 Nov 2012 9:21 AM
- Replies
- 5
- Views
- 1,065
This problem has been solved. Solution in Post #6.
In short, my application works great with Ext.Loader enabled but not built. However, after disabling Ext.Loader and building my application, it...
Results 1 to 25 of 25
