I am having following node structure
_Parent Site (Main site)
EN (English Site)
- Node 1
- Node 2
- Node 3
CY (wales site)
- Node 1
- Node 2
- Node 3
ES (spanish site)
- Node 1
- Node 2
- Node 3
I have copy all node of EN to other two site. (So all the contain of all node are same )
I have use "Multinode Treepicker" as CSection for selecting node as shown in following code.
< umbraco:Macro runat="server" Language="razor">
@{
if(@Model.CSection != null)
{
string[] nodeIds = @Model.CSection.Split(',');
The above code workings fine when rending EN site. but gives error while rendering CY and ES site. (As all site are having same value)
Following line gives error. for (CY and ES site)
@Model.CSection.Split(',');
Am I missing any thing ? ,I am not able to make it out at all
I am using umbraco 7.2.6