Missing data ever since upgraded to new versions

I have several pages which been working fine until I recently upgraded versions of Wapper. I retrieve all upcoming bookings data and have a button which allows me to drill down into the detail of a particular record in a table. I also calculate balances for that record in several columns. With the upgrades, all of the calculated fields and the button to allow a drill down have stopped working. Can you please take a look and see why it is no longer working?

the page is:

https://www.marsalstudios.com/admin/upcoming_weddings.php

Thanks,
Rick

Sorry but what exactly do we have to do on this link to see the problem? What is this "button which allows me to drill down into the detail"?

There should be a button in the first column labeled “client History” which goes to another page based on the cid field to get the detail for this customer. it is just blank now with no button.
The location, total_booked, and balance columns should be populated with data and nothing is there.

here is the code which used to work:

                                <tr>

                                    <td dmx-text="" class="text-dark">

                                        <button class="btn d-print-none text-white btn-sm bg-primary" dmx-bind:popover-title="'COMING SOON!!'" data-placement="bottom"

                                            dmx-on:click="querysort.set('eid',event_id);browser1.goto('full_history.php?cid='+client_id)">Client History

                                        </button>

                                    </td>

                                    <td dmx-text="display_name"></td>

                                    <td dmx-text="event_date"></td>

                                    <td dmx-text="event_type"></td>

                                    <td dmx-text="Location(s)">{{ceremony_location}}<br>{{reception_location}}

                                        {{Other_location}}</td>

                                    <td dmx-text="Photo"></td>

                                    <td dmx-text="Video"></td>

                                    <td dmx-text="Book"></td>

                                    <td dmx-text="">{{final_total.toNumber().formatCurrency("$", ".", ",", "2")}}</td>

                                    <td dmx-text=""> {{(final_total - amt_paid).formatCurrency("$", ".", ",", "2"))}} </td>

                                    <td>

                                        <select id="select1" class="custom-select" dmx-on:updated="browser1.goto(value+'slid='+studio_lead_id+'&amp;cid='+customer_invoice_id+'&amp;pid='+proposal_id+ '&amp;eid='+event_id )">

                                            <option value=""></option>

                                            <option value="../admin/edit-proposal-sheet.php?">See Contract</option>

                                            <option value="../admin/edit-invoice-sheet.php?">Edit Statement/Add Payments</option>

                                            <option value="../admin/general/final_invoice_sheet.php?">General Invoice</option>

                                            <option value="../sign-in-sheet-edit.php?">Change Personal Info</option>

                                        </select>

                                    </td>

                                </tr>

                            </tbody>

If that’s the code that used to work, what does it look like now? Can you copy and paste, from Wappler code view, the repeat row of the table body and the cell where the button should be?

Never mind. Your issue is in the first cell:

<td  class="text-dark">

take out the dmx-text property and it should work. dmx-text is overwriting the button with nothing.

that did the trick. everything working now.

thanks,
Rick

1 Like