mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-13 11:08:18 -06:00
Added javascript and htmx to change the url
This commit is contained in:
parent
a02aadc3aa
commit
1b932c7e92
@ -5,15 +5,18 @@
|
||||
<div class="col-auto table-controls noprint">
|
||||
<div class="input-group input-group-sm me-2 quicksearch hide-last-child">
|
||||
<input type="search" results="5" name="q" class="form-control" placeholder="Quick search" id="quick_search"
|
||||
hx-get="{{ request.full_path }}" hx-target="#object_list" hx-trigger="keyup changed delay:500ms, search" hx-ext="push-url-w-params" onChange="getParams()"/>
|
||||
<button class="btn bg-transparent" type="button" id="quicksearch_clear"><i class="mdi mdi-close-circle"></i></button>
|
||||
hx-get="{{ request.full_path }}" hx-target="#object_list"
|
||||
hx-trigger="keyup changed delay:500ms, search" hx-ext="push-url-w-params" onChange="getParams()"/>
|
||||
<button class="btn bg-transparent" type="button" id="quicksearch_clear"><i class="mdi mdi-close-circle"></i>
|
||||
</button>
|
||||
</div>
|
||||
{% block extra_table_controls %}{% endblock %}
|
||||
</div>
|
||||
<div class="col-auto ms-auto table-controls noprint">
|
||||
{% if request.user.is_authenticated and table_modal %}
|
||||
<div class="table-configure input-group input-group-sm">
|
||||
<button type="button" data-bs-toggle="modal" title="{% trans "Configure Table" %}" data-bs-target="#{{ table_modal }}"
|
||||
<button type="button" data-bs-toggle="modal" title="{% trans "Configure Table" %}"
|
||||
data-bs-target="#{{ table_modal }}"
|
||||
class="btn btn-sm btn-outline-dark">
|
||||
<i class="mdi mdi-cog"></i> {% trans "Configure Table" %}
|
||||
</button>
|
||||
@ -25,7 +28,7 @@
|
||||
|
||||
<script>
|
||||
htmx.defineExtension('push-url-w-params', {
|
||||
onEvent : function(name, e) {
|
||||
onEvent: function (name, e) {
|
||||
if (name === "htmx:configRequest") {
|
||||
const params = new URLSearchParams(e.detail.parameters).toString()
|
||||
window.history.replaceState(null, "", window.location.pathname)
|
||||
@ -42,8 +45,6 @@
|
||||
const search_parameter = `q=${quickSearchParameters.q}`
|
||||
link = link.href + "&" + search_parameter
|
||||
}
|
||||
const teste = document.getElementById("current_view").setAttribute("href", link)
|
||||
console.log(link)
|
||||
|
||||
document.getElementById("current_view").setAttribute("href", link)
|
||||
}
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user