Search Type: Posts; User: whodat
Search: Search took 0.07 seconds.
-
4 Nov 2010 7:19 AM
Jump to post Thread: [CLOSED]Disable combo box by whodat
- Replies
- 3
- Views
- 767
Hi,
I'm trying to disable a ComboBox based on a RadioGroup button being checked. I've seen the threads on Ext.getCmp('combo_id').disable() not working as well as the... -
22 Apr 2010 2:48 PM
Jump to post Thread: Designer running in Linux? by whodat
- Replies
- 23
- Views
- 7,139
or
chmod 755 ExtDesigner-1.0.0-linux-installer.bin
./ExtDesigner-1.0.0-linux-installer.bin -
22 Apr 2010 12:45 PM
- Replies
- 2
- Views
- 613
Yes you can page locally on the client instead of server side paging. I used Condor's extension to achieve this. He built a ext js 2x and 3x version
... -
5 Mar 2010 9:07 AM
- Replies
- 53
- Views
- 36,833
Some of us had no choice.. :DBecause my client didn't want to wait.
-
22 Oct 2009 10:01 AM
Jump to post Thread: Ext.ux.grid.RowSelectionPaging by whodat
- Replies
- 69
- Views
- 20,723
I posted my solution on page 2. I was able to get this to selectAll or checkAll unnoticeably for thousands of rows. Though my largest dataset was around 8000 paged locally. I didn't see any...
-
22 Oct 2009 9:27 AM
Jump to post Thread: Ext.ux.grid.RowSelectionPaging by whodat
- Replies
- 69
- Views
- 20,723
What do you consider to be a large data-set?
-
20 Oct 2009 8:12 AM
Jump to post Thread: Ext.ux.grid.RowSelectionPaging by whodat
- Replies
- 69
- Views
- 20,723
I've implemented the check/select all for the grid
Method added to the class
checkAll: function(){
var i=0;
this.clearSelections();
for(i=0, it =... -
3 Sep 2009 5:24 PM
Jump to post Thread: Grid Search Plugin by whodat
- Replies
- 1,023
- Views
- 364,199
Thanks Saki, I'll take a look tomorrow when im back in the office
-
3 Sep 2009 4:50 PM
Jump to post Thread: Grid Search Plugin by whodat
- Replies
- 1,023
- Views
- 364,199
Hmm.. it works on your demo but I'm wondering why it doesn't work.
Does the trigger call anything related to the store, i.e. reload? I'm using a PagingStore which is local paging..
I'm wonder... -
3 Sep 2009 4:22 PM
Jump to post Thread: Grid Search Plugin by whodat
- Replies
- 1,023
- Views
- 364,199
Sorry didn't finish my sentence. But when clicking the [X] trigger, nothing happens for me. I have to remove the actual text to remove the filter.
And yes it filters by dates -
3 Sep 2009 11:26 AM
Jump to post Thread: Grid Search Plugin by whodat
- Replies
- 1,023
- Views
- 364,199
Saki,
Great plugin like most of your plugins. I got this plugin to work with a grid which pages local.
I have 2 questions.
1) Do I have to implement the [X] "clearing" feature to clear... -
2 Jul 2009 6:59 AM
Jump to post Thread: Ext.form.ComboBox is empty.... by whodat
- Replies
- 2
- Views
- 870
What does your store instantiation look like?
-
28 May 2009 6:59 AM
Jump to post Thread: Edit the grid values to form by whodat
- Replies
- 2
- Views
- 682
Saki has something similar called a RecordForm extension.. I haven't used it, but I accomplished something very similar.
http://recordform.extjs.eu -
20 May 2009 3:53 PM
- Replies
- 113
- Views
- 46,891
This extension is used for local paging. With the PagingStore, you query the db and get all of the data and not the requested pageSize. The previous and next calls will get the next request...
-
18 May 2009 6:34 AM
- Replies
- 6
- Views
- 2,785
I processed the submission in the processFormSubmission. I had a command object where the names of Ext form fields match the variables in the command object. They are binded and I perform...
-
16 May 2009 6:20 AM
Jump to post Thread: Problem With Creating Tab by whodat
- Replies
- 5
- Views
- 1,049
Have you taken a look at the TabPanel's add method.
You're calling add but what does add take as a parameter? An Ext Component, but from your add method, it is very not clear what type of... -
16 May 2009 4:35 AM
Jump to post Thread: Problem With Creating Tab by whodat
- Replies
- 5
- Views
- 1,049
It would be better if you showed your TabPanel code.
You have a reference to your TabPanel, call it's add method and add the new Search Panel created from clicking the 'Add' Tree Node and make... -
15 May 2009 12:58 PM
- Replies
- 11
- Views
- 2,233
You didn't have to do the include? But call the
new JSONSerializer().exclude("*.class").deepSerialize(wrapper); -
15 May 2009 11:54 AM
- Replies
- 11
- Views
- 2,233
Its was for a combo, so I didn't need the totalProperty, but basically you need to design your Java Class to contain what you need
quick example of mine
class GridResults{
private int... -
15 May 2009 8:49 AM
- Replies
- 6
- Views
- 2,785
Maybe this is your issue, shouldn't you call request.getParameter("sort") and not getAttribute()?
I've implemented the AbstractFormController with the commandClass and without. You should be good... -
15 May 2009 8:39 AM
- Replies
- 6
- Views
- 1,964
Where is the plants.xml file located? It needs to be on your local server for it to work.
-
15 May 2009 8:09 AM
- Replies
- 11
- Views
- 2,233
I've did this to populate my combos' stores
In Java, I had an Object with a list for each combo
class ComboStoreWrapper
{
private List<String> firstCombo; -
14 May 2009 6:46 PM
Jump to post Thread: Loading data into a FormPanel by whodat
- Replies
- 7
- Views
- 2,290
Understood. So 1, you are correct. Don't give all of your combos created dynamically the same id/name. On the creation, give each a different name and id.
2) When you call BasicForm.load() why... -
14 May 2009 10:42 AM
Jump to post Thread: Loading data into a FormPanel by whodat
- Replies
- 7
- Views
- 2,290
So it sounds like you're trying to set the values of the combos..
Is the data loaded in the store of the newly added combo(s) prior to you calling load?
Also, how can you call load with the... -
14 May 2009 9:00 AM
Jump to post Thread: Loading data into a FormPanel by whodat
- Replies
- 7
- Views
- 2,290
I think the row property he is referring to lets u know which row to update in your formPanel.
I'm a little confused as to what you are trying to do ... Are you trying to load data into the...
Results 1 to 25 of 101
