Search Type: Posts; User: I_P
Search: Search took 0.02 seconds.
-
30 Apr 2012 4:40 AM
- Replies
- 0
- Views
- 238
Hello,
I need to get values of DateFilter's items("Before", "After" and "On") separately. Is it possible? -
16 Feb 2012 12:51 AM
Jump to post Thread: Problem with regular expression by I_P
- Replies
- 5
- Views
- 920
Thanks for replying, the post is very useful. By the way, I've found useful page for regexes: rubular.com
-
15 Feb 2012 3:29 AM
Jump to post Thread: Problem with regular expression by I_P
- Replies
- 5
- Views
- 920
Have found it.
(?=(.*[0-9].*){3,}) is shorter and works similar -
15 Feb 2012 12:40 AM
Jump to post Thread: Problem with regular expression by I_P
- Replies
- 5
- Views
- 920
Thanx a lot!
(?=.*[0-9].*[0-9].*[0-9] ) Works great! :))
But isn't there any standart expression? I mean, if my password requires, let's say, at least 3 digits, at least 3 upper letters and at... -
14 Feb 2012 7:43 AM
Jump to post Thread: Problem with regular expression by I_P
- Replies
- 5
- Views
- 920
Hello,
My password string has to have at least three digits. I wanted to use (?=.*[0-9]{3,}) expression but i faced the problem: this expression makes password string to have at least three digits... -
24 Jan 2012 6:22 AM
Jump to post Thread: ComponentPlugin at the top of a field by I_P
- Replies
- 0
- Views
- 328
Hello,
I'm using ComponentPlugin. It appears under the field, but i want it to appear at the top. Is it possible? -
24 Jan 2012 4:27 AM
- Replies
- 2
- Views
- 915
Thanks for replying, but it is not exactly what I want. I don't want my textfield to listen for focus event. I have a FormPanel with several textfields. I also have a KeyNav for the FormPanel. I want...
-
24 Jan 2012 2:31 AM
- Replies
- 2
- Views
- 915
Hello,
Is there any way in GXT to find out which component of FormPanel is focused? -
18 Jan 2012 6:05 AM
Jump to post Thread: TwinTriggerField change icon by I_P
- Replies
- 6
- Views
- 5,266
Create a class in your css. For example:
.x-form-trigger-field{
background-image: url(../images/default/form/image.gif) !important;
} and then call setTriggerStyle method for your trigger field... -
18 Jan 2012 2:43 AM
Jump to post Thread: ToolTips to EditorTreeGrid cells by I_P
- Replies
- 7
- Views
- 1,205
I tried it first and got NullPointerException. I thought i was because of cell editor, but after a little looking throught the code i found real problem and solved it. Now I just did't put...
-
17 Jan 2012 6:59 AM
Jump to post Thread: ToolTips to EditorTreeGrid cells by I_P
- Replies
- 7
- Views
- 1,205
It works grate!Thanks a lot, Ersmarker! The first problem has been solved!
And nothing about the second one? -
17 Jan 2012 4:48 AM
Jump to post Thread: ToolTips to EditorTreeGrid cells by I_P
- Replies
- 7
- Views
- 1,205
Thank for replying, but i need exactly EditorTreeGrid. I can't make quicktip work with EditorTreeGrid, because it needs column.setRenderer command and TreeGrid needs it either. I thought about...
-
17 Jan 2012 2:35 AM
Jump to post Thread: ToolTips to EditorTreeGrid cells by I_P
- Replies
- 7
- Views
- 1,205
Hello,
I want to add a tooltip(which will show cell's value) to every cell of EditorTreeGrid. How can I do it with GXT?
Thanks a lot! -
22 Oct 2011 4:02 AM
Jump to post Thread: Filter ComboBox by I_P
- Replies
- 0
- Views
- 628
Hello, everybody.
I have code:
SimpleComboBox<String> combo=new SimpleComboBox<String>();
combo.add("Type one");
combo.add("Type two");
My trouble is: when I write letter "T" in my combo, it... -
5 Oct 2011 11:36 PM
Jump to post Thread: TextField Resizing by I_P
- Replies
- 1
- Views
- 868
The problem has been solved with using new FormData("100%") as the second parameter of FormPanel's add method.
-
5 Oct 2011 5:23 AM
Jump to post Thread: TextField Resizing by I_P
- Replies
- 1
- Views
- 868
Hello,
I have FormPanel with TextField and Multifield onto it. FormPanel itself is onto Dialog. I would like to resize fields on dialog resizing(make them less when dialog and formpanel with it is... -
3 Oct 2011 4:40 AM
- Replies
- 0
- Views
- 622
Hello,
I have this code:
ContentPanel cp=new ContentPanel();
Button submitbutton = new Button("Submit");
submitbutton.disable();
Button closebutton = new Button("Close");
... -
13 Sep 2011 4:45 AM
Jump to post Thread: Problem with Grid's data by I_P
- Replies
- 4
- Views
- 914
It helped!! Thank you very much! :)
-
13 Sep 2011 4:35 AM
Jump to post Thread: Problem with Grid's data by I_P
- Replies
- 4
- Views
- 914
public class Person extends BaseModel{
public Person() {
}
public Person(String firstname, String lastname)
{ -
13 Sep 2011 4:26 AM
Jump to post Thread: Problem with Grid's data by I_P
- Replies
- 4
- Views
- 914
Hello, I'm trying to make a grid:
protected void initialize()
{
LayoutContainer container = new LayoutContainer();
container.setLayout(new FitLayout());
ContentPanel cp =...
Results 1 to 20 of 20
