Pass array data to matdialog in angularAngular HTML bindingHow to detect a route change in Angular?Angular EXCEPTION: No provider for HttpAngular - Set headers for every requestHow can I write data attributes using Angular?What is the equivalent of ngShow and ngHide in Angular 2+?How do I pass data to Angular routed components?Angular/RxJs When should I unsubscribe from `Subscription`Huge number of files generated for every Angular projectChange Detection does not update the View After MatDialog AfterClosed

Did slaves have slaves?

Why is it called a stateful and a stateless firewall?

Talk about Grandpa's weird talk: Who are these folks?

Neta Revai is achzareyos?

6+8=71 move two matches

Statistical tests for benchmark comparison

Why does an orbit become hyperbolic when total orbital energy is positive?

Is there a theorem in Real analysis similar to Cauchy's theorem in Complex analysis?

What are some examples of research that does not solve a existing problem (maybe the problem is not obvious yet) but present a unique discovery?

How to give my students a straightedge instead of a ruler

Wouldn't Kreacher have been able to escape even without following an order?

Tips for remembering the order of parameters for ln?

In what sequence should an advanced civilization teach technology to medieval society to maximize rate of adoption?

non parametric test for samples with unequal variance for 3 or more samples

Why is belonging not transitive?

Output Distinct Factor Cuboids

What does the "capacitor into resistance" symbol mean?

How often is duct tape used during crewed space missions?

How do we know that black holes are spinning?

Does Forgotten Realms setting count as “High magic”?

Random restarts for unsatisfiable problems

Did Sauron ever betray Morgoth?

Are there any “Third Order” acronyms used in space exploration?

Does household ovens ventilate heat to the outdoors?



Pass array data to matdialog in angular


Angular HTML bindingHow to detect a route change in Angular?Angular EXCEPTION: No provider for HttpAngular - Set headers for every requestHow can I write data attributes using Angular?What is the equivalent of ngShow and ngHide in Angular 2+?How do I pass data to Angular routed components?Angular/RxJs When should I unsubscribe from `Subscription`Huge number of files generated for every Angular projectChange Detection does not update the View After MatDialog AfterClosed






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I want to pass array data to Matdialog using angular ,for single data it working but how to pass array data.



My component where i call dialog



distributor-order.component.ts



openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
console.log(address);
const dialogRef = this.dialog.open(OrderDialogComponent,
width: '1000px',
data:
Address: address,
City: city,
Pin: pin,
phone:phone,
Orderid: orderid,
Orderstatus: orderstatus,
Totalprice: totalprice,
Updateby: updateby,
Updatedate: updatedate

);
dialogRef.afterClosed().subscribe(result =>
console.log('The dialog was closed');
//this.animal = result;
);



Here how can i send array data with this single data.










share|improve this question
































    1















    I want to pass array data to Matdialog using angular ,for single data it working but how to pass array data.



    My component where i call dialog



    distributor-order.component.ts



    openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
    console.log(address);
    const dialogRef = this.dialog.open(OrderDialogComponent,
    width: '1000px',
    data:
    Address: address,
    City: city,
    Pin: pin,
    phone:phone,
    Orderid: orderid,
    Orderstatus: orderstatus,
    Totalprice: totalprice,
    Updateby: updateby,
    Updatedate: updatedate

    );
    dialogRef.afterClosed().subscribe(result =>
    console.log('The dialog was closed');
    //this.animal = result;
    );



    Here how can i send array data with this single data.










    share|improve this question




























      1












      1








      1








      I want to pass array data to Matdialog using angular ,for single data it working but how to pass array data.



      My component where i call dialog



      distributor-order.component.ts



      openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
      console.log(address);
      const dialogRef = this.dialog.open(OrderDialogComponent,
      width: '1000px',
      data:
      Address: address,
      City: city,
      Pin: pin,
      phone:phone,
      Orderid: orderid,
      Orderstatus: orderstatus,
      Totalprice: totalprice,
      Updateby: updateby,
      Updatedate: updatedate

      );
      dialogRef.afterClosed().subscribe(result =>
      console.log('The dialog was closed');
      //this.animal = result;
      );



      Here how can i send array data with this single data.










      share|improve this question
















      I want to pass array data to Matdialog using angular ,for single data it working but how to pass array data.



      My component where i call dialog



      distributor-order.component.ts



      openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
      console.log(address);
      const dialogRef = this.dialog.open(OrderDialogComponent,
      width: '1000px',
      data:
      Address: address,
      City: city,
      Pin: pin,
      phone:phone,
      Orderid: orderid,
      Orderstatus: orderstatus,
      Totalprice: totalprice,
      Updateby: updateby,
      Updatedate: updatedate

      );
      dialogRef.afterClosed().subscribe(result =>
      console.log('The dialog was closed');
      //this.animal = result;
      );



      Here how can i send array data with this single data.







      angular






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 21:34









      Bhagwat Tupe

      1,0984 silver badges20 bronze badges




      1,0984 silver badges20 bronze badges










      asked Mar 28 at 12:47









      diptidipti

      4911 bronze badges




      4911 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0
















          You need to embed the array inside the data-object - the same way you are sending any other data to the dialog. Then you can get it inside the dialog with this.data.arrayForDialog in this case.



          openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
          let myArray = [name: 'jon', name: 'bob'];
          const dialogRef = this.dialog.open(OrderDialogComponent,
          width: '1000px',
          data:
          arrayForDialog: myArray,
          Address: address,
          City: city,
          Pin: pin,
          phone:phone,
          Orderid: orderid,
          Orderstatus: orderstatus,
          Totalprice: totalprice,
          Updateby: updateby,
          Updatedate: updatedate

          );
          dialogRef.afterClosed().subscribe(result =>
          console.log('The dialog was closed');
          //this.animal = result;
          );






          share|improve this answer

























          • Thank you for your suggestion.

            – dipti
            Mar 29 at 11:29










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55398038%2fpass-array-data-to-matdialog-in-angular%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0
















          You need to embed the array inside the data-object - the same way you are sending any other data to the dialog. Then you can get it inside the dialog with this.data.arrayForDialog in this case.



          openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
          let myArray = [name: 'jon', name: 'bob'];
          const dialogRef = this.dialog.open(OrderDialogComponent,
          width: '1000px',
          data:
          arrayForDialog: myArray,
          Address: address,
          City: city,
          Pin: pin,
          phone:phone,
          Orderid: orderid,
          Orderstatus: orderstatus,
          Totalprice: totalprice,
          Updateby: updateby,
          Updatedate: updatedate

          );
          dialogRef.afterClosed().subscribe(result =>
          console.log('The dialog was closed');
          //this.animal = result;
          );






          share|improve this answer

























          • Thank you for your suggestion.

            – dipti
            Mar 29 at 11:29















          0
















          You need to embed the array inside the data-object - the same way you are sending any other data to the dialog. Then you can get it inside the dialog with this.data.arrayForDialog in this case.



          openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
          let myArray = [name: 'jon', name: 'bob'];
          const dialogRef = this.dialog.open(OrderDialogComponent,
          width: '1000px',
          data:
          arrayForDialog: myArray,
          Address: address,
          City: city,
          Pin: pin,
          phone:phone,
          Orderid: orderid,
          Orderstatus: orderstatus,
          Totalprice: totalprice,
          Updateby: updateby,
          Updatedate: updatedate

          );
          dialogRef.afterClosed().subscribe(result =>
          console.log('The dialog was closed');
          //this.animal = result;
          );






          share|improve this answer

























          • Thank you for your suggestion.

            – dipti
            Mar 29 at 11:29













          0














          0










          0









          You need to embed the array inside the data-object - the same way you are sending any other data to the dialog. Then you can get it inside the dialog with this.data.arrayForDialog in this case.



          openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
          let myArray = [name: 'jon', name: 'bob'];
          const dialogRef = this.dialog.open(OrderDialogComponent,
          width: '1000px',
          data:
          arrayForDialog: myArray,
          Address: address,
          City: city,
          Pin: pin,
          phone:phone,
          Orderid: orderid,
          Orderstatus: orderstatus,
          Totalprice: totalprice,
          Updateby: updateby,
          Updatedate: updatedate

          );
          dialogRef.afterClosed().subscribe(result =>
          console.log('The dialog was closed');
          //this.animal = result;
          );






          share|improve this answer













          You need to embed the array inside the data-object - the same way you are sending any other data to the dialog. Then you can get it inside the dialog with this.data.arrayForDialog in this case.



          openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void 
          let myArray = [name: 'jon', name: 'bob'];
          const dialogRef = this.dialog.open(OrderDialogComponent,
          width: '1000px',
          data:
          arrayForDialog: myArray,
          Address: address,
          City: city,
          Pin: pin,
          phone:phone,
          Orderid: orderid,
          Orderstatus: orderstatus,
          Totalprice: totalprice,
          Updateby: updateby,
          Updatedate: updatedate

          );
          dialogRef.afterClosed().subscribe(result =>
          console.log('The dialog was closed');
          //this.animal = result;
          );







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 28 at 21:47









          Lars RødalLars Rødal

          3663 silver badges12 bronze badges




          3663 silver badges12 bronze badges















          • Thank you for your suggestion.

            – dipti
            Mar 29 at 11:29

















          • Thank you for your suggestion.

            – dipti
            Mar 29 at 11:29
















          Thank you for your suggestion.

          – dipti
          Mar 29 at 11:29





          Thank you for your suggestion.

          – dipti
          Mar 29 at 11:29








          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.




















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55398038%2fpass-array-data-to-matdialog-in-angular%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript