Hi,
I've tried everything I could
Not sure how to proceed.
have a recursive table with special fields cat_id, cat_father_id, cat_name
On a form
I have several comboBoxes that load different values
first combo does a custom where clause where cat_father_id = 10;
setoptiondatasource(jobsDS)
second combo does a custom where clause where cat_father_id = 20;
setoptiondatasource(employeesDS)
main form is assign a job to a person with some other extra fields
db model is this
table jobs_assigned
ob_id
job_date_add
job_date_mod
job_detaiils
table jobs_join_cat
job_id
cat_id
cat_order
talbe categories
cat_id
cat_father_id
cat_name
I've even created a view, won't insert when using subqueries, mysql issue
Can't find a sample how to perform save in different tables
I have a single form and a single datasource.
Please help me or I will have to find another tool, I am sure Java / JPA and BlazeDS will work, but will make me insane having to code pojos and dto''s here and there.
Cheers,
EJ
I've tried everything I could
Not sure how to proceed.
have a recursive table with special fields cat_id, cat_father_id, cat_name
On a form
I have several comboBoxes that load different values
first combo does a custom where clause where cat_father_id = 10;
setoptiondatasource(jobsDS)
second combo does a custom where clause where cat_father_id = 20;
setoptiondatasource(employeesDS)
main form is assign a job to a person with some other extra fields
db model is this
table jobs_assigned
ob_id
job_date_add
job_date_mod
job_detaiils
table jobs_join_cat
job_id
cat_id
cat_order
talbe categories
cat_id
cat_father_id
cat_name
I've even created a view, won't insert when using subqueries, mysql issue
Can't find a sample how to perform save in different tables
I have a single form and a single datasource.
Please help me or I will have to find another tool, I am sure Java / JPA and BlazeDS will work, but will make me insane having to code pojos and dto''s here and there.
Cheers,
EJ
Comment