Click here to Skip to main content
15,886,199 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Transaction scope and web apis Pin
Ger Hayden14-Nov-19 10:13
Ger Hayden14-Nov-19 10:13 
QuestionWorkBox is not broadcasting updates. Pin
Member 1088816411-Nov-19 3:53
Member 1088816411-Nov-19 3:53 
QuestionPlease help: “Invalid argument supplied for foreach()” in Wordpress Pin
Member 146471226-Nov-19 13:28
Member 146471226-Nov-19 13:28 
AnswerRe: Please help: “Invalid argument supplied for foreach()” in Wordpress Pin
Richard MacCutchan6-Nov-19 21:38
mveRichard MacCutchan6-Nov-19 21:38 
AnswerRe: Please help: “Invalid argument supplied for foreach()” in Wordpress Pin
jkirkerx7-Nov-19 12:29
professionaljkirkerx7-Nov-19 12:29 
Questionweb development Pin
Member 142901874-Nov-19 1:55
Member 142901874-Nov-19 1:55 
AnswerRe: web development Pin
Richard MacCutchan4-Nov-19 2:27
mveRichard MacCutchan4-Nov-19 2:27 
QuestionJquery fuction not called when I append achor tag . Pin
KGr2830-Oct-19 4:29
KGr2830-Oct-19 4:29 
So initially when I call my view it pulls the files from the database which users have uploaded and it allows users to delete those files if they don't need them anymore , this is done by when they click on the specific Actionlink, it calls a jquery function which calls my ajax which calls my Remove() Function in my controller , when the files are deleted I append the new list back to the customer.

My Issue: When the new list is appended back, the jquery function is no longer called and it goes directly to the method in my controller. I checked my html anchor-tag in my developer tools of both the appended files and the originally uploaded files and they are identical , I am not sure what is causing this issue, and help will be greatly appreciated.


Here is the anchor tags that work initially when the page is loaded:

C#
<div class="portlet-body form " id="attachments">
                                        @if (ViewBag.file != null)
                                        {
                                            foreach (var x in ViewBag.file)
                                            {
                                                if (string.IsNullOrWhiteSpace(x.FileName))
                                                {
                                                    continue;
                                                }
                                                @Html.ActionLink(" ", "Remove", "Chargeback", new { name = (string)x.FileName, filePath = (string)x.FilePath }, new { @class = "fas fa-trash-alt", @id = "uploadsGif" })                                                
                                                @Html.ActionLink((string)x.FileName, "DownloadFile", "Chargeback", new { name = (string)x.FileName, id = "uploads" }, null)
                                                DateTime.Now.ToString("MM/dd/yyyy");
                                            }
                                        }
  </div>


Here is my jquery function which is appending my achor-tag/ActionLink:

C#
$("#uploadsGif").click(function () {

            debugger;

              ...

            debugger;
             $.ajax({
                type: 'POST',
                url: "/Chargeback/Remove",
                dataType: 'json',
                data: {
                    name: name,
                    filePath: filePath
                },
                success: function (data) {

                    debugger;
                    $("#lblresponce").append("File has been successfully removed");

                    setTimeout(function () {
                        $("#lblresponce").empty();
                    }, 5000)
                    debugger;
                    $("#attachments").empty();
                    $.each(data, function (i, item) {
                        $("#attachments").append('<a class="fas fa-trash-alt" href=/Chargeback/Remove?name=' + data[0].FileName + ';filePath=' + data[0].FilePath + 'id="uploadsGif"'+'>' + '</a>'); --> ISSUE                       $("#attachments").append('<a href=/Chargeback/DownloadFile/uploads?name=' + data[0].FileName +'>' + data[0].FileName + '</a>');
                    });

                },
                error: function (data) {

                }

             });
             debugger;
          return false;

        })

AnswerRe: Jquery fuction not called when I append achor tag . Pin
Richard Deeming30-Oct-19 5:30
mveRichard Deeming30-Oct-19 5:30 
GeneralRe: Jquery fuction not called when I append achor tag . Pin
KGr2830-Oct-19 8:03
KGr2830-Oct-19 8:03 
AnswerRe: Jquery fuction not called when I append achor tag . Pin
Leanbridge Technologies1-Nov-19 22:24
professionalLeanbridge Technologies1-Nov-19 22:24 
QuestionLogin Information Pin
Member 1463762428-Oct-19 19:29
Member 1463762428-Oct-19 19:29 
AnswerRe: Login Information Pin
Richard MacCutchan28-Oct-19 21:54
mveRichard MacCutchan28-Oct-19 21:54 
QuestionGrabbing routeValues from ActionLink with jquery. Pin
KGr2828-Oct-19 9:12
KGr2828-Oct-19 9:12 
AnswerRe: Grabbing routeValues from ActionLink with jquery. Pin
ZurdoDev28-Oct-19 9:49
professionalZurdoDev28-Oct-19 9:49 
GeneralRe: Grabbing routeValues from ActionLink with jquery. Pin
KGr2828-Oct-19 9:52
KGr2828-Oct-19 9:52 
GeneralRe: Grabbing routeValues from ActionLink with jquery. Pin
Richard Deeming28-Oct-19 10:11
mveRichard Deeming28-Oct-19 10:11 
GeneralRe: Grabbing routeValues from ActionLink with jquery. Pin
KGr2828-Oct-19 10:34
KGr2828-Oct-19 10:34 
QuestionWeb API and SignlaR Test Pin
Kevin Marois16-Oct-19 6:18
professionalKevin Marois16-Oct-19 6:18 
QuestionWeb Site Log Out in Mozilla Firefox on Post back Pin
Siddharth Chudasama10-Oct-19 22:52
Siddharth Chudasama10-Oct-19 22:52 
QuestionRe: Web Site Log Out in Mozilla Firefox on Post back Pin
ZurdoDev28-Oct-19 9:50
professionalZurdoDev28-Oct-19 9:50 
QuestionHow to get uploaded file in ajax Post Pin
KGr283-Oct-19 4:17
KGr283-Oct-19 4:17 
AnswerRe: How to get uploaded file in ajax Post Pin
Richard Deeming3-Oct-19 4:33
mveRichard Deeming3-Oct-19 4:33 
GeneralRe: How to get uploaded file in ajax Post Pin
KGr283-Oct-19 4:39
KGr283-Oct-19 4:39 
GeneralRe: How to get uploaded file in ajax Post Pin
Richard Deeming3-Oct-19 4:52
mveRichard Deeming3-Oct-19 4:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.