• 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: Delete/Edit records into rsform_list module from ?

Delete/Edit records into rsform_list module from ? 16 years 2 weeks ago #7107

Dear all,
Module for List viewing of submissions is very useful.

but customer and/or customer support need to modify or delete records of submissions for any reasons:
Form submission is expired or;
Form request has been solved and so on...

What is the procdure to edit/delete submissions into rsform_list module from frontend?

Thanks
Rob
The administrator has disabled public write access.

Re:Delete/Edit records into rsform_list module from ? 16 years 2 weeks ago #7113

  • matt
  • matt's Avatar
  • OFFLINE
  • Expert Boarder
  • Posts: 136
  • Thank you received: 14
Hi!

I would also like if it was possible to delete/edit from the frontend. I have many publishers on my sites and prefer to not have them logged in to the backend.

Regards
Matt
The administrator has disabled public write access.

Re:Delete/Edit records into rsform_list module from ? 16 years 2 weeks ago #7126

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

A similar plugin is on our TO DO list... unfortunately i can't give an estimate on when this will be ready.
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:Delete/Edit records into rsform_list module from ? 15 years 11 months ago #7265

It is possible, works great.

I create a list of records with on each row a link "modify" that calls the form with a parameter "fldId=123" (where 123 is id of record in table). (example code available if requested)

Then in each default value I have some code that retrieves te value in the table like this:

if (isset($_GET))
{
$fldId = $_GET;
$rs = mysql_query("SELECT * FROM testtable WHERE fldId=".$fldId);
if($r = mysql_fetch_assoc($rs))
{
return $r;
}
}

For editing, on the scripts TAB in "Script called on form process" put something like:

if (isset($_GET))
{
$tmpnr = $_GET;
$rs = mysql_query("DELETE FROM testtable WHERE fldId=".$tmpnr);
}

This works for me!

Roy.
The administrator has disabled public write access.

Re:Delete/Edit records into rsform_list module fro 15 years 7 months ago #8589

  • Kitecom
  • Kitecom's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
Roy - sounds like exactly what I'm trying to do... Could you let me know how the link in the forms listing module identifies the correct set of form data? And doe the form open with the previously entered data in place?

Thanks
K

EDIT: would it be possible to see the example code that calls the correct, partly filled form?
Last Edit: 15 years 6 months ago by Kitecom. Reason: Updated question
The administrator has disabled public write access.

Re:Delete/Edit records into rsform_list module from ? 15 years 1 month ago #10103

  • magroup
  • magroup's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Roy,

This looks very interesting. Would this create an opportunity to edit the form on the front end? If so ,
may I trouble you with brief instructions on code placement and I am trying hard to become a power user with RS form. Would this be a cleaner approach than rsShowForm? May I officially request example code?

Any help would be greatly appreciated!

Regards
Michael
The administrator has disabled public write access.

Re:Delete/Edit records into rsform_list module from ? 15 years 3 weeks ago #10254

  • omaxtd
  • omaxtd's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 1
Hello Roy,

Would you send me the code and some printscreen so that I can see where you put it.
You can make me very happy with it, it's the last thing I didn't create by myself.

Kind regards,

omaxtd
The administrator has disabled public write access.

Re:Delete/Edit records into rsform_list module from ? 15 years 3 weeks ago #10255

  • htenveen
  • htenveen's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
Hello Roy,

The same for me......I'm very interested!


Herman.
The administrator has disabled public write access.

Re:Delete/Edit records into rsform_list module from ? 13 years 4 months ago #15762

  • philson
  • philson's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi Roy,
Topic is quite old but still very interesting.
Is the example code still available or even improved or are there other ways to edit records from a list with rsform pro?
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!