13

Given a select list loaded with product options, I want the label to be in the format of option name and then price in parenthesis. So for example: "Product Option B ($1,432.12)". My option object has the properties "name" and "price". Price is numeric, I want it formatted with the currency filter. How would I do this? I'm thinking maybe a custom filter that takes a string and numeric value. Just not sure how I would be able to apply the filter within ng-options.

The following code just displays the name (not price):

<select class="form-control"
        ng-model="selectedOption"
        ng-options="option.name for option in category.options"></select> 
Ryan Langton
  • 6,294
  • 15
  • 53
  • 103

1 Answers1

30

This should work for you:

<select class="form-control"
    ng-model="selectedOption"
    ng-options="option.name + ' (' + (option.price | currency:'USD$') + ')' for option in options">
</select>

This will render a drop-down with items in this form: Item A (USD$14.00)

http://jsfiddle.net/6MYc3/

Sebastian
  • 16,813
  • 4
  • 49
  • 56
  • This is perfect but I have one problem. I have options which I want to show like this `code - desc`. But one of my options is `code=""`, `desc=""` and in the result I get `" - "` but I want just to be blank as `""`. How can I achieve this please? – Gondil Oct 11 '17 at 12:36
  • oh I see `option.code as option.code==='' ? '' : (option.code + ' - ' + option.desc) for option in options` – Gondil Oct 11 '17 at 13:25