Numeric field is set following:
object > field > pattern > display > in pattern field num{zz.}
in initial evetn
this.rawValue = this.parent.index + 1;
Another one is add button.
Problem is in numaric field. It shows
1,
2, instead of 1. 2.
I wish it will be
1.
2.
3.
related to the add button.
Solved! Go to Solution.
Views
Replies
Total Likes
What is the severa event?
Use the code in the layoutReady:Event but don't use a display pattern.
The best would be you use a text field not a numeric field.
Views
Replies
Total Likes
Hi,
use the layoutReady:Event instead the initialize:Event.
Views
Replies
Total Likes
Thanks.
Actually I want
1.
2.
.
.
. as output.
However it shows
1,
2,
.
.
Just it shows comma after number instead of full stop (period). I want full stop.
How can I solve it?
Views
Replies
Total Likes
Remove the pattern and use
var nIndex = this.parent.index + 1;
this.rawValue = nIndex + ".";
I apologize that it is not solved.
Where need to place the code? I have paced in severa event.
Views
Replies
Total Likes
What is the severa event?
Use the code in the layoutReady:Event but don't use a display pattern.
The best would be you use a text field not a numeric field.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies