Search Type: Posts; User: FritFrut
Search: Search took 0.03 seconds.
-
5 Dec 2007 8:08 PM
- Replies
- 1
- Views
- 1,204
What is the problem? The Ext PagingToolbar sends parameters start and limit. Just create query using HQL or Criteria and use these parameters with SetFirstResult and SetMaxResults to get the data you...
-
5 Dec 2007 12:21 AM
Jump to post Thread: Which editor (IDE) do you use? by FritFrut
- Replies
- 23
- Views
- 6,954
Yes... Here's what ScottGu says about it:
So, there is a hope :) -
4 Dec 2007 2:29 AM
Jump to post Thread: Which editor (IDE) do you use? by FritFrut
- Replies
- 23
- Views
- 6,954
Visual Studio 2008 seems to be quite nice:
http://weblogs.asp.net/scottgu/archive/2007/06/21/vs-2008-javascript-intellisense.aspx
It also works in free Visual Studio Express edition. -
28 Nov 2007 12:17 PM
- Replies
- 0
- Views
- 695
Hello
Is it possible to return some value with the createInterceptor? I'd like to intercept the original function AND return something to the caller. The current implementation only checks for... -
16 Nov 2007 8:34 AM
Jump to post Thread: [SOLVED] Grid not showing Mask by FritFrut
- Replies
- 12
- Views
- 3,044
Well... this fix is for Ext 1.1 Grid. Ext 2 GridPanel is a bit different, but it seems that similar fix should also be needed. However, I'm still stuck with Ext 1.1, so I don't know much about Ext 2...
-
16 Nov 2007 7:40 AM
Jump to post Thread: [SOLVED] Grid not showing Mask by FritFrut
- Replies
- 12
- Views
- 3,044
Hmm, I don't know... I just looked at your code and, since you are using reconfigure on Grid, thought that this fix might help you.
You can put this fix directly into ext-all.js, but it's better to... -
15 Nov 2007 6:31 PM
Jump to post Thread: [SOLVED] Grid not showing Mask by FritFrut
- Replies
- 12
- Views
- 3,044
Try this:
http://extjs.com/forum/showthread.php?t=16763
It's for Ext 1.1, but perhaps it also works in Ext 2
HTH, Tom -
15 Nov 2007 6:21 PM
Jump to post Thread: Date *and* Time picker? by FritFrut
- Replies
- 10
- Views
- 9,028
Thanks a lot! I didn't notice anything wrong, but I didn't use it too much. I'll change my copy ASAP
Bye, Tom -
9 Nov 2007 1:35 PM
Jump to post Thread: Date *and* Time picker? by FritFrut
- Replies
- 10
- Views
- 9,028
Here's something I just wrote, inspired by the code above, so it's probably buggy. It uses DateField and TimeField (it's from Ext 2, but works with Ext 1.1).
Ext.namespace("Ext.ux",... -
6 Nov 2007 1:12 PM
Jump to post Thread: loadMask by FritFrut
- Replies
- 4
- Views
- 1,284
Did you use reconfigure on the grid? Load mask doesn't work after reconfigure. If that's the case, see here:
http://extjs.com/forum/showthread.php?p=80187
for a possible fix. -
6 Nov 2007 11:28 AM
- Replies
- 4
- Views
- 1,812
Hm, perhaps you misunderstood me... I'd like to use both 123.45 and 123,45 as a valid float number. So, I hoped that specifying '.,' as a separator would treat it as a list of valid separator...
-
5 Nov 2007 9:02 PM
- Replies
- 4
- Views
- 1,812
Some of my users have US keyboard, some have Croatian.
If you press key '.' on numeric keyboard with US layout, it will emit the '.' character, but on Croatian it will be ','. So, it's easier to... -
5 Nov 2007 3:47 PM
- Replies
- 4
- Views
- 1,812
The documentation for Numberfield says:
decimalSeparator : String
Character(s) to allow as the decimal separator (defaults to '.')
which means that more than one character can be used as a... -
5 Nov 2007 12:47 PM
Jump to post Thread: Ext data store events by FritFrut
- Replies
- 7
- Views
- 2,209
No, I don't think it's a bug in Ext. You are probably attaching the same event handler twice. Try using Firebug, and look at the call stack, and/or try to log calls to your method to see what's going...
-
5 Nov 2007 10:28 AM
- Replies
- 14
- Views
- 4,025
It depends... I tried that route a while ago, but in the end it was quite messy and I had to rewrite everything in 'pure' Ext. It didn't feel right, and it was painful to use events between the stuff...
-
31 Oct 2007 3:02 AM
Jump to post Thread: Grid.reconfigure and loadMask by FritFrut
- Replies
- 0
- Views
- 1,293
After a call to reconfigure, loadmask is lost. I believe that, instead of Ext.apply, it should use Ext.applyIf. So, instead of
this.loadMask = new Ext.LoadMask(this.container,... -
31 Oct 2007 2:59 AM
- Replies
- 8
- Views
- 2,097
Try this
http://extjs.com/forum/showthread.php?p=80184#post80184
and see if it helps
HTH, Tom -
31 Oct 2007 2:56 AM
- Replies
- 2
- Views
- 1,361
I believe that Grid.reconfigure should call Ext.applyIf, instead of Ext.apply.
Here's a fix that seems to work for me.
In Grid.reconfigure:
if(this.loadMask)
{
this.loadMask.destroy();
//... -
23 Oct 2007 1:23 PM
Jump to post Thread: New ExtJS 2.0 Theme: "Slate" by FritFrut
- Replies
- 186
- Views
- 169,310
Mmm, great...
-
19 Oct 2007 12:48 AM
- Replies
- 28
- Views
- 9,787
You can use 'metachange' event on the Grid (in Ext 1.1, don't know about Ext 2.), send the new grid configuration from the server, and reconfigure grid accordingly. There's an implementation of this...
-
18 Oct 2007 7:22 AM
Jump to post Thread: Ext 2.0 (non-API) Documentation by FritFrut
- Replies
- 21
- Views
- 15,742
This is great! Thanks a lot!
-
15 Oct 2007 9:30 AM
- Replies
- 3
- Views
- 1,444
It's quite simple... alpha channel is like gray scale channel, where level of 'grayness' represents level of transparency. You can use any tool on the alpha channel, for example you can draw, select,...
-
15 Oct 2007 8:35 AM
- Replies
- 3
- Views
- 1,444
Hmm, if I remember correctly, in Photoshop and Gimp you need an alpha channel to have transparent PNGs.
-
12 Oct 2007 2:29 PM
Jump to post Thread: Combo with first entry "null" by FritFrut
- Replies
- 25
- Views
- 9,074
No, there are many problems with this. Data store should be precisely that, a DATA store.
Empty row in this case is not meaningful data, it's here just to add some functionality of the UI. You... -
12 Oct 2007 1:46 PM
Jump to post Thread: Ext 2.0 - Ext Designer by FritFrut
- Replies
- 63
- Views
- 37,242
Thanks! This looks very nice and useful.
Results 1 to 25 of 80
