• 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: Hide a column in "Manage Submissions"

Hide a column in "Manage Submissions" 15 years 8 months ago #8314

  • sone12
  • sone12's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hei!
Do sombody know if there are possible to hide one or more columns in "Manage Submissions" view.

In my example i have a very long form, and in the "Manage Submissions" i want to hide some colums that are not so important.

For example iv got some "Free Text" components that i have used as titles in my form. I dont want to show them in the table of submissions.

I hope someone can give me a hand of help here.
Attachments:
Last Edit: 15 years 8 months ago by sone12.
The administrator has disabled public write access.

Re:Hide a column in "Manage Submissions" 15 years 6 months ago #8622

I too would be interested... I have suggested it as a feature using the feedback tool, perhaps you could vote ;)
The administrator has disabled public write access.

Re:Hide a column in "Manage Submissions" 15 years 2 months ago #9665

  • komita
  • komita's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 40
  • Thank you received: 1
Has anyone found a solution to hiding the columns? Or any solutions to changing the layout ... like moving the edit/remove buttons next to the check box.
The administrator has disabled public write access.

Re:Hide a column in "Manage Submissions" 14 years 11 months ago #10388

  • regrunge
  • regrunge's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
open the file: components/com_rsform/submission.class.html
around the line 286 you'll find:
<div id="row-'.$submission_id.'-'.$j.'">'.$label.'</div>
now change it with:
<div id="row-'.$submission_id.'-'.$j.'" class="regrunge_'.$j.'">'.$label.'</div>

Now if you inspect with firebug (or whatever) you'll find that the DIV around the submissions value as a class "regrunge_X" where X is actually the number of the column ;)

so for instance i had a column of submissions values like:
<div id="row_YYY_X" class="regrunge_12">Value</div>
they where password submissions and i wanted my client unable to see them (for what is possible for a not-IT-person) so i went to the template (NB: Administrator Template!!!) edited the css with something like:
.regrunge_12{display:none}
In this way all the divs with a class "regrunge_12" desappear and so all the vlue in the column 12.

Ok one hour to say something this simple, hope this helps.
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!