Search Type: Posts; User: kolli
Search: Search took 0.02 seconds.
-
20 Jul 2010 5:57 AM
- Replies
- 5
- Views
- 1,021
Got it thanks!
-
20 Jul 2010 5:50 AM
- Replies
- 5
- Views
- 1,021
Hye sven just a quick question. Shouldnt that be handled with "setFireChangeEventOnSetValue" in combobox??
-
20 Jul 2010 5:40 AM
Jump to post Thread: GroupingStore Grid loading problems by kolli
- Replies
- 14
- Views
- 1,415
Well did u create any columnConfigs. U didnot in the code.
-
19 Apr 2010 8:07 AM
- Replies
- 11
- Views
- 4,062
BaseEvent can be cast or changed to GridEvent.
you can use the getModel() method in the GridEvent to get the current clicked row's datamodel. And the function getRowindex() gives you the rowIndex. -
9 Apr 2010 6:02 AM
Jump to post Thread: Grid ColumnFooter specific height by kolli
- Replies
- 0
- Views
- 515
Is there a way to set the Column footer (the bottom of the grid that displays the aggregate rows) to a specific height and set overflow as auto?
.x-grid3-footer
{
overflow:auto; ... -
5 Mar 2010 2:44 PM
- Replies
- 1
- Views
- 576
try
grid.getView().scrollToTop(); -
5 Mar 2010 1:18 PM
Jump to post Thread: [SLOVED] Help with Grid grouping by kolli
- Replies
- 10
- Views
- 2,021
The whole point is that the GridCellRenderer and GridGroupRenderer are completely different.
Grid Cell Renderer only works for formatting the text for a particular column.
GridGroupRenderer... -
4 Mar 2010 7:36 PM
Jump to post Thread: Problem with components size by kolli
- Replies
- 4
- Views
- 981
For changing the width of the textField try setting the width of the formData
formPanel.add(textField, new FormData(30,-1)); -
4 Mar 2010 7:32 PM
Jump to post Thread: toFront() doesn’t work by kolli
- Replies
- 9
- Views
- 1,767
DeferredCommand.addCommand(new IncrementalCommand() {
public boolean execute() {
// TODO Auto-generated method stub
return false;
}
}); -
4 Mar 2010 7:29 PM
Jump to post Thread: [SLOVED] Help with Grid grouping by kolli
- Replies
- 10
- Views
- 2,021
So the point is that the data you get for the nameCol is BeanModel by itself? In that case i thin k you should do the exact same thing you do in nameCol renderer in your GroupRender.
I didnot try... -
4 Mar 2010 7:13 PM
Jump to post Thread: Add Menu to Column header by kolli
- Replies
- 1
- Views
- 594
Check this out.
-
4 Mar 2010 7:08 PM
- Replies
- 8
- Views
- 1,626
You can reuse the same grid proxy and store that has been created for the grid. In your cmbExcercise selection listener you can just change the loadconfig of the grid and call loader.load().
-
4 Jan 2010 9:33 AM
Jump to post Thread: Changing color of a row in a grid by kolli
- Replies
- 2
- Views
- 1,420
one way is to maintain a model data variable for each row and you can use setrowStyle in gridViewconfig to color the complete row, based on that model data variable
-
30 Dec 2009 2:05 PM
- Replies
- 0
- Views
- 1,028
GXT: 2.0.1
GWT :1.7
I added a radio group in the toolbar.
I am not able to align the radio buttons with the label ( as shown in the image).
Am i missing something?
Thanks -
4 Dec 2009 11:35 AM
Jump to post Thread: ExtendedCheckBoxSelectionModel by kolli
- Replies
- 1
- Views
- 2,408
Thanks a lot buddy..
This was really helpful.. -
24 Nov 2009 1:53 PM
- Replies
- 4
- Views
- 979
are you using setEmptyText("Test")??
-
24 Nov 2009 12:40 PM
- Replies
- 4
- Views
- 979
well you must have had textField.setAllowBlank(false); which sets the invalid flag.
-
24 Nov 2009 12:35 PM
- Replies
- 4
- Views
- 2,982
That is because the vertical scroll bar will take up some space, so to accomadate the actual size a Horizontal scroll bar is put in automatically.
As detailSection.setScrollMode(Scroll.AUTO);
... -
24 Nov 2009 12:21 PM
Jump to post Thread: DatePicker Header by kolli
- Replies
- 5
- Views
- 1,636
I dont think you can remove the header but i guess u can set the max and min dates for that datepicker to be from the current month. That way even if they change to previous and next month they wont...
-
24 Nov 2009 12:15 PM
- Replies
- 8
- Views
- 3,865
BorderLayout doesnt have that events for now yet.
check this out.
http://www.extjs.com/forum/showthread.php?t=75477 -
10 Nov 2009 1:34 PM
Jump to post Thread: MessageBox does not close on ESC. by kolli
- Replies
- 1
- Views
- 947
you have to set
msg.setClosable(true); -
9 Oct 2009 5:23 AM
- Replies
- 2
- Views
- 3,629
ProgressBar
and you can also check these examples.
MessageBox -
29 Sep 2009 4:24 PM
Jump to post Thread: Grid - Spilling out of ContentPanel by kolli
- Replies
- 2
- Views
- 767
try removing
setautoexpandmax
setautowidth
setautoheight -
29 Sep 2009 9:30 AM
Jump to post Thread: ComboBox default value by kolli
- Replies
- 7
- Views
- 10,699
I hope u do have the
combobox.setDisplayField("");
set in ur code.
To select an entry to a default value (considering first entry)
combobox.getStore().addStoreListener(new... -
25 Sep 2009 6:48 AM
- Replies
- 9
- Views
- 4,871
access the buttonbar of the dialog and change the text.
((Button)box.getDialog().getButtonBar().getItem(0)).setText("changed");
Results 1 to 25 of 119
