Search Type: Posts; User: cstdenis
Search: Search took 0.04 seconds.
-
8 May 2009 2:40 PM
Jump to post Thread: ext.ux.wizard.WizardWindow by cstdenis
- Replies
- 46
- Views
- 42,011
Would be useful to be able to add cards after the object is created.
public void addCard(WizardCard card) {
this.cards.add(card);
}
public void addCard(int index, WizardCard card) {
... -
7 Apr 2009 11:02 AM
Jump to post Thread: input mask plugin by cstdenis
- Replies
- 21
- Views
- 35,356
Yes.
I don't know how hard it would be to make it work, but it should be possible in theory. -
7 Apr 2009 10:37 AM
Jump to post Thread: input mask plugin by cstdenis
- Replies
- 21
- Views
- 35,356
I'm thinking more like modifiers.
9+ = /[0-9]+/
9* = /[0-9]*/
9? = /[0-9]?/
a+ = /[A-Za-z]+/
a* = /[A-Za-z]*/
a? = /[A-Za-z]?/
h = /[A-Za-z0-9]/
h+ = /[A-Za-z0-9]+/ -
7 Apr 2009 10:22 AM
Jump to post Thread: Documentation Center Preview by cstdenis
- Replies
- 42
- Views
- 30,421
The tutorials category is missing from the table of contents tree.
-
7 Apr 2009 10:07 AM
Jump to post Thread: input mask plugin by cstdenis
- Replies
- 21
- Views
- 35,356
If the phone number mask is "(999) 999-9999 x999" but the phone number you need to enter is 555-555-1234 then what? That mask will not accept (555) 555-1234 because it's missing characters.
But if... -
7 Apr 2009 8:40 AM
Jump to post Thread: input mask plugin by cstdenis
- Replies
- 21
- Views
- 35,356
This is very useful.
Some suggestions for improvement:
* Only return the value that is entered, not the underscores.
* Add support for optional characters. In your example you have "(999)... -
24 Mar 2009 2:28 PM
Jump to post Thread: Input mask TextField? by cstdenis
- Replies
- 2
- Views
- 6,567
I also need this functionality.
gwt-ext has it, too bad ext-gwt does not seem to :s
Results 1 to 7 of 7
