#9803 closed defect (fixed)
[cla][patch] Declarative dojox.form.RangeSlider has value array existing of strings instead of numbers
Reported by: | Mark Wubben | Owned by: | dante |
---|---|---|---|
Priority: | high | Milestone: | 1.4 |
Component: | DojoX Form | Version: | 1.3.2 |
Keywords: | Cc: | dante | |
Blocked By: | Blocking: |
Description
When declaratively creating a dojox.form.RangeSlider
, the value
attribute isn't parsed into numbers:
<div dojoType="dojox.form.HorizontalRangeSlider" value="-50,50">
gives a value of ["-50", "50"]
rather than [-50, 50]
.
I've attached a patch. CLA is on file.
Attachments (1)
Change History (3)
Changed 11 years ago by
Attachment: | RangeSlider.js.patch added |
---|
comment:1 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
Milestone: | tbd → 1.4 |
---|
Note: See
TracTickets for help on using
tickets.
(In [20321]) fixes #9803 - thanks markwubben for the patch + report.