An open API service indexing awesome lists of open source software.

https://github.com/vokseverk/vokseverk.addresseditor

An Umbraco Property Editor for editing the different fields of a postal address.
https://github.com/vokseverk/vokseverk.addresseditor

property-editor umbraco

Last synced: 21 days ago
JSON representation

An Umbraco Property Editor for editing the different fields of a postal address.

Awesome Lists containing this project

README

        

# Address Editor for Umbraco

A ‘Zip’ input field inside a square with the Vokseværk ‘fire-heart’ logo

This is a configurable address editor for Umbraco v7 & v8, that is
capable of putting the zip code and city name editors on the same row :)

It's a nice replacement for having 3, 4, 5 or more generic *Textstring* fields
on the doctype — a single property for the data instead of having to create a
convoluted *Nested Content/Archetype* setup for it.

The [releases page][RELS] has PropertyValueConverters for use in your projects.

[RELS]: https://github.com/vokseverk/Vokseverk.AddressEditor/releases

## Screenshots

### Editor

![Address Editor](images/addresseditor-editor.jpg)

### Configuration

![Versionnumber Config](images/addresseditor-config.jpg)

## Rendering

The raw value is a JSON object with the individual segments, e.g.:

```json
{
"name": "Etch-A-Sketch",
"address": "Streetname 55",
"zipcode": "1234",
"city": "East Drawing"
}
```

Using the PropertyValueConverter you can access them directly:

```razor


@(Model.Name)


@(Model.Address)


@(Model.Zipcode)
@(Model.City)



```