Support Forum

 
You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

Create Scrolling EULA Agreement

Information/How to
UserPost

5:16 am
November 9, 2010


k9cardio

1

I want to create a scrolling EULA type agreement using Formidable Pro. I'd need help with this portion of my form seen here:

http://www.capek9cardio.com/fo…../policies/

10:18 pm
November 9, 2010


Steph

2

It looks like you'll need to make some changes to your customizable HTML. Under "Advanced Form Options" click the "Edit HTML" button. Find the box for that field and add change the [input] line to something like this:

<div style="border 1px solid #eee; height:200px; overflow:auto">

[input]

</div>

5:24 am
November 10, 2010


k9cardio

3

I tried, but may be doing something wrong.

 

<div id="frm_field_[id]_container" class="[error_class] [required_class] form-field">
    <label class="frm_pos_[label_position]">[field_name]
        <span class="frm_required">[required_label]</span>
    </label>
<div style="border 1px solid #eee; height:200px; overflow:auto">
[input]
</div>

<div id="frm_field_[id]_container" class="[error_class] [required_class] form-field">    <label class="frm_pos_[label_position]">[field_name]        <span class="frm_required">[required_label]</span>    </label><div style="border 1px solid #eee; height:200px; overflow:auto">[input]</div>
 

I need a print button too :D

Thank you for an invaluable plugin and great support!

Jason

6:17 am
November 10, 2010


k9cardio

4

Ok. I have made a new change. Used basic field paragraph to give me the desired scroll.

Now I'd like the message field to stay be a non-editable field and a way for the client to print.

http://www.capek9cardio.com/fo…../policies/

Thank you,

Jason

11:00 pm
November 10, 2010


Steph

5

To make the field un-editable, you will need to set it as a read-only field. Click the pencil icon right next to the field to set it as read-only

7:08 am
November 11, 2010


k9cardio

6

That accomplished the un-editable that I wanted, however now the text is light grey and barely readable. How do I make the text readable and keep the un-editable field?

7:19 am
November 11, 2010


Steph

7

You'll need to override the styling on that by adding this to your theme style.css:

 

#frm_field_585_container textarea[disabled], #frm_field_585_container textarea[readonly]{opacity:1;filter:alpha(opacity=100);}

11:50 am
November 11, 2010


k9cardio

8

awesome. thanks!SmileSmile

7:40 am
November 26, 2010


k9cardio

9

Found a problem. Protected fields will not print. The protected field also does not forward when emailed.

I need a way to allow the text to be printed and emailed.

 

Thanks,

Jason

8:30 pm
November 29, 2010


Steph

10

Maybe you could try one thing? Please open formidable/pro/classes/controllers/FrmProFieldsController.php and change lines 163-164 from this:

echo ' disabled="disabled" ';
//echo ' readonly="readonly"';

to this:

//echo ' disabled="disabled" ';
echo ' readonly="readonly"';

7:11 pm
November 30, 2010


k9cardio

11

I tried the code:

//echo ' disabled="disabled" ';
echo ' readonly="readonly"';

It allows you to select the text now which is great, but when you print the page it looks like a screen shot.

How can I have the whole agreement print without loosing the scroll feature?

 

Thanks,

Jason

8:59 am
December 1, 2010


Steph

12

You'll have to add some css only for printing. You can get the id of that field (#field_altzgo), and add a big height to it in a print css. Please take a look at this page for more information. If you need further help on this, please contact a web developer. Sorry.

Information/How to