Posted by Matthew Sarino
2014-07-14

Hi Tom!

Last few questions and I am set.

1. How do I implement a "tooltip", put in a placeholder in the field, or at the least put a note beside each field in my form?

2. I need to use the "Next" button that is found in the /images folder. I can't seem to find the code where you specify the source of the button image. (The current button is too light and would like to use a the color found in the table headings).

3. In configuring email, if I wanted to send the form details to multiple recipients, can I just enter the email addresses separated by commas in the email config file?

4. Is there a way I can export search results to pdf or excel?

Thanks!!!
Posted by Tom
2014-07-15

1. How do I implement a "tooltip",
How about using qtip?
http://craigsworks.com/projects/qtip/

2. I need to use the "Next" button that is found in the /images folder.
You can use regular html buttons instead of image buttons.
To do so, open web/codelib/sys/CHtmlMacro.inc.php and find the following code:
define('TYPE_NORMAL_BUTTON', 'rollover' );
//define('TYPE_NORMAL_BUTTON', 'html' );
Comment out the first line and uncommnet out the second like
//define('TYPE_NORMAL_BUTTON', 'rollover' );
define('TYPE_NORMAL_BUTTON', 'html' );
Now you have regular html buttons.

3. enter the email addresses separated by commas in the email config file?
The recipient must be only one but you can put multiple CC and BCC.

4. Is there a way I can export search results to pdf or excel?
Sorry, it hasn't been implemented yet.