Page 1 of 1
modharbour Patcher
Posted: Sat Sep 28, 2019 5:12 pm
by Otto
ODHarbour Patcher
The MODHarbour Patcher runs as an *.exe on the server in c:\xampp\htdocs\
It allows you to split code into several pieces/prgs to take out complexity.
This is especially for beginners and newbies really usefull and helps to overcome sticking points at the entry.
Best regards
Otto
Re: modharbour Patcher
Posted: Sat Sep 28, 2019 10:32 pm
by Iris Gesser
Great job! Thank you for the video!
Re: modharbour Patcher
Posted: Sun Sep 29, 2019 5:33 am
by Antonio Linares
Dear Otto,
very creative!
You are always discovering new possibilities
Re: modharbour Patcher
Posted: Mon Oct 07, 2019 8:27 am
by Otto
Hello,
now it is possible to use mod harbour include files also inside an include file.
mod harbour patcher supports:
|- for comments
-> link to include file
&- start line
-& end of line
Best regards,
Otto
sample
Code: Select all
&-
|- row wird in tablegebuchtezimmer angehängt
$(".data-gebuchtTbl tbody").append( "
<tr data-menge='" + MengeAuswahl +"' data-beschreibung='"+cBeschreibung+"' data-preis='"+preis+"' data-summe='"+summe+"' data-id='"+id+"'>
<td style='visibility:hidden;'>" + id + "</td>
|- alle 3 Werte sind in einer Spalte
<td>"+cmenge+"</td><td><b>"+cZiBezeichnung +"</b><br> "+ cBeschreibung+"</td>
<td>"+email+"</td>
<td><button class='btn btn-info btn-xs btn-deletebooking'>Buchung entfernen</button></td>
</tr>");
-&
is automatically patched to this.
Code: Select all
$(".data-gebuchtTbl tbody").append( "<tr data-menge='" + MengeAuswahl +"' data-beschreibung='"+cBeschreibung+"' data-preis='"+preis+"' data-summe='"+summe+"' data-id='"+id+"'><td style='visibility:hidden;'>" + id + "</td><td>"+cmenge+"</td><td><b>"+cZiBezeichnung +"</b><br> "+ cBeschreibung+"</td><td>"+email+"</td><td><button class='btn btn-info btn-xs btn-deletebooking'>Buchung entfernen</button></td></tr>");