How to change order in multiple select2
In my code I use a multiple select2 to select a value. the problem, however, is that you can not change the order in the select. can someone help me with that?
<select class="form-control col-10" id="questions" name="questions" multiple="multiple">
@foreach($tasks as $t)
@if(!$t->trashed() || in_array($t->id, $lesson->tasksId()))
<option value="{{$t->id}}" @if(in_array($t->id, $lesson->tasksId())) selected @endif>{{$t->vocabulary->native_text}}</option>
@endif
@endforeach
</select>
<script type="text/javascript">
$(document).ready(function(){
$('#questions').select2();
$('#lessonLevelEdit').on('change', loadOtherTasks);
});
function loadOtherTasks() {
const newVal = $('#lessonLevelEdit').val();
$.get(`/api/tasks?level=${newVal}`, function(data) {
// Reformat data to select2 structure
const dataReformat = data.map(item => {
return {
'id': item.id,
'text': item.vocabulary_nt
}
});
// Remove old options (previous level)
$('#questions option').remove();
$('#questions').select2({
data:dataReformat
});
});
}
</script>
javascript laravel-5 jquery-select2
|
show 1 more comment
In my code I use a multiple select2 to select a value. the problem, however, is that you can not change the order in the select. can someone help me with that?
<select class="form-control col-10" id="questions" name="questions" multiple="multiple">
@foreach($tasks as $t)
@if(!$t->trashed() || in_array($t->id, $lesson->tasksId()))
<option value="{{$t->id}}" @if(in_array($t->id, $lesson->tasksId())) selected @endif>{{$t->vocabulary->native_text}}</option>
@endif
@endforeach
</select>
<script type="text/javascript">
$(document).ready(function(){
$('#questions').select2();
$('#lessonLevelEdit').on('change', loadOtherTasks);
});
function loadOtherTasks() {
const newVal = $('#lessonLevelEdit').val();
$.get(`/api/tasks?level=${newVal}`, function(data) {
// Reformat data to select2 structure
const dataReformat = data.map(item => {
return {
'id': item.id,
'text': item.vocabulary_nt
}
});
// Remove old options (previous level)
$('#questions option').remove();
$('#questions').select2({
data:dataReformat
});
});
}
</script>
javascript laravel-5 jquery-select2
Please add input and expected output
– Just code
Nov 21 '18 at 8:25
when I choose 3 values, I want to change the order by dragging the values.
– Marianne
Nov 21 '18 at 8:38
Dragging where?
– Just code
Nov 21 '18 at 8:40
I have found this example: codepen.io/martinsanne/pen/zdZLrd , I only have no idea how to apply it in my code
– Marianne
Nov 21 '18 at 10:21
You can include your code into that link fork it and then send link here
– Just code
Nov 21 '18 at 10:24
|
show 1 more comment
In my code I use a multiple select2 to select a value. the problem, however, is that you can not change the order in the select. can someone help me with that?
<select class="form-control col-10" id="questions" name="questions" multiple="multiple">
@foreach($tasks as $t)
@if(!$t->trashed() || in_array($t->id, $lesson->tasksId()))
<option value="{{$t->id}}" @if(in_array($t->id, $lesson->tasksId())) selected @endif>{{$t->vocabulary->native_text}}</option>
@endif
@endforeach
</select>
<script type="text/javascript">
$(document).ready(function(){
$('#questions').select2();
$('#lessonLevelEdit').on('change', loadOtherTasks);
});
function loadOtherTasks() {
const newVal = $('#lessonLevelEdit').val();
$.get(`/api/tasks?level=${newVal}`, function(data) {
// Reformat data to select2 structure
const dataReformat = data.map(item => {
return {
'id': item.id,
'text': item.vocabulary_nt
}
});
// Remove old options (previous level)
$('#questions option').remove();
$('#questions').select2({
data:dataReformat
});
});
}
</script>
javascript laravel-5 jquery-select2
In my code I use a multiple select2 to select a value. the problem, however, is that you can not change the order in the select. can someone help me with that?
<select class="form-control col-10" id="questions" name="questions" multiple="multiple">
@foreach($tasks as $t)
@if(!$t->trashed() || in_array($t->id, $lesson->tasksId()))
<option value="{{$t->id}}" @if(in_array($t->id, $lesson->tasksId())) selected @endif>{{$t->vocabulary->native_text}}</option>
@endif
@endforeach
</select>
<script type="text/javascript">
$(document).ready(function(){
$('#questions').select2();
$('#lessonLevelEdit').on('change', loadOtherTasks);
});
function loadOtherTasks() {
const newVal = $('#lessonLevelEdit').val();
$.get(`/api/tasks?level=${newVal}`, function(data) {
// Reformat data to select2 structure
const dataReformat = data.map(item => {
return {
'id': item.id,
'text': item.vocabulary_nt
}
});
// Remove old options (previous level)
$('#questions option').remove();
$('#questions').select2({
data:dataReformat
});
});
}
</script>
javascript laravel-5 jquery-select2
javascript laravel-5 jquery-select2
edited Nov 21 '18 at 8:34
asked Nov 20 '18 at 10:42
Marianne
168
168
Please add input and expected output
– Just code
Nov 21 '18 at 8:25
when I choose 3 values, I want to change the order by dragging the values.
– Marianne
Nov 21 '18 at 8:38
Dragging where?
– Just code
Nov 21 '18 at 8:40
I have found this example: codepen.io/martinsanne/pen/zdZLrd , I only have no idea how to apply it in my code
– Marianne
Nov 21 '18 at 10:21
You can include your code into that link fork it and then send link here
– Just code
Nov 21 '18 at 10:24
|
show 1 more comment
Please add input and expected output
– Just code
Nov 21 '18 at 8:25
when I choose 3 values, I want to change the order by dragging the values.
– Marianne
Nov 21 '18 at 8:38
Dragging where?
– Just code
Nov 21 '18 at 8:40
I have found this example: codepen.io/martinsanne/pen/zdZLrd , I only have no idea how to apply it in my code
– Marianne
Nov 21 '18 at 10:21
You can include your code into that link fork it and then send link here
– Just code
Nov 21 '18 at 10:24
Please add input and expected output
– Just code
Nov 21 '18 at 8:25
Please add input and expected output
– Just code
Nov 21 '18 at 8:25
when I choose 3 values, I want to change the order by dragging the values.
– Marianne
Nov 21 '18 at 8:38
when I choose 3 values, I want to change the order by dragging the values.
– Marianne
Nov 21 '18 at 8:38
Dragging where?
– Just code
Nov 21 '18 at 8:40
Dragging where?
– Just code
Nov 21 '18 at 8:40
I have found this example: codepen.io/martinsanne/pen/zdZLrd , I only have no idea how to apply it in my code
– Marianne
Nov 21 '18 at 10:21
I have found this example: codepen.io/martinsanne/pen/zdZLrd , I only have no idea how to apply it in my code
– Marianne
Nov 21 '18 at 10:21
You can include your code into that link fork it and then send link here
– Just code
Nov 21 '18 at 10:24
You can include your code into that link fork it and then send link here
– Just code
Nov 21 '18 at 10:24
|
show 1 more comment
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f53391224%2fhow-to-change-order-in-multiple-select2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f53391224%2fhow-to-change-order-in-multiple-select2%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
Please add input and expected output
– Just code
Nov 21 '18 at 8:25
when I choose 3 values, I want to change the order by dragging the values.
– Marianne
Nov 21 '18 at 8:38
Dragging where?
– Just code
Nov 21 '18 at 8:40
I have found this example: codepen.io/martinsanne/pen/zdZLrd , I only have no idea how to apply it in my code
– Marianne
Nov 21 '18 at 10:21
You can include your code into that link fork it and then send link here
– Just code
Nov 21 '18 at 10:24