Pregunta

He estado intentando y no logrando agregar una línea de rotura a un bootstrap seco modal.

Aquí está mi código de plantilla de hipervínculo que envía el mensaje al código MODAL MANTUAL:

<a href="{% url achievement_details_delete achievement_detail.id %}" delete-confirm="Are you sure you want to DELETE the selected record? <br /><br />This action will permanently remove the record.">Delete</a>

Aquí está mi código modal de arranque JQERY:

$(document).ready(function() {

    //START: Delete code.
    $('a[delete-confirm]').click(function(ev) {

        var href = $(this).attr('href');

        if (!$('#deleteConfirmModal').length) {

            $('body').append('<div id="deleteConfirmModal" class="modal modal-confirm-max-width" role="dialog" aria-labelledby="deleteConfirmLabel" aria-hidden="true"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">X</button><h4 class="modal-title" id="deleteConfirmLabel">{% trans "Delete" %} - {{ resume_details_trans }}</h4></div><div class="modal-body"></div><div class="modal-footer"><button class="btn" data-dismiss="modal" aria-hidden="true">{% trans "Cancel" %}</button>&nbsp;&nbsp;<a class="btn-u btn-u-red" id="deleteConfirmOK" onclick="showProgressAnimation();">{% trans "Delete" %}</a></div></div>');

        }

        $('#deleteConfirmModal').find('.modal-body').text($(this).attr('delete-confirm'));

        $('#deleteConfirmOK').attr('href', href);

        $('#deleteConfirmModal').modal({show:true});

        return false;

    });
    //FINISH: Delete code.
});

¿Fue útil?

Solución

Agregar esto al botón para eliminar el registro:

<a href="url"
   delete-confirm="Your Message Here!!<br /><br /><span class='confirm_delete_warning_red_bold'>You can even add in css to highlight specific text - Are you sure?</span>"
>
    Delete
</a>

y en su código de jQuery cambia el texto .html.El texto representará el texto y .html actuará como HTML y visualizará las salidas de línea y CSS en la etiqueta SPAN.

 $('#deleteConfirmModal').find('.modal-body').html($(this).attr('delete-confirm'));

Esto funcionará para su código.Solo observe su uso de 'y "(marcas de habla individual y doble). No los mezcle.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top