Search Type: Posts; User: ArtBuilders
Search: Search took 0.04 seconds.
-
24 Mar 2010 8:14 PM
- Replies
- 0
- Views
- 481
Been using EXTJS since it was in beta. This may be my first time going to the community for help.
Issue: Combo boxes embedded in windows (with local stores) fail to reload after once selected,... -
24 Jul 2008 2:28 PM
Jump to post Thread: Grid Search Plugin by ArtBuilders
- Replies
- 1,023
- Views
- 364,793
Sorry... still a little lost. How do I reference the private field (without modifying the plugin source code)? Normally I would observe an onchange or blur event using the ID but I seem to have no...
-
24 Jul 2008 8:20 AM
- Replies
- 2
- Views
- 767
Here's the approach you are probably looking for:
http://extjs.com/forum/showthread.php?t=19112 -
23 Jul 2008 4:16 PM
Jump to post Thread: Grid Search Plugin by ArtBuilders
- Replies
- 1,023
- Views
- 364,793
OK... I did the right thing and switched it to remote. Still would like to know easiest way to listen to seach field in order to know what was entered. Any ideas?
-
23 Jul 2008 3:58 PM
Jump to post Thread: Grid Search Plugin by ArtBuilders
- Replies
- 1,023
- Views
- 364,793
I've recently created a grid component. The grid is set to "local" (though technically it's initially loading remotely from db). The following information would be useful to know:
What the user... -
25 Jun 2008 4:07 PM
- Replies
- 1
- Views
- 847
I take a little different approach but see if this helps:
/*bug form start*/
Ext.ns('Bug');
Bug.Form = Ext.extend(Ext.form.FormPanel, {
border:false,
frame:true,
autoScroll:true, -
3 Jun 2008 8:29 PM
- Replies
- 5
- Views
- 4,275
Are you trying to "load" the grid's store when a tab changes or actually create a grid when a tab is selected?
If the issue is the former:
venStore.load({params:{start:0, limit:250}}); //or... -
23 May 2008 8:52 AM
Jump to post Thread: Grid Search Plugin by ArtBuilders
- Replies
- 1,023
- Views
- 364,793
Good article... well reasoned. Hate to be a broken record but you rock! Thanks for the clear samples (that I blatently lifted and patched together below ;) ). Since I sort of hijaacked this thread,...
-
22 May 2008 8:03 PM
Jump to post Thread: Grid Search Plugin by ArtBuilders
- Replies
- 1,023
- Views
- 364,793
Sample looks good. I should have mentioned that I'm adding a gridpanel to a tabpanel inside a border layout. My issue may've been one of the order elements are being created. With that said, don't...
-
22 May 2008 11:45 AM
Jump to post Thread: Grid Search Plugin by ArtBuilders
- Replies
- 1,023
- Views
- 364,793
A little different from what's discribed by medley but I also had an issue with the search field not rendering (in my case on an inactive tab). The solution was to change defferedRender to 'true'...
-
21 May 2008 8:23 AM
- Replies
- 7
- Views
- 1,165
Just a quick follow-up, IE7 doesn't like declaring the reader inline/nested the way I originally proposed. Simple solution is to create var first like:
var reader = new Ext.data.JsonReader({
... -
21 May 2008 7:25 AM
- Replies
- 7
- Views
- 1,165
That sounds right. In fairness you were only off by 1 on the first comment as well ;) The two challenges were how to use grouping with JsonReader and then just figuring out where to put the code...
-
20 May 2008 8:27 PM
- Replies
- 7
- Views
- 1,165
Well, it doesn't appear to be a "couple lines" ;) but I appreciate the feedback. I did manage to get it to work.
Solution:
Example.Grid = Ext.extend(Ext.grid.GridPanel, { ... -
16 May 2008 4:22 PM
- Replies
- 7
- Views
- 1,165
Up until this week I've been working in 1.1. This week I'm taking 2.0 for a test drive to evaluate wether to upgrade my current projects. Converting a sample grid to support grouping is throwing me a...
-
12 May 2008 7:48 PM
- Replies
- 18
- Views
- 7,278
I love it! I'm little late to the party but just a minor tweak is needed to preserve the ID (which may come in handy later):
Change:
if(!cfg.name){
cfg.name = this.name ||... -
26 Jan 2008 8:16 PM
Jump to post Thread: IE6 Vertical Scrollbar issue by ArtBuilders
- Replies
- 1
- Views
- 947
Try applying CSS to the DIV container. Something like...
div#areaContainer {
display: block;
height: 100%;
margin: 0px;
overflow-x: auto;
overflow-y: auto; -
1 Jan 2008 11:26 AM
- Replies
- 3
- Views
- 1,963
(Sorry for hijaaking but hopefully this will save others some time)
Note that the solution perscribed above appears to only work for local data stores. If you are retrieving from a database, the... -
29 Nov 2007 9:37 PM
- Replies
- 7
- Views
- 2,253
Sorry... My bad. I should have read more carefully. Doesn't look like your JSON is formatted correctly. Should be:
{success:true, data: [{"first":"Georgie", "Last":"Smith"}]} -
29 Nov 2007 8:14 PM
- Replies
- 7
- Views
- 2,253
DIsclaimer: I'm fairly new to the EXTJS framework/JSON. Can you passively return a JSON array and have the fields intuitively extract their expected data? (or am I missing something in your code? )...
-
28 Nov 2007 1:40 PM
- Replies
- 9
- Views
- 4,074
I'm in the process of transitioning my old datagrids to EXTJS grids. I had a similliar issue and created the following function to convert an existing table and then extract the record ID, located in...
-
25 Nov 2007 7:16 PM
Jump to post Thread: Forms - Tab Order by ArtBuilders
- Replies
- 6
- Views
- 5,406
I realize this is an old post but as the question of tab order has appeared in subsequent posts, I believe the solution is "tabindex" (at least in 1.1)
For example:
var firstname= new... -
25 Nov 2007 7:07 PM
Jump to post Thread: FormPanel Column - Tab Order by ArtBuilders
- Replies
- 1
- Views
- 1,378
I believe the good folks at EXTJS refer to tab order as "tabindex". Basically you have to manually apply it in the case of columns. For example:
var firstname= new Ext.form.TextField({
... -
10 Oct 2007 4:20 PM
- Replies
- 6
- Views
- 1,376
To follow-up for anyone with a similiar problem using dynamically spawned links with the dialog; based on Evant's feedback I added a small bit of code using "Ext.fly":
return {
init :... -
10 Oct 2007 3:46 PM
- Replies
- 6
- Views
- 1,376
Fantastic! Your the best. I did some quick tests and it performs as promised :) Thanks again!
-
10 Oct 2007 2:03 PM
- Replies
- 6
- Views
- 1,376
Thanks a lot for your quick response!
Can I assume that "grid" refers to ANY div with the id "Grid" and a.mylink refers to a link tag w/ classname of "mylink"? In otherwords, I can basically set...
Results 1 to 25 of 28
