Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
display in form
-
- Posts: 6
- Joined: Mon Dec 21, 2015 1:43 pm
display in form
I have a form. I use couple dropdown, take data from tables. when I click on entry and open it I see proper information. but when I close (or before click on row) I see a numbers instead text. how to change it?
-
- Posts: 6
- Joined: Mon Dec 21, 2015 1:43 pm
Re: display in form
case type, hub and jurisdiction should be a text not numbers. when you entry form you get text.
how to change it?
how to change it?
You do not have the required permissions to view the files attached to this post.
-
- Posts: 12
- Joined: Fri Sep 11, 2015 7:50 pm
Re: display in form
Hi maw2be,
Instead of the primary key in your SQL statement use the desired field name twice. e.g.:
If you originally had this: SELECT case_type_id, case_type_name FROM case_type
Change it to this:
This works for me, but I'm not sure if this is the correct way this type of problem should be solved.
Instead of the primary key in your SQL statement use the desired field name twice. e.g.:
If you originally had this: SELECT case_type_id, case_type_name FROM case_type
Change it to this:
Code: Select all
SELECT case_type_name, case_type_name FROM case_type
-
- Posts: 6
- Joined: Mon Dec 21, 2015 1:43 pm
Re: display in form
Hi Richsurvey
no it's not working for me. I'm still see numbers (some primary key or what is that) in form field. Have to entry into it to see value. Will carry on to find solution.
EDIT: It's works, I simply have to try on new entry, delete old one.
no it's not working for me. I'm still see numbers (some primary key or what is that) in form field. Have to entry into it to see value. Will carry on to find solution.
EDIT: It's works, I simply have to try on new entry, delete old one.
Re: display in form
maw2be,
To Show Hub you will need to link the hub table you use in your dropdown, to your enquiry table (with INNER JOIN) and choose this field in the Browse instead of the Foreign Key in the enquiry table.
Steven
To Show Hub you will need to link the hub table you use in your dropdown, to your enquiry table (with INNER JOIN) and choose this field in the Browse instead of the Foreign Key in the enquiry table.
Steven
-
- Posts: 6
- Joined: Wed Mar 16, 2016 8:06 pm