Hello Community,
we had nesting of UDGrids and this was working fine. Since this week the nested Grid is not loading anymore. If we debug in the Browser we will see an error 404 page not found.
Here is an code example which results in the same error.
$TestPage = New-UDPage -Name "Testpage" -Icon taxi -Content {
New-UDRow -Columns {
New-UDColumn -Size 3 -Content {
New-UDGrid -Title "Test1" -Headers @("Name1","Info") -Properties @("Name1","Info") -Endpoint {
[PSCustomObject]@{
Name1 = "test1";
Info = New-UDButton -Text "More" -OnClick {
Set-UDElement -Id 'TestElement' -Content {
New-UDGrid -Title "Test2" -Headers @("Name2") -Properties @("Name2") -Endpoint {
[PSCustomObject]@{
Name2 = "test2";
} | Out-UDGridData
}
}
};
} | Out-UDGridData
}
}
New-UDColumn -Size 3 -content {
New-UDElement -Id 'TestElement' -Tag div -Content {
}
}
}
}
Has anyone an idea what is going on here?
Cheers