この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
We need a solution for an adaptive form - NOT a 'lifecycle' form...
We have a few tables that allow for the rows to be added (addInstance) and removed (removeInstance). This all works.
What I want to do - is to also fetch/display/null the value of a certain filed within a specific instance of a repeatable row.
For example:
or
Nothing I have tried seems to work - for instance, I have tried:
Any ideas?
解決済! 解決策の投稿を見る。
Try this:
alert(panel1393766227897.instanceManager.instances[panel1393766227897.instanceIndex].textbox_0.value);
Where panel1393766227897 is your repeatable panel and textbox_0 is the textbox.
Thanks,
Mayank
表示
返信
いいね!の合計
Try this:
alert(panel1393766227897.instanceManager.instances[panel1393766227897.instanceIndex].textbox_0.value);
Where panel1393766227897 is your repeatable panel and textbox_0 is the textbox.
Thanks,
Mayank
表示
返信
いいね!の合計
Sorry. that didn't work either.
Tried:
表示
返信
いいね!の合計
Please refer to guide bridge api
表示
返信
いいね!の合計
Download and Check the sample from below link and let me know:
Using the guide bridge API resolveNode get hold of the repeatable panel object
from that panel object get the instanceManager
from the instance manager get the array of instances
and from that array get the value of your specific field
表示
返信
いいね!の合計
I am going to need to study GuideBridge(s) more. Mayank's solution works for me - but the GuideBridge looks like something I may need in the future.
表示
返信
いいね!の合計
This worked. Loving it.
~Thanks
表示
返信
いいね!の合計