Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
when you click the edit button, it should pass the id of the record in the URL parameters.
if your list is combining data from 2 different tables, you should make sure that the id column that you want to pass is included in the List Builder. you can set it as hidden column.
how do i pass id using URL parameters ?
you need to include the id column in the List Builder.
in the CRUD Menu, when you press the Edit button to edit the data record in your form, it will automatically include the id in the URL parameters.
say that your Form page URL is
<baseURL>/jw/web/userview/<appID>/v/_/product_crud?_mode=edit&id=xxxxx
the xxxxx is the id of your selected record data
how can i pass that id from the first form to the second form ?
would you mind sending a image on how it is done or a link that i can refer to
In Joget, lists are templates to display data. The actual data comes from your chosen datasource - forms, APIs, or SQL queries.
For your case:
Documentations:
Hope this helps.
i made two form already
and I have two data lists.
now this is my datalist
i want when i press edit to only edit those empty cloumn
basically if i have two form
1 form will contain the data trying and the date
the other form will have the two missing value
the reason for this is because i want the user to actually input the data
so when he press edit it should take him to the form to edit those empty
but when i press edit it shows this
so basically for example :
i am adding a new product in the list called (products)
then i want some of the details in the products to show in another list called inventory
now this inventory will have same column which is not found in the list products
at first those value will be null then there should be and edit
when i click edit it should allow me to insert the value of those empty column then.
summary :
when I submit a form i want the data to be stored in 2 list
1 list will have all the column I submitted in the form
1 list will have some of the column in the form and some in different column
I want to show my data in a list even those different column currently hold no value
(which I will then edit the list to take me to a another form to update those value)