fix(billing): InlineForm target can't find sibling Tabular

InlineForm and Tabular are siblings in the same VBox. Default
getWidgetById() searches downward from the source widget, missing
siblings. Use 'app.' prefix to resolve from root.
This commit is contained in:
yumoqing 2026-07-16 16:28:25 +08:00
parent a65422d06b
commit f7f9581cd9

View File

@ -34,7 +34,7 @@
"wid": "billing_form",
"event": "submit",
"actiontype": "method",
"target": "billing_tabular",
"target": "app.billing_tabular",
"method": "render"
}
]