• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: View Submissions in alphabetical order by name

View Submissions in alphabetical order by name 14 years 4 months ago #12294

  • subran
  • subran's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi,

I'd like to show the submissions order alphabetically with the name of the sender.

At the moment I'm only able to show submissions in the order they where sent.

Is this possible?
The administrator has disabled public write access.

Re:View Submissions in alphabetical order by name 14 years 3 months ago #12312

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
Hello,

In Manage submissions area you can order the submissions by clicking on the column headers.

If you are referring to the frontend submissions display, then there are currently no ordering options.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Re:View Submissions in alphabetical order by name 14 years 3 months ago #12481

Yes, my purpose was to be able to show it in the frontend.

I'd like the submissions to be ordered by the name of a textbox.
The administrator has disabled public write access.

Re:View Submissions in alphabetical order by name 14 years 2 months ago #12880

This functionality would be of great use in the front end. After form submission, I redirect the user to the submissions list page. Anyone looking at that page has to look through the entire list, sorting alphabetically by a column is a much needed feature.
Is there a script that I could use to make that happen? Thanks for the help.
The administrator has disabled public write access.

Re:View Submissions in alphabetical order by name 14 years 1 month ago #13008

  • bluesconcert
  • bluesconcert's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
  • Thank you received: 1
Being able to select the front end list field name to order by would make this a great tool for me. Submitter Name is a good start, but being able to select which column to sort on would definitely rock!
The administrator has disabled public write access.

Re:View Submissions in alphabetical order by name 12 years 5 months ago #19706

  • fuchsf1
  • fuchsf1's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
Hello alexp,

does sorting will be now supported?

If not could you advice in which module we can find the coding?

Many thanks,
Frank
The administrator has disabled public write access.

Re:View Submissions in alphabetical order by name 8 years 10 months ago #35183

Yes, I'd like that too.

This would make the front end submissions page very powerful.
The administrator has disabled public write access.

Re:View Submissions in alphabetical order by name 8 years 10 months ago #35184

In the meantime, does anyone know which file to hack so that I can add an order by?

Sorry to ask this, I've been searching for a way to override but am happy to find any way possible for the moment.
The administrator has disabled public write access.

View Submissions in alphabetical order by name 7 years 9 months ago #37155

  • ikunjan
  • ikunjan's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
There are actually some sorting scripts that are now supported! Don't know if this helps much.. :D
The administrator has disabled public write access.

View Submissions in alphabetical order by name 7 years 8 months ago #37285

  • yaani
  • yaani's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 41
  • Thank you received: 4
I too would like to be able to sort the data in the List Submissions Module in the front end. Has anyone figured out how to do this? It would be great to have this added as a feature!
The administrator has disabled public write access.

View Submissions in alphabetical order by name 7 years 7 months ago #37368

  • nettemor
  • nettemor's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 33
I also need a list of submissions and would like to be able to click on a column to order by the selected column.

I cant see any answer to this here, but do anyone of you know of a third party extension that i might use for this?

Thanks,
The administrator has disabled public write access.

View Submissions in alphabetical order by name 7 years 3 months ago #37794

Hey,

I found a very easy script that does this job for me!
www.kryogenix.org/code/browser/sorttable/

After connecting it, I just needed to add class to the table:
<table class="sortable"> and it works.
The administrator has disabled public write access.
The following user(s) said Thank You: yaani

View Submissions in alphabetical order by name 3 years 7 months ago #41580

  • yaani
  • yaani's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 41
  • Thank you received: 4
The following worked for me:

1. Upload the sort table javascript file named "sorttable.js" from here www.kryogenix.org/code/browser/sorttable/ (I put it in /templates/rt_audacity/custom/sorttable.js)

2. Install the "Add Custom Javascript" plugin to load the table sort javascript in the Head section from here joomla.impression-estudio.gr/en/joomla-e...dd-custom-javascript

3. Enter the location of your table sort javascript in the plugin's parameter & Enable the plugin

4. Add <table class="sortable"> html in the RSJoomla Submission module in the "Module Layout" text box as instructed by www.kryogenix.org/code/browser/sorttable/ Example below

<table class="sortable">
<thead>
<tr><th>Person</th><th>Monthly pay</th></tr>
</thead>
<tbody>
<tr><td>Jan Molby</td><td>£12,000</td></tr>
<tr><td>Steve Nicol</td><td>£8,500</td></tr>
<tr><td>Steve McMahon</td><td>£9,200</td></tr>
<tr><td>John Barnes</td><td>£15,300</td></tr>
</tbody>
<tfoot>
<tr><td>TOTAL</td><td>£45,000</td></tr>
</tfoot>
</table>

The Add Custom Javascript plugin will ensure your sort table script will not be overwritten by future template or Joomla upgrades.

I hope this is helpful to anyone wanting to add a sort feature to all the columns in a form submissions module.

It would be great if this feature could be included in a future release of the RSForm Pro! List Submissions Module !!!

It is a great feature for the submissions module & one that will help RSJoomla Form Pro stand out from the other form builder extensions.
Last Edit: 3 years 7 months ago by yaani.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!