There have been a few people that have reported that problem. Unfortunately I can’t get the problem to show up on my end. My guess it is has to do with the javascript. What browser and version are you using?
i`m using mozilla firefox 4.0.1
That shouldn’t be causing the problems then… I may have figured it out though, so when I post 1.4.9 that may fix it.
ok, thanks for your support. good luck
by the way, how about display the data into public?
I can probably do that. What are you thinking exactly?
few days ago, i made a form for a public petition. so i want anyone to see what they are submitted, until know i`m using CSV version and parse using PHP to display.
Ok I see what you are thinking. Does the newest version fix your save issue?
yeah. works great.
by the way, could you make like http://snsdtoindonesia.co.cc/petition/ ?
with <fieldset> also break into pages every 20 submitted form?
Version 1.4.16 lets you display the submitted data with the ‘formdata’ shortcode. I will be putting an article in the FAQ, but basically it works as follows:
[formdata (form slug)]
You can also add options, like if you want to show 10 items per page, do:
[formdata (form slug) dataperpage=10]
Or, if you want to sort the results by something other than the timestamp, for example by an item with the nickname ‘item-1’:
[formdata (form slug) orderby=”item-1″]
You can also make the list sorted in ascending, rather than descending order:
[formdata (form slug) order=ASC]
If you have a particular template you would like to use, other than the default summary, and the template’s filename is ‘my-custom-template.php’:
[formdata (form slug) template=’my-custom-template’]
Of course, you use as many of the above options as you want:
[formdata (form slug) dataperpage=10 orderby=”text-1″ order=ASC template=”my-custom-template”]
Hopefully that explains it. Also, thanks for the suggestion, I think this feature is a really great idea.