Page 1 of 1

designpart for tabs disappeared from the formsscreen

Posted: Fri Mar 19, 2021 7:38 pm
by Henk_2a
Hi all

After using the previous versions of nuBuilder with lots of pleasure I decided to start building in 4.5
I made some progress, but failed on the subform. And even worse, all of a sudden the tab-part of the designscreen for forms disappeared!
Now I can't go on building, it won't let me save any form without designing at least one tab! No idea what is the problem, but I hope there is a simple solution for restoring the tab part.
I tried upgrading the software, but no success.

Thanks for your help

Re: designpart for tabs disappeared from the formsscreen

Posted: Sat Mar 20, 2021 7:50 am
by kev1n
Hi,

You you upload a screenshot?

Re: designpart for tabs disappeared from the formsscreen

Posted: Sat Mar 20, 2021 5:35 pm
by Henk_2a
tt.jpg
No tabs-part in the lower part of the screen .....

Re: designpart for tabs disappeared from the formsscreen

Posted: Sat Mar 20, 2021 5:42 pm
by kev1n
That's really odd.

Could you try the following to see if the Tabs subform exists?

Open the Developer Console (F12 or CTRL+SHIFT+i) and enter:

Code: Select all

$('#zzzzsys_tab_sf').length;
This should return 1 if the object exists.

Then try to make it visible with

Code: Select all

nuShow('zzzzsys_tab_sf');

Re: designpart for tabs disappeared from the formsscreen

Posted: Sat Mar 20, 2021 6:32 pm
by Henk_2a
tt.jpg
0 ....... does not exist

Re: designpart for tabs disappeared from the formsscreen

Posted: Sat Mar 20, 2021 7:24 pm
by kev1n
Can you also check if the tab subform object exists in the database?
sf_obj.png

Code: Select all

SELECT * FROM `zzzzsys_object` WHERE `sob_all_id` LIKE 'zzzzsys_tab_sf'
If not, create it with this SQL

Code: Select all

INSERT INTO `zzzzsys_object` (`zzzzsys_object_id`, `sob_all_zzzzsys_form_id`, `sob_all_table`, `sob_all_type`, `sob_all_id`, `sob_all_label`, `sob_all_zzzzsys_tab_id`, `sob_all_order`, `sob_all_top`, `sob_all_left`, `sob_all_width`, `sob_all_height`, `sob_all_cloneable`, `sob_all_align`, `sob_all_validate`, `sob_all_access`, `sob_calc_formula`, `sob_calc_format`, `sob_run_zzzzsys_form_id`, `sob_run_filter`, `sob_run_method`, `sob_run_id`, `sob_display_sql`, `sob_select_multiple`, `sob_select_2`, `sob_select_sql`, `sob_lookup_code`, `sob_lookup_description`, `sob_lookup_description_width`, `sob_lookup_autocomplete`, `sob_lookup_zzzzsys_form_id`, `sob_lookup_javascript`, `sob_lookup_php`, `sob_lookup_table`, `sob_subform_zzzzsys_form_id`, `sob_subform_foreign_key`, `sob_subform_add`, `sob_subform_delete`, `sob_subform_type`, `sob_subform_table`, `sob_input_count`, `sob_input_format`, `sob_input_type`, `sob_input_javascript`, `sob_input_datalist`, `sob_html_code`, `sob_html_chart_type`, `sob_html_javascript`, `sob_html_title`, `sob_html_vertical_label`, `sob_html_horizontal_label`, `sob_image_zzzzsys_file_id`) VALUES ('nu5bad6cb328be090', 'nuform', 'zzzzsys_form', 'subform', 'zzzzsys_tab_sf', 'Tabs', 'nu5bad6cb36791fd5', '60', '187', '142', '869', '300', '1', 'left', '0', '0', '', '', '', '', '', '', '', '', '0', '', '', '', '', '', '', '', '', '', 'nutab', 'syt_zzzzsys_form_id', '1', '1', 'g', 'zzzzsys_tab', '0', '', '', '', NULL, '', '', '', '', '', '', '')

Re: designpart for tabs disappeared from the formsscreen

Posted: Sat Mar 20, 2021 7:36 pm
by Henk_2a
did the trick, it's there again ........

Thanks!

Re: designpart for tabs disappeared from the formsscreen

Posted: Sat Mar 20, 2021 7:41 pm
by kev1n
Great! :D