Well, here is what happened after I updated nuBuilder using the 'Update' function:toms wrote:Everytime I pull an update I need to remove it.
After creation of a (fast) form using the form builder I just tried to change the label of its button at User Home. In order to do that I follow the steps below:
1. Go to 'Builders' tab
2. Click on 'Objects'
3. Choose the button I want to change the label (type = run)
4. Change the field 'Label'
5. Click 'Save'
Then I see an error saying the 'run' tab cannot be empty
When I go to phpmyadmin I see the 'zzzzsys_run_list' does not exist
Then I create it by running the query below:
Code: Select all
CREATE VIEW `zzzzsys_run_list` AS select `zzzzsys_form`.`zzzzsys_form_id` AS `id`,'Form' AS `run`,`zzzzsys_form`.`sfo_code` AS `code`,`zzzzsys_form`.`sfo_description` AS `description` from `zzzzsys_form` union select `zzzzsys_report`.`zzzzsys_report_id` AS `id`,'Report' AS `run`,`zzzzsys_report`.`sre_code` AS `code`,`zzzzsys_report`.`sre_description` AS `description` from `zzzzsys_report` union select `zzzzsys_php`.`zzzzsys_php_id` AS `id`,'Procedure' AS `run`,`zzzzsys_php`.`sph_code` AS `code`,`zzzzsys_php`.`sph_description` AS `description` from `zzzzsys_php` where (`zzzzsys_php`.`sph_system` <> 1) order by `code` ;
After doing it I can change the label of the button successfully!