Add Existing with Refresh button after modifying root dirs.

Renamed AddSeries/Add to AddSeries/Index
This commit is contained in:
Mark McDowall 2011-05-31 13:50:19 -07:00
commit 8d38f98338
7 changed files with 48 additions and 20 deletions

View file

@ -9,7 +9,7 @@
@Html.TextBoxFor(m => m.Path, new { @class = "root_dir_text", id = "path_" + Model.Id })
<a href="#" class="deleteRow" onclick="deleteRootDir('@ViewData["RootDirId"]')">
<img src="../../Content/Images/X.png" alt="Delete" width="20px" height="20px" style="vertical-align: middle; margin-top: 7px;"/></a>
<input type="button" value="Save" style="padding: 2px 10px 2px 10px; vertical-align: middle; margin: 0px; margin-top: 7px;" onclick="saveRootDir(@Model.Id)"/>
<button style="padding: 2px 10px 2px 10px; vertical-align: middle; margin: 0px; margin-top: 7px;" onclick="saveRootDir(@Model.Id)">Save</button>
@Html.HiddenFor(x => x.Id, new { id = "id_" + Model.Id })
</fieldset>