параметр css width в тимьяфе - PullRequest
0 голосов
/ 19 декабря 2018

Mi код:

<tr th:each="planificacion : ${planificaciones}"
                        th:onclick="'window.location.href = \'' + @{/planificacion/{idp}(idp=${planificacion.id})}+ '\''">

                        <td th:text="${planificacion.nombre}"></td>
                        <td>
                            <div th:if="${planificacion.completado}">
                                <span class="badge badge-pill badge-success"
                                    style="font-size: 80%; padding: 6px 18px;">Completo</span>
                            </div>
                            <div th:if="${not planificacion.completado}">
                                <span class="badge badge-pill badge-danger"
                                    style="font-size: 80%; padding: 6px 18px;">Incompleto</span>
                            </div>
                        </td>
                        <td>
                            **<div class="progress">
                                <div class="progress-bar progress-bar-success progress-bar-striped active"
                                    role="progressbar" aria-valuenow="0" aria-valuemin="0"
                                    aria-valuemax="100" style="width:0%">
                                    <span id="current-progress"></span>
                                </div>
                            </div>**
                        </td>
                        <td><a class="btn btn-danger"
                            th:href="@{/borrar_planificacion/{id}(id=${planificacion.id})}">
                                <i class="fas fa-trash-alt"></i>
                        </a></td>


                    </tr>
                </table>

Я хочу изменить значение ширины с помощью переменной контроллера $ {planificacion.porcentaje}, но я не знаю.

Как я могу это сделать?

Я прочитал этот пост, но он не работает для меня. Установка атрибутов стиля CSS с помощью thymeleaf

1 Ответ

0 голосов
/ 19 декабря 2018

Согласно документации Thymeleaf - Установка значений атрибутов

Использование th:width="${planificacion.porcentaje}" или th:attr="width=${planificacion.porcentaje}"

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...