Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
URL : /jw/js/json/util.js
English |
---|
Auto included in all userview pages. |
Chinese |
---|
自动包含在所有用户视图页面中。 |
Thai |
---|
อัตโนมัติรวมอยู่ในหน้า userview ทั้งหมด |
Used to deal with assignment of a logged in user.
Chinese |
---|
用于处理登录用户的分配。 |
Thai |
---|
ใช้เพื่อจัดการกับการมอบหมายของผู้ใช้ที่เข้าสู่ระบบ |
Warning |
---|
Chromium has a more strict CORS policy. Therefore the Javascript execution from another domain to attempt to set the session cookie to the Joget domain has been blocked. |
...
Code Block | ||
---|---|---|
| ||
var value = FormUtil.getValue("field1");
// you could also use it to get value from a subform
// FormUtil.getValue("subformElementId_subformTargetFormId_subformFieldID")
// using Expenses Claim App as an example, and you are in the ExpensesClaim form and wish to get the title value from the subform
// parent form ID = ExpensesClaim
// subform ID in parent form = sfD
// child form ID = ExpensesClaimNew
// the field ID = title
var value = FormUtil.getValue("sfD_ExpensesClaimNew_title"); |
Description
...