SeriesId is now passed back to the controller when adding a new/existing series.

This commit is contained in:
Mark McDowall 2011-09-08 20:52:25 -07:00
commit 7786f6a914
7 changed files with 17 additions and 16 deletions

View file

@ -40,6 +40,7 @@ function bindSeriesAutoComplete(selector) {
delay: 500,
select: function (event, ui) {
$(this).val(ui.item.Title);
$(this).siblings('.seriesId').val(ui.item.Id);
return false;
}
})