-
@($"{CurrData.FasiNav?.ProgettoNav?.ClienteNav?.RagSociale}") - @($"{CurrData.FasiNav?.ProgettoNav?.NomeProj}")
-
@($"{CurrData.FasiNav?.DescrizioneFase}")
-
-
-
-
+ @if (!IsClipboard)
+ {
+
+
+
+
@($"{CurrData.FasiNav?.ProgettoNav?.ClienteNav?.RagSociale}") - @($"{CurrData.FasiNav?.ProgettoNav?.NomeProj}")
+
@($"{CurrData.FasiNav?.DescrizioneFase}")
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ }
@(trimLine($"{CurrData.FasiNav?.ProgettoNav?.ClienteNav?.RagSociale}",65)) - @(trimLine($"{CurrData.FasiNav?.ProgettoNav?.NomeProj}",75))
diff --git a/GPW.CORE.UI/Components/RegAtt.razor.cs b/GPW.CORE.UI/Components/RegAtt.razor.cs
index ed9933e..130025f 100644
--- a/GPW.CORE.UI/Components/RegAtt.razor.cs
+++ b/GPW.CORE.UI/Components/RegAtt.razor.cs
@@ -20,6 +20,9 @@ namespace GPW.CORE.UI.Components
{
public partial class RegAtt
{
+
+ [Parameter]
+ public bool IsClipboard { get; set; } = false;
[Parameter]
public RegAttivitaModel CurrData { get; set; } = null!;
[Parameter]
@@ -114,8 +117,12 @@ namespace GPW.CORE.UI.Components
///
protected async void Edit()
{
- isSelected = true;
- await ItemSelected.InvokeAsync(CurrData);
+ // SOLO SE non è una copia clipboard...
+ //if (!IsClipboard)
+ //{
+ isSelected = true;
+ await ItemSelected.InvokeAsync(CurrData);
+ //}
}
///
diff --git a/GPW.CORE.UI/GPW.CORE.UI.csproj b/GPW.CORE.UI/GPW.CORE.UI.csproj
index c61d8c8..420da7c 100644
--- a/GPW.CORE.UI/GPW.CORE.UI.csproj
+++ b/GPW.CORE.UI/GPW.CORE.UI.csproj
@@ -2,7 +2,7 @@
net6.0
- 1.0.2201.0516
+ 3.0.2201.0518
enable
enable
diff --git a/GPW.CORE.UI/Pages/Planner.razor b/GPW.CORE.UI/Pages/Planner.razor
index 94cd752..a80c983 100644
--- a/GPW.CORE.UI/Pages/Planner.razor
+++ b/GPW.CORE.UI/Pages/Planner.razor
@@ -45,11 +45,6 @@