I’m trying to use a data binding with {{scShowAngebot.data.ShowProjektDetails.aspNachname}} from a data set. The value is displayed correctly in the modal, but not on the page.
Officially, bindings inside bindings, are not allowed.
We also discovered some time ago that using DMX-TEXT or DMX-HTML with a value that has binding, results in that binding getting resolved in runtime.
One thing I can suggest is to write the same expression as in DB, in another div below… just to check if the expression itself is correct in context of the div placement. It works on the modal, so it should be 99% ok, but just to be sure.
As you mentioned we officially do not support bindings inside bindings. Normally the DOM is only parsed once, and it doesn’t parse a second time. There are some exceptions like for SPA pages the dmx-view component. Not sure why it did work on the modal, could also be the repeater that was responsible for it.
So a workaround would be to try creating your own client side component, which would parse the bindings in your table field.
I can’t seem to find the post where Patick shared a sample code in recent past.
Another option could be to re-work your logic and parse the bindings on server side itself.