close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Delete Record pop up box - include record name?

Thread began 8/10/2012 11:26 am by iainmacdonald331081 | Last modified 8/23/2012 5:51 am by iainmacdonald331081 | 2785 views | 6 replies |

iainmacdonald331081

Delete Record pop up box - include record name?

Just wondering if its possible to include a specific reference to the record about to be deleted in the delete record pop up box?

If I have a results page, with a delete button to the right for each record, it would be useful to reference it in the message in case the user had clicked the button immediately above or below the record they meant to.

I tried changing:

This will permanently remove this record from your database.

To include the field from the query:

This will permanently remove <?php echo($row_WADAactivities2['Activity']); ?> from your database.

but it doesn't get picked up.

If there is an easy enough tweak to include that, that would be appreciated.

Thank you!

Sign in to reply to this post

Jason ByrnesWebAssist

the delete button uses an on click event to pass the ID of the item being deleted to the WADADeleteRecordID From Element. For example, here is the delete button code for my Results page:

php:
<input type="button" class="formButton ResultsPageButton unstyled DeleteButton" value="" onclick="document.getElementById('WADADeleteRecordID').value=<?php echo($row_WADAitems['ItemID']); ?>;document.getElementById('deleteBox').style.display = 'block';document.getElementById('deleteMessage').style.display = 'table';" />



this portion passes the ID to the WADADeleteRecordID form element:

php:
document.getElementById('WADADeleteRecordID').value=<?php echo($row_WADAitems['ItemID']); ?>;



to pass the name column, you would need to add another condition to the onclick event:

php:
<input type="button" class="formButton ResultsPageButton unstyled DeleteButton" value="" onclick="document.getElementById('WADADeleteRecordID').value=<?php echo($row_WADAitems['ItemID']); ?>;document.getElementById('WADADeleteRecordName').innerHTML='<?php echo($row_WADAitems['ItemName']); ?>';document.getElementById('deleteBox').style.display = 'block';document.getElementById('deleteMessage').style.display = 'table';" />



the portion i added is:

php:
document.getElementById('WADADeleteRecordName').innerHTML='<?php echo($row_WADAitems['ItemName']); ?>';



this will pass the name to an element with the ID WADADeleteRecordName, so the final step is to add a span tag with the ID "WADADeleteRecordName" to the delete message, for example:

This will permanently remove <span id="WADADeleteRecordName">name</span> from your database.



the onclick event will replace "name" in this code:
<span id="WADADeleteRecordName">name</name>

with the name from your database.

Sign in to reply to this post

iainmacdonald331081

Thanks Jason. Sorry its been a while, but just looking at this now.

I changed the input button code to:

<input type="button" class="deleteButton" value="" onclick="document.getElementById('WADADeleteRecordID').value=<?php echo($row_WADAactivities['ActivityID']); ?>;document.getElementById('WADADeleteRecordName').innerHTML='<?php echo($row_WADAactivities['Activity']); ?>';document.getElementById('deleteBox').style.display = 'block';document.getElementById('deleteMessage').style.display = 'table';" />



And changed the message to include:

This will permanently remove the following keyword: <span id="WADADeleteRecordName">name</name>.<br/>

Its partly working - the Activity is being displayed correctly, but nothing after that, including the delete and cancel buttons.

Sign in to reply to this post

Jason ByrnesWebAssist

send a copy of the page so i can look at the code.

Sign in to reply to this post

iainmacdonald331081

Thanks Jason - attached here. Note that there are four queries in the page, and I've just changed it for the delete button for the first, WADAactivities.

Attached Files
itinerary_keywords.zip
Sign in to reply to this post

Jason ByrnesWebAssist

this code:

php:
This will permanently remove the following keyword: <span id="WADADeleteRecordName">name</name>.<br/>




should be:

php:
This will permanently remove the following keyword: <span id="WADADeleteRecordName">name</span>.<br/>




that was a typo in my original reply.

Sign in to reply to this post

iainmacdonald331081

Thanks Jason - I should have spotted that, but I was probably focusing more on making I had the other bit of code correct.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...