Search Type: Posts; User: dedoz
Search: Search took 0.02 seconds.
-
7 Aug 2012 3:23 PM
- Replies
- 4
- Views
- 1,096
im trying to set the icon (image) of a tree node.
using the iconCls property (on the node) works fine when the node is collapsed,
but when i expand it shows a "open folder" icon , how can i... -
4 Aug 2012 12:38 PM
Jump to post Thread: grid - get columns display order by dedoz
- Replies
- 2
- Views
- 728
thanks
-
4 Aug 2012 8:41 AM
Jump to post Thread: grid - get columns display order by dedoz
- Replies
- 2
- Views
- 728
how to get grid columns in the order they are displayed currently ?
ex: i define a grid with column A and B, after render the user reorder them and now grid is playing B column first and second... -
9 Jul 2012 6:56 AM
- Replies
- 179
- Views
- 63,042
first i love this ux saved so much time, i dont use Ext.combo anymore all my combos are boxSelect ;d
question, is there a event when user clicks a (already) selected value, that is displayed as a... -
27 Jun 2012 3:51 AM
- Replies
- 2
- Views
- 332
remove( ) and removeAt() adds those removed records to the store removed records, so a sync triggers a delete request for those records, to the server side
removeAll() does not trigger this delete... -
24 Jun 2012 10:29 PM
- Replies
- 179
- Views
- 63,042
simplified the test case above, for this you dont need any other configured stores / models, this code is all the code needed to run the test case (do not click the trigger to open the list, the...
-
24 Jun 2012 10:14 PM
- Replies
- 179
- Views
- 63,042
im using ext 4.1.0-rc2 (note not 4.1.1-rc2) and boxSelect 2.0.1
i have a combo with a paged store, i have the config using a normal ext combo and this ux boxselect.
problems to set a record as... -
21 Jun 2012 11:45 PM
- Replies
- 1
- Views
- 397
hi , with this code
this.store1 = Ext.create('MUI.store.persona');
this.store1.getProxy().extraParams = {scope : 'minimal'};
this.store1.load();
... -
17 Jun 2012 6:23 PM
- Replies
- 1
- Views
- 465
Ext.tree.Panel has the method reconfigure() like Ext.grid.Panel, both uses Ext.view.Table
But when i use tree.Panel reconfigure, using the same columns as the original configuration (also not... -
11 Jun 2012 10:03 AM
Jump to post Thread: checkbox render without xtemplate by dedoz
- Replies
- 1
- Views
- 475
its posible to set the way a item is displayed in a form.combobox without using xtemplates ? (not using getInnerTpl which uses xtemplates only)
like the render property in grid columns, where you... -
11 Jun 2012 9:54 AM
- Replies
- 4
- Views
- 897
you can set another property as id with model config idProperty like "myId".
or you can manually set record to phantom (record.phantom = true) meaning records is new and wasnt been saved -
8 Jun 2012 5:35 AM
Jump to post Thread: Tri-state tree by dedoz
- Replies
- 13
- Views
- 4,478
cant make this to work D:
added a tristate field to my treeStore model.
Commented the 'shouldContinue' if.
still not working D:
----
nvm this thread is too old :d i tho it was for 4.1 and its... -
8 Jun 2012 4:13 AM
Jump to post Thread: checkbox third state by dedoz
- Replies
- 1
- Views
- 447
a third state (in checkbox) is checked but greyed, usually meaning not all of its childrens are checked, or "its not fully checked"
looking at the image.gif where checkboxes are drawn in ExtJs... -
8 Jun 2012 4:04 AM
Jump to post Thread: Store with Combo Box by dedoz
- Replies
- 3
- Views
- 510
post code where you "reload" the form (Second time loading of the form) maybe there, before showing your form for second time, you can do a store.load();
or if your combo data changes alot, then... -
7 Jun 2012 4:45 PM
- Replies
- 2
- Views
- 747
thanks
-
7 Jun 2012 1:08 PM
- Replies
- 2
- Views
- 747
is theres a UX for checkbox tree panel with 3 states checkbox?
i think i saw one but i cant find it in the forums :d -
7 Jun 2012 3:25 AM
Jump to post Thread: access associated data in XTemplate by dedoz
- Replies
- 1
- Views
- 553
I have 2 models and 2 stores defined.
Model A has many Model B.
I can load A's and display them using console.log(), also can display associated B's for each A using A model getters.
how can i... -
7 Jun 2012 2:03 AM
Jump to post Thread: How to re-show a closable Tab by dedoz
- Replies
- 2
- Views
- 452
i have a tabPanel with tabs and they are closable.
After i close a tab, what happens ?
a) tab control is destroyed and i have to rebuild it + add it to the tab panel again?
b) tab is just hidden... -
31 May 2012 11:44 AM
Jump to post Thread: loading static html by dedoz
- Replies
- 2
- Views
- 652
thank you
-
25 May 2012 3:19 PM
Jump to post Thread: loading static html by dedoz
- Replies
- 2
- Views
- 652
hi.
first. i know how to work with ext ajax and Ext.direct to send and retrieve data from the server.
now im trying to load static html pages.
I have some static html documents, they are my... -
8 May 2012 6:52 AM
Jump to post Thread: JSON in ajax request by dedoz
- Replies
- 2
- Views
- 1,047
thanks
-
5 May 2012 10:28 AM
Jump to post Thread: copy store / execute same load by dedoz
- Replies
- 3
- Views
- 552
creating a new store wont have the same page, limit, sorters, filters etc from the store1
creating a new instance != copying an instance :d -
5 May 2012 8:57 AM
Jump to post Thread: JSON in ajax request by dedoz
- Replies
- 2
- Views
- 1,047
How to send an ajax request with content type json.
Using Ext Direct proxy on a store/model then doing store.load
sends JSON to the server, the request content type is application/json
... -
5 May 2012 8:10 AM
Jump to post Thread: export store records to excel by dedoz
- Replies
- 6
- Views
- 1,867
no i dont want to send the records, i want to send the params that store.load used to load those records,
is not just my own params, it also sends page, limit, sorters, filters, etc, all that makes... -
4 May 2012 3:27 PM
Jump to post Thread: export store records to excel by dedoz
- Replies
- 6
- Views
- 1,867
thanks alot.
missing one thing, the report_params.
for me, as im trying to export records from store, i need to get what store.load sends as http request (the JSON) those are my report_params in...
Results 1 to 25 of 120
