Hello Everybody!
This is my first thread in Adobe community, so I would like to say Big Hello!
Have not much experience with LiveCycle Designer so far
currently trying to implement a very basic functionality
that is 'hide Table object in case it contains no data/Rows'
have implemented this for subform (and this is working fine, subform gets hidden when data table is empty)
if( this.Table1._Row1.count == 0) { this.presence = 'hidden'; }
could you pls briefly explain why the below one is not working?I thought it's the same, just different syntax:
if( this.Table1.Row1.instanceManager.count == 0) { this.presence = 'hidden'; }
Your comments very much appreciated!