cbmeeks
cbmeeks

Reputation: 11420

How do I set the value of a NumberField in EXTjs?

I have a NumberField in ExtJS4 that is on a panel.

After I load some data (via an AJAX JSONStore), I want to populate some number fields but can't seem to get it or find documentation.

Any clues on where to look?

Thanks.

Upvotes: 0

Views: 1467

Answers (1)

Gerrat
Gerrat

Reputation: 29700

Did you try:

numberfield.setValue(yourvalue);

Upvotes: 2

Related Questions