Changes between Initial Version and Version 1 of Ticket #21496
- Timestamp:
- Nov 22, 2013, 4:02:24 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21496
- Property Triage Stage Unreviewed → Accepted
-
Ticket #21496 – Description
initial v1 1 1 If I use a TextInput widget to edit a PointField, form validation crashes because the widget doesn't have a `map_srid`. 2 2 3 The string representation of a Point using the default srid (4326) doesn't define the SRID, which is unfortunate. 3 The string representation of a Point using the default srid (4326) doesn't define the SRID, which is unfortunate. 4 {{{ 4 5 >> p.srid 5 6 4326 … … 10 11 >> p2.srid 11 12 None 12 13 }}} 13 14 I think the best solution would be to allow the field to transform the value into whatever the default is set as for the field, unless otherwise specified by the widget. 14 15