Search Results

Search found 71 results on 3 pages for 'user281180'.

Page 3/3 | < Previous Page | 1 2 3 

  • textarea into array javascript

    - by user281180
    myList contains the following values: value1 value2 value3 function showArray() { var txt = $("#myList").text(); var textread = txt.split('\n'); var msg = ""; for (var i = 0; i < textread .length; i++) { msg += i + ": " + textread [i] + "\n"; } alert(msg); } my alert gives me the following: 0:value1 value2 value3 It`s not what I wanted and expecting, I was expecting something like: 0: value1 1: value2 2: value3 How can I get the values as expected?

    Read the article

  • Array model binding difficulty

    - by user281180
    I am having difficulty for using array model binding. Actually I can see that the values sent from the views are not binded to the model and the arrays still have the values already instantiated. How can I solve this problem?

    Read the article

  • How to return back a message after a submit

    - by user281180
    I have the following code: $('#change').dialog({ autoOpen: false, width: 380, buttons: { "Close": function() { $(this).dialog("close"); }, "Accept": function() { var test = $("#ChangePasswordForm").submit(); alert(test); } } }); In my controller I want to return a string [AcceptVerbs(HttpVerbs.Post)] public string ChangePassword(string Name) { var msg = "Cool!"; if (name != null) return msg; } How can I do that? How can I dipslay

    Read the article

  • Reading label Id

    - by user281180
    Im having a table in which im creating a label dynamically. '<td>' + '<label for="Name" id = ' + value + '>' + text + '</label></td>' I want to retrieve the id of the label and I`m doing the following which is not working: How can I get the Id of the label? function ReadNames() { $('#Table tr').each(function() { NameID.push($(this).find('label').val()); }); }

    Read the article

  • How to set the option value through model

    - by user281180
    I need to have the value for the option in the following: I have created my select as follows: <select id="fromSelectBox" multiple="multiple" > <% foreach (var item in Model.Projects) { %> <option><%=Html.Encode(item.Text)%></option> <%} %> </select> How do I set the value of the option using the value in the model which s item.ID?

    Read the article

  • how do I get the form data in a javascript object so I can send it as the data parameter of an $.aja

    - by user281180
    How to return json after form.submit()? <form id="NotificationForm" action="<%=Url.Action("Edit",new{Action="Edit"}) %>" method="post" enctype="multipart/form-data" onsubmit='getJsonRequestAfterSubmittingForm(this); return false;'> <%Html.RenderPartial("IndexDetails", Model);%> </form> $.ajax({ url: '<%=Url.Action("Edit","Notification") %>', type: "POST", dataType: 'json', data: $("#NotificationForm").submit(), contentType: "application/json; charset=utf-8", success: function(result) { if (result.Result == true) { alert("ghjghsgd"); } }, error: function(request, status, error) { $("#NotSelectedList").html("Error: " & request.responseText); } });

    Read the article

  • HttpContext returning only "/"

    - by user281180
    I have the following two lines of codes in my model, however, both virtual and path have values "\". Where have I gone wrong? var virtual = VirtualPathUtility.ToAbsolute(HttpContext.Current.Request.ApplicationPath); var path =HttpContext.Current.Request.ApplicationPath;

    Read the article

  • how to post a form upon click on checkbox ?

    - by user281180
    I have a form (displayed as a dialog) in which I have various checkboxes. On a click on any of the checkboxes, I want to post the form values to the controller and still doesn`t want my dialog to close. How can I do that? I don`t have a submit button on the form. Ajaxpost closes the dialog after form.submit... What method can I use?

    Read the article

  • simple question: Difficulty in declaring and using variable

    - by user281180
    What is wrong with the following code: I`m having the error message Error 1 ; expected <%if (Model.ReferenceFields != null) {%> <%int count = 1; %> <%foreach (var referenceName in Model.ReferenceFields) {%> <%var value = "value"; %> <%count++; %> <%value = value + count.ToString(); %> <tr> <td><input type="hidden" name="Tests.Index" value='<%value%>' /></td> <td><input type="text" name="Tests['<%value%>'].Value"/></td> <td><input type="button" value= "Add" /></td></tr> <%} %> <%} %>

    Read the article

  • IEnumerable<SelectListItem> error question

    - by user281180
    I have the following code, but i`m having error of Error 6 foreach statement cannot operate on variables of type 'int' because 'int' does not contain a public definition for 'GetEnumerator' C:\Dev\DEV\Code\MvcUI\Models\MappingModel.cs 100 13 MvcUI How can I solve this? Note: string [] projectID; Class Employee { int id {get; set;} string Name {get;set;} } public IEnumerable<SelectListItem> GetStudents() { List<SelectListItem> result = new List<SelectListItem>(); foreach (var id in Convert.ToInt32(projectID)) { foreach( Employee emp in Project.Load(id)) result.Add(new SelectListItem { Selected = false, Text = emp.ID.ToString(), Value = emp.Name }); return result.AsEnumerable(); } }

    Read the article

  • Will the error be displayed?

    - by user281180
    I have an ajax post and in the controller I return nothing. In case there is a failure will the error message displayed with the follwoing code? [AcceptVerbs(HttpVerbs.Post)] public void Edit(Model model) { model.Save(); } $.ajax({ type: "POST", url: '<%=Url.Action("Edit","test") %>', data: JSON.stringify(data), contentType: "application/json; charset=utf-8", dataType: "html", success: function() { }, error: function(request, status, error) { alert("Error: " & request.responseText); } });

    Read the article

  • Set title to a div in mvc

    - by user281180
    I have the following code, but it`s giving me errors <div id="ChangePassword" title="Change password for "&<%=item.Name%>> <%Html.RenderPartial("PasswordDetails", Model); %> </div> I need to display the name in the title. How can I do that?

    Read the article

  • Does a form gets closed after form.submit()?

    - by user281180
    I have the following code: $.ajax({ type: "POST", url: '<%=Url.Action("test","pepole") %>', data: $("#PeopleForm").submit(), contentType: "application/json; charset=utf-8", dataType: "html", sucess: function() { }, error: function(request, status, error) { $("#NotSelectedList").html("Error: " & request.responseText); } }); The PeopleForm is displayed in a dialog. After the submit, the dialog gets closed. Is that normal? I don`t want the dialog to get closed after the submit. How can I do that?

    Read the article

< Previous Page | 1 2 3