TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sneha K
1.2k
527
195.9k
How to store value which is entered in popup window mvc4?
Feb 15 2016 11:38 PM
Hi I want to save the value which is entered in the PopUp window.
In my CustomerView I have Field called Area and near to area i have created one add button. suppose i enter the customer details(customerName, alias, customerType, street, location, place...) and then select the area . suppose the area is not in the dropdown list means i need to add the area . so i click the add button . it open one Pop-Up window in the same view.
My PopUp-window
If i enter the Display Name ,PrintName, City and click ok it save the null values with new Guid in Area Table that is the value of DisplayName ,PrintName , CityID will be null.so please any one correct my code.
My ViewModel
Actually i created the Property of all fields which is in CustomerView in CustomerViewModel. Now i open the Popup window in same view so i created the property of fields which is popup window in same CustomerViewModel .
public System.Guid CustomerID { get; set; }
public string CustomerName { get; set; }
public string Street { get; set; }
public string Location { get; set; }
public string Place { get; set; }
public Nullable<System.Guid> AreaID { get; set; }
public string DisplayName { get; set; }
public string PrintName { get; set; }
public Nullable<System.Guid> CityID { get; set; }
My ControllerCode
public PartialViewResult ShowPartailView()
{
ViewBag.CityID = new SelectList(db.Cities, "CityID", "DisplayName");
return PartialView("ShowPartailView");
}
[HttpPost]
public ActionResult ShowPartailView(CustomerViewModel areaModel)
{
ViewBag.CityID = new SelectList(db.Cities, "CityID", "DisplayName");
var Area_Db= new Area()
{
AreaID = Guid.NewGuid(),
DisplayName = areaModel.DisplayName,
PrintName = areaModel.PrintName,
CityID = areaModel.CityID
};
db.Areas.Add(Area_Db);
db.SaveChanges();
My View
Area Field with Button in parent View(CustomerView)
<div id="Area">
<div class="col-sm-4">
<div class="form-group">
@Html.LabelFor(model => model.Area)
@Html.DropDownList("AreaID", null, "Select", new { @class = "form-control" })
<input type="button" id="btnArea" onclick="showPopUp()" />
</div>
</div>
</div>
PopUpwindow Code
<form action="Area">
<div class="openDialog" style="display: none;" id="Popupmodel">
<div class="col-xs-12">
<div class="container">
<div class="col-sm-4">
<div class="form-group">
@Html.LabelFor(model => model.DisplayName, new { @class = "control-label" })
@Html.TextBoxFor(model => model.DisplayName, new { @class = "form-control", type = "text" })
@Html.ValidationMessageFor(model => model.DisplayName)
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
@Html.LabelFor(model => model.PrintName, new { @class = "control-label" })
@Html.TextBoxFor(model => model.PrintName, new { @class = "form-control", type = "text" })
@Html.ValidationMessageFor(model => model.PrintName)
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
@Html.Label("City")
@Html.DropDownList("CityID", "Select")
</div>
</div>
</div>
</div>
</div>
</form>
<div class="text-right innerAll">
<input type="submit" style="float: left;" class="btn btn-primary " value="Save" />
</div>
</fieldset>
J - query code with reference plugin
<script src="~/Scripts/jquery-1.7.1.min.js"></script>
<script src="~/Scripts/jquery-ui-1.8.24.min.js"></script>
<script src="~/Scripts/jquery-ui-1.8.24.js"></script>
<script>
function showPopUp() {
$("#Popupmodel").dialog({
height: 600,
width: 500,
modal: true,
buttons: {
"OK": function () {
$.post("@Url.Action("ShowPartailView", "Customer")", function (data) {
//if (data) {
// $('#divTest').append(data);
//}
});
$(this).dialog("close");
},
}
});
}
</script>
I follow the correct procedure i think so . but it save the null values. Anyone give me the correct solution
Advance Thanks..
Reply
Answers (
3
)
Error while splitting the datetime fields
Table border while print in muliple pages ?