@esfaenza/core 15.2.159 → 15.2.161

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1106,9 +1106,13 @@ class EmbeddingComponent extends BaseComponent {
1106
1106
  // Esempio di Complete path: "/pages/embed/crm/leads/leads_search"
1107
1107
  // Esempio di slices: ["", "pages", "embed", "crm", "leads", "leads_search"]
1108
1108
  // Io devo sostanzialmente prendere dal nome del modulo ("crm") in poi. Nome del modulo embeddato eslcuso
1109
+ console.log("Embedding...");
1109
1110
  this.Page = this.CompletePath.split("/").slice(4).join("/");
1111
+ console.log(this.Page);
1110
1112
  this.Pars = ";" + Object.keys(this.NavigationParameters).map(t => `${t}=${this.NavigationParameters[t]}`).join(";");
1113
+ console.log(this.Pars);
1111
1114
  this.QueryPars = "?" + Object.keys(this.QueryParameters).map(t => `${t}=${this.QueryParameters[t]}`).join(";");
1115
+ console.log(this.QueryPars);
1112
1116
  this.EmbeddingSuccesfull = !!this.Page && !!this.Module && !!this.Localhost;
1113
1117
  }
1114
1118
  }