Search Type: Posts; User: Agnus
Search: Search took 0.01 seconds.
-
3 Dec 2011 11:40 AM
Jump to post Thread: Considering Ext-GWT by Agnus
- Replies
- 6
- Views
- 1,488
@Entropy
I am not allowed to disclose much at the moment, but we, the company I work for, are preparing to release a proper Wicket ExtJS integration library. That means server side Wicket... -
29 Jan 2011 3:54 AM
Jump to post Thread: GXT vs. GWT by Agnus
- Replies
- 7
- Views
- 4,179
Unfortunately GWT does not support proper object detection, so you have to recompile with the latest version if you want your code to keep up with browser updates.
Those getters and setters... -
28 Jan 2011 9:56 AM
Jump to post Thread: GXT vs. GWT by Agnus
- Replies
- 7
- Views
- 4,179
But, you can not compare apples to oranges.
GWT ListBox vs GXT ComboBox
GWT Grid vs GXT Grid
By the way, the quality of the native GWT API has been declining, turning into a deprecation... -
28 Jan 2011 6:25 AM
Jump to post Thread: GXT vs. GWT by Agnus
- Replies
- 7
- Views
- 4,179
I am not a Sencha developer, though I think the answer lies in the generated markup. GWT components are spartan both in element structure and style sheet rules. They look dull by default but make...
-
22 Jan 2011 5:30 PM
- Replies
- 4
- Views
- 7,649
+1 for 4, 5, 6. I have worked in projects where everything was DTOed and it was madness. In general, I try to reuse entity beans vertically across application layers and use DTOs only where necessary...
-
6 Aug 2010 9:01 AM
Jump to post Thread: GXT vs GWT by Agnus
- Replies
- 12
- Views
- 3,570
Hi sven, I like this GXT3 plan. I realize that my post above sound a bit harsh?. I did not mean to undermine the hard work you guys have put on ExtJS and GXT. I am certainly a big fun of both...
-
6 Aug 2010 7:23 AM
Jump to post Thread: GXT vs GWT by Agnus
- Replies
- 12
- Views
- 3,570
A bit o history. I have been using ExtJS since the very beginning when it was called YUI-EXT. Back then, you took advantage of the liberal YUI license and executed perfectly the "embrace and...
-
6 Aug 2010 6:53 AM
Jump to post Thread: GXT vs GWT by Agnus
- Replies
- 12
- Views
- 3,570
GXT is undoubtedly a great UI library. However it treats GWT only a little more than a compiler. Your widget framework overlaps the default. Moreover your component model is different than the...
-
26 Jun 2009 12:04 AM
Jump to post Thread: Animations with loop vs setInterval by Agnus
- Replies
- 4
- Views
- 2,113
@Animal
Thank you, that sounds like a reasonable explanasion. -
25 Jun 2009 3:08 AM
Jump to post Thread: Animations with loop vs setInterval by Agnus
- Replies
- 4
- Views
- 2,113
You are right about that. However even if I increase the loop to last longer, it still doesn't seem to render the individual frames:
while (y < 10000) box.style.top = ++y % 100; -
25 Jun 2009 1:55 AM
Jump to post Thread: Animations with loop vs setInterval by Agnus
- Replies
- 4
- Views
- 2,113
This is a generic javascript question. Changing element style properties in a loop does not work. For example:
<div id="box" style="position: absolute; width: 50px; height: 20px; background:... -
16 Jun 2009 2:03 AM
- Replies
- 3
- Views
- 1,356
I can't find TwinTriggerCombo in the public api. Can you give me a reference?
-
16 Jun 2009 1:27 AM
- Replies
- 3
- Views
- 1,356
Hello,
I have some combos with mode: 'remote' and I am stuck with the following situation.
After a value gets selected there is no way to clear it. I would like when a combo is configured with... -
2 Jun 2009 3:10 AM
- Replies
- 1
- Views
- 2,025
On Google Chrome, and EditorGridPanel in editing mode, hitting the TAB key does not move from the active column to the next. You can easily see it on the samples:
... -
2 Jun 2009 2:54 AM
Jump to post Thread: Ext v2 after v3 gets released? by Agnus
- Replies
- 3
- Views
- 1,356
Thanks, that is great relief for me :)
-
1 Jun 2009 12:32 AM
Jump to post Thread: Ext v2 after v3 gets released? by Agnus
- Replies
- 3
- Views
- 1,356
Will Ext v2 be supported after v3 get released? There has not been an update for many months now. I have been developing a project with v2 for some time and I am woried wether new browser versions...
-
20 May 2009 11:09 PM
Jump to post Thread: Ext's forms by Agnus
- Replies
- 35
- Views
- 7,544
@mschwartz
That "mythical member function" already exists - somewhat:
formPanel.cascade(function(cmp) {
if (cmp instanceof Ext.form.Field) {
// your code...
} -
17 Dec 2008 5:14 AM
- Replies
- 4
- Views
- 1,654
There is no tool in the example code above. Actually I didn't want any tool icon (collapseMode: 'mini') but it was showing nevertheless in Firefox 3 only and thats why I saw it as a bug.
The... -
14 Nov 2008 1:44 PM
- Replies
- 4
- Views
- 1,654
Hi, I see this this bug is ignored. Should I report it somewhere else? Is there a bug tracking system?
-
31 Oct 2008 2:39 PM
- Replies
- 4
- Views
- 1,654
I have found a rendering bug when a TabPanel is set as collapsible. Look at the following code and image:
var west = new Ext.TabPanel({
region: 'west',
split: true,
collapsible:... -
20 Dec 2007 7:17 AM
- Replies
- 3
- Views
- 1,041
@Condor
Thank you!So the proper way is to do this?
mainPanel.add(formPanel);
mainPanel.layout.setActiveItem(formPanel);
mainPanel.doLayout();
Ok that works alright but I don't... -
20 Dec 2007 6:53 AM
- Replies
- 3
- Views
- 1,041
Fieldsets do not show their inner fields, even with autoHeight: true. Check the following script and the pictures:
var mainPanel = new Ext.Panel({
region: 'center',
layout: 'card',
});... -
30 Nov 2007 5:52 AM
Jump to post Thread: How to iterate form fields? by Agnus
- Replies
- 5
- Views
- 1,583
@santosh.rajan
Thanks but I need the Component objects. -
30 Nov 2007 5:24 AM
Jump to post Thread: How to iterate form fields? by Agnus
- Replies
- 5
- Views
- 1,583
Thanks but it didn't work. With the help of Firebug I found them like this:
var formItems = formPanel.form.items.items; -
30 Nov 2007 3:52 AM
Jump to post Thread: How to iterate form fields? by Agnus
- Replies
- 5
- Views
- 1,583
Hi, I create a FormPanel dynamically from the server. How cat I iterate through all the Ext form fields if I don't know their name's?
All I can see in the docs is a BasicForm.findField( String...
Results 1 to 25 of 31
