[RDMLX]Offline parameter passing between forms
Posted: Tue Aug 15, 2017 6:01 pm
Hi,
Based on LREX0307 and LREX0308, I have created 2 offline forms and I was able to pass a binded field value between these forms(One form contains a table and one form contains textbox).
However, I would like to put a table on the second(child) form and select one row to pass back to the first(parent) form. It's like "popover prompter" on online example.
Could you please let me know how to set the current row value of table to a binded field on the second form so that it can pass back to the first form?
I appreciate your kind advice.
Best Regards,
Megumi Sawada
Based on LREX0307 and LREX0308, I have created 2 offline forms and I was able to pass a binded field value between these forms(One form contains a table and one form contains textbox).
However, I would like to put a table on the second(child) form and select one row to pass back to the first(parent) form. It's like "popover prompter" on online example.
Could you please let me know how to set the current row value of table to a binded field on the second form so that it can pass back to the first form?
Code: Select all
#Com_Owner.Set_TextBox Name(ProdNameX) Layout_Row(1) Layout_Col(1)
#Com_Owner.Set_Binding Name(ProdNameX) Property(VALUE) Bindtotype(FLD) Bindto('ProdNameX')
#Com_Owner.Set_Table Name(BOUND_TABLE) Layout_Row(2) Layout_Col(1) Layout_Cols(-1)
#Com_Owner.Set_Binding Name(BOUND_TABLE) Property(ROWLIST) Bindtotype(TBL) Bindto('ProdM')
#Com_Owner.Set_Binding Name(BOUND_TABLE) Property(ROWLIST) Bindtotype(SQL) Bindto('SELECT ROWID,ProdCode,ProdName FROM ProdM')
#Com_Owner.Set Property('BOUND_TABLE.COL%1.TYPE') To('Label')
#Com_Owner.Set Property('BOUND_TABLE.COL%1.NAME') To('ProdID')
#Com_Owner.Set Property('BOUND_TABLE.COL%1.HEADER.TEXT') To('商品コード')
#Com_Owner.Set_Binding Name('BOUND_TABLE.COL%1') Property(CONTENT.VALUE) Bindtotype(FLD) Bindto('ProdCode')
#Com_Owner.Set Property('BOUND_TABLE.COL%2.TYPE') To('Label')
#Com_Owner.Set Property('BOUND_TABLE.COL%2.NAME') To('ProdName')
#Com_Owner.Set Property('BOUND_TABLE.COL%2.HEADER.TEXT') To('商品名')
#Com_Owner.Set_Binding Name('BOUND_TABLE.COL%2') Property(CONTENT.VALUE) Bindtotype(FLD) Bindto('ProdName')Best Regards,
Megumi Sawada