Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Смена метрополитена
  2.     subway: function (data) {
  3.       var that = this;
  4.       var tpl = _.template('<option value="<%= id %>"> <%= title %> </option>');
  5.       this.$('.ra-vaf-item-section__subway').show();
  6.       this.$('.ra-vaf-item-section__subway').find('.ra-vaf-field-h').html('<select id="ra-vaf-fields-subway" name="contact[subway]"></select>');
  7.  
  8.       $('#ra-vaf-fields-subway').append('<option value="0">Выберите метро...</option>');
  9.  
  10.       _.each(data, function (item) {
  11.         $('#ra-vaf-fields-subway').append(tpl(
  12.           {id: item.id, title: item.title}
  13.         ));
  14.       });
  15.     },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement