Search Type: Posts; User: mattpainter
Search: Search took 0.01 seconds.
-
20 Sep 2011 1:12 PM
Jump to post Thread: Dynamic multiple form fields by mattpainter
- Replies
- 6
- Views
- 2,284
Hi,
This was a while ago so my memory is a bit hazy, but I recall that the business requirements conveniently changed, which meant that I no longer needed this functionality... sorry!
M -
27 Apr 2010 12:18 PM
- Replies
- 7
- Views
- 3,157
It only happened when the browser window was resized rapidly, so I suppose it was probably quite dependent on machine speed, etc. Anyway, good to hear that it's been modified in the next release.
-
21 Apr 2010 12:03 PM
- Replies
- 3
- Views
- 1,989
Fair enough. All of my data is mapped from server-side domain objects to GXT models using Dozer, so I have worked around it by implementing an empty string -> null converter.
-
19 Apr 2010 2:44 PM
- Replies
- 3
- Views
- 1,989
Summary:
If setOriginalValue() is called on a field by way of a form binding and the value is an empty String, a call to isDirty() returns true even though no text has been entered into the field.... -
8 Apr 2010 2:09 PM
- Replies
- 7
- Views
- 3,157
Hi Sven,
In that case, I suspect it's being invoked incorrectly. I have been able to replicate the issue in a stand-alone test, posted below.
To replicate, resize the browser window so a... -
7 Apr 2010 8:28 PM
- Replies
- 7
- Views
- 3,157
Hi,
I have been encountering rendering issues with LiveGridView when the grid is scrolled to the bottom then resized, which seems to be due to getVisibleRowCount() returning more rows than is... -
18 Mar 2010 4:18 PM
- Replies
- 0
- Views
- 466
Hi,
I need to prevent my grid scrolling to the far left when the sort is changed. I have already overriden scrollToTop() in GridView to not call setScrollLeft() on the scroller object, however... -
8 Mar 2010 6:07 PM
Jump to post Thread: Resizing grid -possible? by mattpainter
- Replies
- 0
- Views
- 479
Hi,
I have a simple grid in a panel with one column which may contain lengthy data (see attachment). I would like the user to be able to resize the column and for the entire table to resize. Is... -
24 Feb 2010 2:21 PM
Jump to post Thread: Locked / Freeze Column Grid by mattpainter
- Replies
- 11
- Views
- 16,677
Hi,
Thanks so much for developing this! I've implemented it for a row-selection column in an attempt to make my grid behave similarly to Excel. Screenshot below:
... -
21 Feb 2010 6:03 PM
- Replies
- 1
- Views
- 540
Ack, always the way. Turned out that it was the fault of CSS elsewhere in my app...!
-
21 Feb 2010 5:59 PM
- Replies
- 1
- Views
- 540
Hi,
I have a simple error dialog in my code with a single button, however the button is not displaying.
Even using the simple dialog from the examples, the button isn't displaying. What could... -
20 Feb 2010 4:03 PM
Jump to post Thread: Dynamic multiple form fields by mattpainter
- Replies
- 6
- Views
- 2,284
Profiling the GXT code shows that not only is my approach not at all performant (as feared), but has made me reach the conclusion that GXT forms are intended to be trivial and not designed for...
-
20 Feb 2010 2:37 PM
Jump to post Thread: Dynamic multiple form fields by mattpainter
- Replies
- 6
- Views
- 2,284
Thanks for that; good idea. I'll post my updated genericised version there once I have time. I just didn't want to launch full steam ahead into something if it turned out that my approach was foolish...
-
18 Feb 2010 3:08 PM
Jump to post Thread: Dynamic multiple form fields by mattpainter
- Replies
- 6
- Views
- 2,284
To answer my own question, I've now implemented my desired behaviour - albeit in a rather nasty manner. I've solved the issue of not being able to dynamically add and remove elements from a...
-
18 Feb 2010 12:41 PM
Jump to post Thread: Dynamic multiple form fields by mattpainter
- Replies
- 6
- Views
- 2,284
Hi,
I am creating a form for a data model which has a repeating text field, however I can't work out how to implement this.
Ideally the form should display a single field and an add button.... -
31 Jan 2010 6:23 PM
- Replies
- 3
- Views
- 2,093
Hi Arno,
Of course, you're right. I got side-tracked with the refreshRow() however I see now that my fundamental problem was that I wasn't updating the display store (this is a live grid, so... -
28 Jan 2010 7:37 PM
- Replies
- 3
- Views
- 2,093
Hi guys,
After many dead ends (not knowing anything about the inner workings of GXT grids) and laboriously step-debugging through rendering code, I fixed my issue by calling the rather obvious... -
28 Jan 2010 7:29 PM
- Replies
- 1
- Views
- 727
The code below in DomHelper references the invalid function 'overwite' (as opposed to 'overwrite'):
/**
* Creates new DOM element(s) and overwrites the contents of el with them.
*
... -
28 Jan 2010 5:25 PM
- Replies
- 3
- Views
- 2,093
Hi,
I have a Live Grid with many columns and a separate editing panel for the grid's fields.
I am successfully updating the grid's store with the model data from the edit panel, however I... -
28 Jan 2010 5:24 PM
- Replies
- 1
- Views
- 502
Apologies, just realised I posted this in the wrong forum. Will re-post in the GXT forum.
-
28 Jan 2010 4:51 PM
- Replies
- 1
- Views
- 502
Hi,
I have a Live Grid with many columns and a separate editing panel for the grid's fields.
I am successfully updating the grid's store with the model data from the edit panel, however I would... -
27 Jan 2010 12:16 PM
Jump to post Thread: ext.ux.activegrid.ActiveGrid by mattpainter
- Replies
- 60
- Views
- 33,723
Hi Valery,
GXT 2.1 now has Live Grid functionality so the Active Grid plugin is no longer required. I am using the Live Grid and can confirm that it works well.
See... -
19 Jan 2010 4:27 PM
- Replies
- 23
- Views
- 8,444
I'm not sure why people's GWTTestCase unit tests are taking so long per test. Using Eclipse I am choosing to run all GWT unit tests in a package for a single (my only) module. With this, there is an...
-
14 Dec 2009 5:16 PM
Jump to post Thread: Grid horizontal scrolling by mattpainter
- Replies
- 3
- Views
- 1,739
Ack, so sorry - discovered after debugging through the GXT code that there was actually a line in my code that was explicitly disabling horizontal scrolling :/
-
14 Dec 2009 4:37 PM
Jump to post Thread: Grid horizontal scrolling by mattpainter
- Replies
- 3
- Views
- 1,739
Hi,
I have a GXT grid with many columns and require horizontal scrolling, however can't work out how to enable it. Is this something which can be done?
Any pointers would be appreciated.
...
Results 1 to 25 of 29
