Best practice for using an image inside a selection in a FORM
I'm stuck in a form, I am wondering how can I display an image inside a select option.
Inputs will load text.
What I'm trying to do...
What is the best way to make this work inside the form?
This is what I've done.
So my code is this because <select><option><img href=""></option></select>
wont work.
<div class="input-group mb-3">
<input type="text" class="form-control" aria-label="Text input with dropdown button">
<div class="btn-group">
<button type="button" class="no-border btn btn-secondary dropdown-toggle dropdown-toggle-split" id="dropdownMenuReference" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" data-reference="parent">
<span class="sr-only">Toggle Dropdown</span>
</button>
<div class="dropdown-menu " aria-labelledby="dropdownMenuReference" style="position: absolute;transform: translate3d(-352px, 35px, 0px);min-width: 380px;overflow-x: hidden;" x-placement="bottom-start">
@foreach($categories as $category)
<a class="dropdown-item" href="#"><img class="rounded" src="/storage/category-icon/{{$category->business_icon}}">{{$category->business_name}}</a>
@endforeach
</div>
</div>
</div>
What is the best practice for this?
(using bootstrap 4 and laravel btw)
javascript css forms drop-down-menu dropdown
add a comment |
I'm stuck in a form, I am wondering how can I display an image inside a select option.
Inputs will load text.
What I'm trying to do...
What is the best way to make this work inside the form?
This is what I've done.
So my code is this because <select><option><img href=""></option></select>
wont work.
<div class="input-group mb-3">
<input type="text" class="form-control" aria-label="Text input with dropdown button">
<div class="btn-group">
<button type="button" class="no-border btn btn-secondary dropdown-toggle dropdown-toggle-split" id="dropdownMenuReference" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" data-reference="parent">
<span class="sr-only">Toggle Dropdown</span>
</button>
<div class="dropdown-menu " aria-labelledby="dropdownMenuReference" style="position: absolute;transform: translate3d(-352px, 35px, 0px);min-width: 380px;overflow-x: hidden;" x-placement="bottom-start">
@foreach($categories as $category)
<a class="dropdown-item" href="#"><img class="rounded" src="/storage/category-icon/{{$category->business_icon}}">{{$category->business_name}}</a>
@endforeach
</div>
</div>
</div>
What is the best practice for this?
(using bootstrap 4 and laravel btw)
javascript css forms drop-down-menu dropdown
add a comment |
I'm stuck in a form, I am wondering how can I display an image inside a select option.
Inputs will load text.
What I'm trying to do...
What is the best way to make this work inside the form?
This is what I've done.
So my code is this because <select><option><img href=""></option></select>
wont work.
<div class="input-group mb-3">
<input type="text" class="form-control" aria-label="Text input with dropdown button">
<div class="btn-group">
<button type="button" class="no-border btn btn-secondary dropdown-toggle dropdown-toggle-split" id="dropdownMenuReference" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" data-reference="parent">
<span class="sr-only">Toggle Dropdown</span>
</button>
<div class="dropdown-menu " aria-labelledby="dropdownMenuReference" style="position: absolute;transform: translate3d(-352px, 35px, 0px);min-width: 380px;overflow-x: hidden;" x-placement="bottom-start">
@foreach($categories as $category)
<a class="dropdown-item" href="#"><img class="rounded" src="/storage/category-icon/{{$category->business_icon}}">{{$category->business_name}}</a>
@endforeach
</div>
</div>
</div>
What is the best practice for this?
(using bootstrap 4 and laravel btw)
javascript css forms drop-down-menu dropdown
I'm stuck in a form, I am wondering how can I display an image inside a select option.
Inputs will load text.
What I'm trying to do...
What is the best way to make this work inside the form?
This is what I've done.
So my code is this because <select><option><img href=""></option></select>
wont work.
<div class="input-group mb-3">
<input type="text" class="form-control" aria-label="Text input with dropdown button">
<div class="btn-group">
<button type="button" class="no-border btn btn-secondary dropdown-toggle dropdown-toggle-split" id="dropdownMenuReference" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" data-reference="parent">
<span class="sr-only">Toggle Dropdown</span>
</button>
<div class="dropdown-menu " aria-labelledby="dropdownMenuReference" style="position: absolute;transform: translate3d(-352px, 35px, 0px);min-width: 380px;overflow-x: hidden;" x-placement="bottom-start">
@foreach($categories as $category)
<a class="dropdown-item" href="#"><img class="rounded" src="/storage/category-icon/{{$category->business_icon}}">{{$category->business_name}}</a>
@endforeach
</div>
</div>
</div>
What is the best practice for this?
(using bootstrap 4 and laravel btw)
javascript css forms drop-down-menu dropdown
javascript css forms drop-down-menu dropdown
edited Nov 22 '18 at 7:06
jess
950110
950110
asked Nov 22 '18 at 7:03
James AllanJames Allan
98110
98110
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Since it is not possible to do that with native HTML
elements, you cannot make it work without Javascript
. Therefore you at least need a hidden input field (<input name="foo-bar-baz" type="hidden value="…" />
) to transfer the data between the server and the client. The data could be a simple serialized JSON
Object like so:
[
{
"label": "Click ME",
"icon": "/img/icon.png",
"value": "item-xxx"
},
…
]
Going from there you need to write some Javascript code that generates something that looks like a <select>
but isn't. Each change on that »virtual field« needs to modify the respective hidden one's value, such that at submission, the correct value is transferred to the server.
Here I could find an example based on bootstrap
, maybe that is helpful. It renders a <ul><li></li>…</ul>
list to display the »virtual field«.
One possible solution maybe found here.
To sum up, you need to find a proper Javascript library that helps you doing it, or write some code by yourself to make it. Which one to choose strongly depends on your needs and requirements.
Another thing to keep in mind here is accessibility — what should happen if the user has Javascript disabled, or uses a browser that has problems to execute the code provided. Then it might be a good starting point to render a regular <select>
and use data attributes to inject images like so:
<select name="foo-bar-baz">
<option value="value" data-icon="/path/to/icon">Label</option>
</select>
which yields a working form element, which then can be enriched with icons, in case Javascript works properly.
So to answer the question: IMHO best practice is the solution which always works and doesn't exclude users without Javascript, a screen reader or a text-based browser. So the solution provided above, starting with a regular <select>
, which should be progressively enhanced, is what I would call best practice here.
add a comment |
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%2f53425481%2fbest-practice-for-using-an-image-inside-a-selection-in-a-form%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since it is not possible to do that with native HTML
elements, you cannot make it work without Javascript
. Therefore you at least need a hidden input field (<input name="foo-bar-baz" type="hidden value="…" />
) to transfer the data between the server and the client. The data could be a simple serialized JSON
Object like so:
[
{
"label": "Click ME",
"icon": "/img/icon.png",
"value": "item-xxx"
},
…
]
Going from there you need to write some Javascript code that generates something that looks like a <select>
but isn't. Each change on that »virtual field« needs to modify the respective hidden one's value, such that at submission, the correct value is transferred to the server.
Here I could find an example based on bootstrap
, maybe that is helpful. It renders a <ul><li></li>…</ul>
list to display the »virtual field«.
One possible solution maybe found here.
To sum up, you need to find a proper Javascript library that helps you doing it, or write some code by yourself to make it. Which one to choose strongly depends on your needs and requirements.
Another thing to keep in mind here is accessibility — what should happen if the user has Javascript disabled, or uses a browser that has problems to execute the code provided. Then it might be a good starting point to render a regular <select>
and use data attributes to inject images like so:
<select name="foo-bar-baz">
<option value="value" data-icon="/path/to/icon">Label</option>
</select>
which yields a working form element, which then can be enriched with icons, in case Javascript works properly.
So to answer the question: IMHO best practice is the solution which always works and doesn't exclude users without Javascript, a screen reader or a text-based browser. So the solution provided above, starting with a regular <select>
, which should be progressively enhanced, is what I would call best practice here.
add a comment |
Since it is not possible to do that with native HTML
elements, you cannot make it work without Javascript
. Therefore you at least need a hidden input field (<input name="foo-bar-baz" type="hidden value="…" />
) to transfer the data between the server and the client. The data could be a simple serialized JSON
Object like so:
[
{
"label": "Click ME",
"icon": "/img/icon.png",
"value": "item-xxx"
},
…
]
Going from there you need to write some Javascript code that generates something that looks like a <select>
but isn't. Each change on that »virtual field« needs to modify the respective hidden one's value, such that at submission, the correct value is transferred to the server.
Here I could find an example based on bootstrap
, maybe that is helpful. It renders a <ul><li></li>…</ul>
list to display the »virtual field«.
One possible solution maybe found here.
To sum up, you need to find a proper Javascript library that helps you doing it, or write some code by yourself to make it. Which one to choose strongly depends on your needs and requirements.
Another thing to keep in mind here is accessibility — what should happen if the user has Javascript disabled, or uses a browser that has problems to execute the code provided. Then it might be a good starting point to render a regular <select>
and use data attributes to inject images like so:
<select name="foo-bar-baz">
<option value="value" data-icon="/path/to/icon">Label</option>
</select>
which yields a working form element, which then can be enriched with icons, in case Javascript works properly.
So to answer the question: IMHO best practice is the solution which always works and doesn't exclude users without Javascript, a screen reader or a text-based browser. So the solution provided above, starting with a regular <select>
, which should be progressively enhanced, is what I would call best practice here.
add a comment |
Since it is not possible to do that with native HTML
elements, you cannot make it work without Javascript
. Therefore you at least need a hidden input field (<input name="foo-bar-baz" type="hidden value="…" />
) to transfer the data between the server and the client. The data could be a simple serialized JSON
Object like so:
[
{
"label": "Click ME",
"icon": "/img/icon.png",
"value": "item-xxx"
},
…
]
Going from there you need to write some Javascript code that generates something that looks like a <select>
but isn't. Each change on that »virtual field« needs to modify the respective hidden one's value, such that at submission, the correct value is transferred to the server.
Here I could find an example based on bootstrap
, maybe that is helpful. It renders a <ul><li></li>…</ul>
list to display the »virtual field«.
One possible solution maybe found here.
To sum up, you need to find a proper Javascript library that helps you doing it, or write some code by yourself to make it. Which one to choose strongly depends on your needs and requirements.
Another thing to keep in mind here is accessibility — what should happen if the user has Javascript disabled, or uses a browser that has problems to execute the code provided. Then it might be a good starting point to render a regular <select>
and use data attributes to inject images like so:
<select name="foo-bar-baz">
<option value="value" data-icon="/path/to/icon">Label</option>
</select>
which yields a working form element, which then can be enriched with icons, in case Javascript works properly.
So to answer the question: IMHO best practice is the solution which always works and doesn't exclude users without Javascript, a screen reader or a text-based browser. So the solution provided above, starting with a regular <select>
, which should be progressively enhanced, is what I would call best practice here.
Since it is not possible to do that with native HTML
elements, you cannot make it work without Javascript
. Therefore you at least need a hidden input field (<input name="foo-bar-baz" type="hidden value="…" />
) to transfer the data between the server and the client. The data could be a simple serialized JSON
Object like so:
[
{
"label": "Click ME",
"icon": "/img/icon.png",
"value": "item-xxx"
},
…
]
Going from there you need to write some Javascript code that generates something that looks like a <select>
but isn't. Each change on that »virtual field« needs to modify the respective hidden one's value, such that at submission, the correct value is transferred to the server.
Here I could find an example based on bootstrap
, maybe that is helpful. It renders a <ul><li></li>…</ul>
list to display the »virtual field«.
One possible solution maybe found here.
To sum up, you need to find a proper Javascript library that helps you doing it, or write some code by yourself to make it. Which one to choose strongly depends on your needs and requirements.
Another thing to keep in mind here is accessibility — what should happen if the user has Javascript disabled, or uses a browser that has problems to execute the code provided. Then it might be a good starting point to render a regular <select>
and use data attributes to inject images like so:
<select name="foo-bar-baz">
<option value="value" data-icon="/path/to/icon">Label</option>
</select>
which yields a working form element, which then can be enriched with icons, in case Javascript works properly.
So to answer the question: IMHO best practice is the solution which always works and doesn't exclude users without Javascript, a screen reader or a text-based browser. So the solution provided above, starting with a regular <select>
, which should be progressively enhanced, is what I would call best practice here.
edited Nov 22 '18 at 8:10
answered Nov 22 '18 at 7:37
philippphilipp
8,71153569
8,71153569
add a comment |
add a comment |
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.
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%2f53425481%2fbest-practice-for-using-an-image-inside-a-selection-in-a-form%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