app.css | ●●●●● patch | view | raw | blame | history | |
app.js | ●●●●● patch | view | raw | blame | history | |
data/tpl/dlg-abspieler-neu.tpl | ●●●●● patch | view | raw | blame | history |
app.css
@@ -223,7 +223,7 @@ .inline-label { display: inline-block; width: 3em; width: 4em; text-align: right; } @@ -250,12 +250,13 @@ text-align: right; } .dlg-sender-edit, .dlg-sender-neu { .dlg-sender-edit, .dlg-sender-neu, .dlg-abspieler-neu { background-color: #f6f6f6; // grau } .sender-eingabe { .sender-eingabe, .abspieler-eingabe { width: 80%; margin-left: 0.4em; } /* app.js
@@ -8,6 +8,7 @@ var TPL_SENDER_EDIT_FORM = 'sender-edit-form'; var TPL_SENDER_KACHEL = 'sender-kachel'; var TPL_ABSPIELER = 'abspieler'; var TPL_DLG_ABSPIELER_NEU = 'dlg-abspieler-neu'; var templateCache = {}; // mustache templates var prefsRendered = false; var senderKlickModus = "1"; // 1=abspielen, 2=bearbeiten, 3=loeschen @@ -36,6 +37,7 @@ app_get_template('data/tpl/dlg-sender-edit-form.tpl', TPL_SENDER_EDIT_FORM); app_get_template('data/tpl/kachel.tpl', TPL_SENDER_KACHEL); app_get_template('data/tpl/abspieler.tpl', TPL_ABSPIELER); app_get_template('data/tpl/dlg-abspieler-neu.tpl', TPL_DLG_ABSPIELER_NEU); // Klicks auf das Hamburger-Menü-Icon an eine Funktion leiten $(".hamburger").on("click", function(e) { @@ -209,7 +211,19 @@ app_menue_umschalten(); } function app_neuer_abspieler() { app_meldung_mit_timeout('Nicht implementiert: Neuer Abspieler.', 1500); //app_meldung_mit_timeout('Nicht implementiert: Neuer Abspieler.', 1500); app_dialog_laden_und_zeigen(templateCache[TPL_DLG_ABSPIELER_NEU], ''); $('#abspieler-speichern').on('click', function() { $('#abspieler-speichern').off('click'); /* hier eine Funktion rufen mit der der neue Abspieler auf die gui genommen wird analog zu app_kachel_neu(app_sender_dialog_lesen(--ID_UNDEFINED)); bei Sendern */ app_dialog_schliessen(); app_meldung_mit_timeout('Speichern gewaehlt', 1500); }); app_menue_umschalten(); } function app_abspieler_bearbeiten() { data/tpl/dlg-abspieler-neu.tpl
New file @@ -0,0 +1,21 @@ <div class="dlg-abspieler-neu"> <span class="close-btn pointer-cursor">✖</span> <div class="dlg-behaelter"> <div class="dlg-abspieler-titel">Neuer Abspieler</div> <form> <label class="inline-label">Name:</label> <input id="abspieler-name" placeholder="Name" type="text" class="abspieler-eingabe"></br> <label class="inline-label">URL:</label> <input id="abspieler-url" placeholder="URL" type="text" class="abspieler-eingabe"></br> <label class="inline-label">Typ:</label> <input id="abspieler-typ" placeholder="Typ" type="text" class="abspieler-eingabe"></br> <label class="inline-label">Bild:</label> <input id="abspieler-bild" placeholder="Bild-URL" type="text" class="abspieler-eingabe"></br> <label class="inline-label">Zustand:</label> <input id="abspieler-zustand" placeholder="Zustand" type="text" class="abspieler-eingabe"></br> <div class="form-button-footer"> <button type="button" id="abspieler-speichern">Speichern</button> </div> </form> </div> </div>