diff --git a/COMETwebapp/Components/MultiModelEditor/ElementDefinitionTreeItem.razor.cs b/COMETwebapp/Components/MultiModelEditor/ElementDefinitionTreeItem.razor.cs
new file mode 100644
index 00000000..fb3485f6
--- /dev/null
+++ b/COMETwebapp/Components/MultiModelEditor/ElementDefinitionTreeItem.razor.cs
@@ -0,0 +1,54 @@
+// --------------------------------------------------------------------------------------------------------------------
+//
+// Copyright (c) 2024 Starion Group S.A.
+//
+// Authors: Sam Gerené, Alex Vorobiev, Alexander van Delft, Jaime Bernar, Théate Antoine, João Rua
+//
+// This file is part of COMET WEB Community Edition
+// The COMET WEB Community Edition is the Starion Group Web Application implementation of ECSS-E-TM-10-25 Annex A and Annex C.
+//
+// The COMET WEB Community Edition is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Affero General Public
+// License as published by the Free Software Foundation; either
+// version 3 of the License, or (at your option) any later version.
+//
+// The COMET WEB Community Edition is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program. If not, see .
+//
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace COMETwebapp.Components.MultiModelEditor
+{
+ using COMETwebapp.ViewModels.Components.MultiModelEditor.Rows;
+
+ using Microsoft.AspNetCore.Components;
+
+ ///
+ /// Support class for the component
+ ///
+ public partial class ElementDefinitionTreeItem
+ {
+ ///
+ /// The css class string for the item
+ ///
+ [Parameter]
+ public string CssClass { get; set; } = string.Empty;
+
+ ///
+ /// The to show in the item
+ ///
+ [Parameter]
+ public ElementBaseTreeRowViewModel ElementBaseTreeRowViewModel { get; set; }
+
+ ///
+ /// Handle unmatched values, like "draggable" html attribute, so no error is thrown
+ ///
+ [Parameter(CaptureUnmatchedValues = true)]
+ public Dictionary AdditionalAttributes { get; set; }
+ }
+}
diff --git a/COMETwebapp/Components/MultiModelEditor/MultiModelEditor.razor b/COMETwebapp/Components/MultiModelEditor/MultiModelEditor.razor
index 4ad3b32d..b2d90f09 100644
--- a/COMETwebapp/Components/MultiModelEditor/MultiModelEditor.razor
+++ b/COMETwebapp/Components/MultiModelEditor/MultiModelEditor.razor
@@ -99,14 +99,14 @@
-
+
-
+
-
+
-
+
diff --git a/COMETwebapp/ViewModels/Components/MultiModelEditor/ElementDefinitionTreeViewModel.cs b/COMETwebapp/ViewModels/Components/MultiModelEditor/ElementDefinitionTreeViewModel.cs
index 1c535259..f8b00b05 100644
--- a/COMETwebapp/ViewModels/Components/MultiModelEditor/ElementDefinitionTreeViewModel.cs
+++ b/COMETwebapp/ViewModels/Components/MultiModelEditor/ElementDefinitionTreeViewModel.cs
@@ -126,11 +126,6 @@ public IterationData SelectedIterationData
///
public ObservableCollection Rows { get; private set; } = [];
- ///
- /// Represents the selected ElementDefinitionRowViewModel
- ///
- public ElementDefinition SelectedElementDefinition { get; set; }
-
///
/// Add rows related to that has been added
///
diff --git a/COMETwebapp/ViewModels/Components/MultiModelEditor/IElementDefinitionTreeViewModel.cs b/COMETwebapp/ViewModels/Components/MultiModelEditor/IElementDefinitionTreeViewModel.cs
index 0bbb0cd2..720aa34d 100644
--- a/COMETwebapp/ViewModels/Components/MultiModelEditor/IElementDefinitionTreeViewModel.cs
+++ b/COMETwebapp/ViewModels/Components/MultiModelEditor/IElementDefinitionTreeViewModel.cs
@@ -48,11 +48,6 @@ public interface IElementDefinitionTreeViewModel : IHaveReusableRows
///
Iteration Iteration { get; set; }
- ///
- /// Represents the selected ElementDefinitionRowViewModel
- ///
- ElementDefinition SelectedElementDefinition { get; set; }
-
///
/// Gets the Description of the selected model and iteration
///