• Resolved srirupa

    (@srirupa)


    My form has many text areas, so the certain fields can have paragraphs of text. In the “Forms Submission” view, this results in really tall rows.

    Can this view be adjusted in anyway so the rows remain single lines?

    Thanks for any help! And thanks for the great plug-in.

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Michael Simpson

    (@msimpson)

    Not currently. For now I suggest exporting to Excel and doing your formatting there.

    Plugin Author Michael Simpson

    (@msimpson)

    To handle this issue, I set a max height on the table cells. If they are bigger, you will get a scrollbar in the cell. I have not released this officially yet. The current officially released version is 1.2.1. I put this fix in version 1.2.2. You can download it and try it out:
    Download Version 1.2.2

    Thread Starter srirupa

    (@srirupa)

    Wow, thanks! I’ll try it out this week.

    Hi Michael,

    I tried uploading the uploaded file in html. It works fine, however, I want to adjust the image width to 320 px. Can you help me with this please.

    Plugin Author Michael Simpson

    (@msimpson)

    By that, do you mean when you use a [cfdb-table] to display it, you want to change the size of the images in each cell of a column? If so you could use css to do it. Something like:

    #myformid tbody td[title="image_field"] img { width:320px }

    Reference

    Hi Michael,

    I used [cfdb-html] to have the preview of the images. I want the pages displaying the image files to have a width of 320.

    Plugin Author Michael Simpson

    (@msimpson)

    In that case, a similar approach applies, have the shortcode output an img tag and use CSS to style it. Wrap it in a div for convenience to make it easy to select via CSS.

    Example:
    [cfdb-html form="myform" filelinks="img"] ... <div title="myimage">${image_field}</div> ... [/cfdb-html]

    Use style like:
    div[title="myimage"] > img { width:320px }

    Hi Michael,

    I tried using the css but the images does not change the dimension. It only changes the container.

    Plugin Author Michael Simpson

    (@msimpson)

    If CSS doesn’t work on the img tag (i.e. changing the style), then maybe you need to set the width attribute of the tag. Try a jQuery like:

    jQuery('div[title="myimage"] > img').attr('width', '320px');

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘[Plugin: Contact Form 7 to Database Extension] forms submission view — can it be adjusted?’ is closed to new replies.