Re: How can a user run a report?
Posted: Thu Apr 10, 2014 1:58 am
rnott,
If you zip up your problem db and attach it I'll take a look.
Steven
If you zip up your problem db and attach it I'll take a look.
Steven
if you use double quotes in Extra Action Button -> Javascript to run you get a JavaScript error : you MUST use single quote:rnott wrote:... Extra Action Buttons tab->Title=Test & Javascript=alert("Test"); -> Delete is not checked ...
Code: Select all
alert('clicked!');
Code: Select all
CREATE TABLE IF NOT EXISTS `test_table` (
`test_table_id` varchar(25) COLLATE utf8_unicode_ci NOT NULL COMMENT 'nuBuilder ID',
`tes_test1` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test1',
`tes_Test2` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test2',
`tes_test3` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test3',
`tes_test4` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test4',
`tes_test5` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test5',
`tes_test6` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test6',
`tes_test7` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test7',
`tes_test8` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test8',
`tes_test9` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test9',
`tes_test10` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test10',
`tes_test11` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test11',
`tes_test12` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test12',
`tes_test13` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test13',
`tes_test14` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test14',
`tes_test15` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test15',
`tes_test16` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test16',
`tes_test17` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test17',
`tes_test18` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test18',
`tes_test19` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test19',
`tes_test20` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test20',
`tes_test21` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test21',
`tes_test22` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test22',
`tes_test23` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test23',
`tes_test24` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test24',
`tes_test25` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test25',
`tes_test26` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test26',
`tes_test27` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test27',
`tes_test28` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test28',
`tes_test29` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test29',
`tes_test30` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Test30',
PRIMARY KEY (`test_table_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
rnott,rnott wrote:I just cloned the nuBuilder github repository-->modified config.php-->and ran nuinstall.php
but still not creating Extra Action Button on my form...
I created a new form and I was able to create the Extra Action Button--> and when I clicked it I got the alert message
I have 90 objects on the form that will not create the Extra Action Button. The Order value is set to 10 on most of them & others have duplicate values...this may be the problem...I will Reorder the objects and see if it will fix.
Thanks