Django autocomplete based on drop down selection
up vote
0
down vote
favorite
I am storing the autocompletion data in SomeObject objects and successfully use the following to autocomplete with a filter based on current user:
views.py
def get_autocompletion_list(request):
if request.is_ajax():
q = request.GET.get('term', '')
results =
if len(q) > 0:
my_words = SomeObject.objects.filter(owner=request.user.id)
words = my_words.filter(word__startswith=q)
for w in words:
results.append(w.word)
data = json.dumps(results)
else:
data = ''
mimetype = 'application/json'
return HttpResponse(data, mimetype)
template:
<form action="/" method="post" id="">
{% csrf_token %}
{{form.category}}
</form>
<input id="searching">
scripts:
$("#category_id").change(function () {
console.log("selected category")
console.log($(category_id).val())
});
$(function() {
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/",
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
});
Now I want to filter the autocompletion based on the selection of form.category drop down, I am able to get the current selection in the form, but how would I send it to the view where I can do the filtering?
jquery django forms
add a comment |
up vote
0
down vote
favorite
I am storing the autocompletion data in SomeObject objects and successfully use the following to autocomplete with a filter based on current user:
views.py
def get_autocompletion_list(request):
if request.is_ajax():
q = request.GET.get('term', '')
results =
if len(q) > 0:
my_words = SomeObject.objects.filter(owner=request.user.id)
words = my_words.filter(word__startswith=q)
for w in words:
results.append(w.word)
data = json.dumps(results)
else:
data = ''
mimetype = 'application/json'
return HttpResponse(data, mimetype)
template:
<form action="/" method="post" id="">
{% csrf_token %}
{{form.category}}
</form>
<input id="searching">
scripts:
$("#category_id").change(function () {
console.log("selected category")
console.log($(category_id).val())
});
$(function() {
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/",
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
});
Now I want to filter the autocompletion based on the selection of form.category drop down, I am able to get the current selection in the form, but how would I send it to the view where I can do the filtering?
jquery django forms
Do you know django-select2? May be is useful for you. I
– dani herrera
yesterday
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am storing the autocompletion data in SomeObject objects and successfully use the following to autocomplete with a filter based on current user:
views.py
def get_autocompletion_list(request):
if request.is_ajax():
q = request.GET.get('term', '')
results =
if len(q) > 0:
my_words = SomeObject.objects.filter(owner=request.user.id)
words = my_words.filter(word__startswith=q)
for w in words:
results.append(w.word)
data = json.dumps(results)
else:
data = ''
mimetype = 'application/json'
return HttpResponse(data, mimetype)
template:
<form action="/" method="post" id="">
{% csrf_token %}
{{form.category}}
</form>
<input id="searching">
scripts:
$("#category_id").change(function () {
console.log("selected category")
console.log($(category_id).val())
});
$(function() {
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/",
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
});
Now I want to filter the autocompletion based on the selection of form.category drop down, I am able to get the current selection in the form, but how would I send it to the view where I can do the filtering?
jquery django forms
I am storing the autocompletion data in SomeObject objects and successfully use the following to autocomplete with a filter based on current user:
views.py
def get_autocompletion_list(request):
if request.is_ajax():
q = request.GET.get('term', '')
results =
if len(q) > 0:
my_words = SomeObject.objects.filter(owner=request.user.id)
words = my_words.filter(word__startswith=q)
for w in words:
results.append(w.word)
data = json.dumps(results)
else:
data = ''
mimetype = 'application/json'
return HttpResponse(data, mimetype)
template:
<form action="/" method="post" id="">
{% csrf_token %}
{{form.category}}
</form>
<input id="searching">
scripts:
$("#category_id").change(function () {
console.log("selected category")
console.log($(category_id).val())
});
$(function() {
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/",
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
});
Now I want to filter the autocompletion based on the selection of form.category drop down, I am able to get the current selection in the form, but how would I send it to the view where I can do the filtering?
jquery django forms
jquery django forms
edited yesterday
asked yesterday
DevB2F
1,67421030
1,67421030
Do you know django-select2? May be is useful for you. I
– dani herrera
yesterday
add a comment |
Do you know django-select2? May be is useful for you. I
– dani herrera
yesterday
Do you know django-select2? May be is useful for you. I
– dani herrera
yesterday
Do you know django-select2? May be is useful for you. I
– dani herrera
yesterday
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I was able to send the data over to django by adding the id for the currently selected category to the url used for the autocompletion.
//when value is changed in the dropdown
$("#category_id").change(function () {
setAutocompletion()
});
//change the url based on the selected drop down value
function setAutocompletion(){
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/" + getSelectedValue(),
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
}
function getSelectedValue() {
var s = $(id_kategori).val()
return String(s)
}
function AutoCompleteSelectHandler(event, ui) {
var selectedObj = ui.item;
}
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I was able to send the data over to django by adding the id for the currently selected category to the url used for the autocompletion.
//when value is changed in the dropdown
$("#category_id").change(function () {
setAutocompletion()
});
//change the url based on the selected drop down value
function setAutocompletion(){
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/" + getSelectedValue(),
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
}
function getSelectedValue() {
var s = $(id_kategori).val()
return String(s)
}
function AutoCompleteSelectHandler(event, ui) {
var selectedObj = ui.item;
}
add a comment |
up vote
0
down vote
I was able to send the data over to django by adding the id for the currently selected category to the url used for the autocompletion.
//when value is changed in the dropdown
$("#category_id").change(function () {
setAutocompletion()
});
//change the url based on the selected drop down value
function setAutocompletion(){
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/" + getSelectedValue(),
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
}
function getSelectedValue() {
var s = $(id_kategori).val()
return String(s)
}
function AutoCompleteSelectHandler(event, ui) {
var selectedObj = ui.item;
}
add a comment |
up vote
0
down vote
up vote
0
down vote
I was able to send the data over to django by adding the id for the currently selected category to the url used for the autocompletion.
//when value is changed in the dropdown
$("#category_id").change(function () {
setAutocompletion()
});
//change the url based on the selected drop down value
function setAutocompletion(){
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/" + getSelectedValue(),
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
}
function getSelectedValue() {
var s = $(id_kategori).val()
return String(s)
}
function AutoCompleteSelectHandler(event, ui) {
var selectedObj = ui.item;
}
I was able to send the data over to django by adding the id for the currently selected category to the url used for the autocompletion.
//when value is changed in the dropdown
$("#category_id").change(function () {
setAutocompletion()
});
//change the url based on the selected drop down value
function setAutocompletion(){
$("#searching").autocomplete({
source: "/api/get_autocompletion_list/" + getSelectedValue(),
select: function (event, ui) {
AutoCompleteSelectHandler(event, ui)
},
minLength: 1,
});
}
function getSelectedValue() {
var s = $(id_kategori).val()
return String(s)
}
function AutoCompleteSelectHandler(event, ui) {
var selectedObj = ui.item;
}
answered yesterday
DevB2F
1,67421030
1,67421030
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401696%2fdjango-autocomplete-based-on-drop-down-selection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Do you know django-select2? May be is useful for you. I
– dani herrera
yesterday