473,416 Members | 1,869 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

HTML <SELECT><OPTION> Tag With Image and Text

Does anyone know it is possible to include a small image(.gif .jpeg)
within a <SELECT><option> so that the user would see the option text as
well as a little image(icon) in the option? I know this is not an ASP.NET
related question, but I know this group is knowledgeable and quick with
responses.

Thanks

Nov 19 '05 #1
6 12954
no... not with the standard SELECT control.
You will need a custom one for that.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Does anyone know it is possible to include a small image(.gif .jpeg)
within a <SELECT><option> so that the user would see the option text as
well as a little image(icon) in the option? I know this is not an ASP.NET
related question, but I know this group is knowledgeable and quick with
responses.

Thanks

Nov 19 '05 #2
I understand how to make ASP.NET compiled controls but may need a few
pointers to get started on creating this from scratch. Is there a base
control that I can use to start this or do I have to graphically create this
from scratch? Just some design ideas will be a good start and I should be
able to take it from there.

Thanks
"Curt_C [MVP]" wrote:
no... not with the standard SELECT control.
You will need a custom one for that.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Does anyone know it is possible to include a small image(.gif .jpeg)
within a <SELECT><option> so that the user would see the option text as
well as a little image(icon) in the option? I know this is not an ASP.NET
related question, but I know this group is knowledgeable and quick with
responses.

Thanks


Nov 19 '05 #3
as most of the work will be the javascript code, create the flyout menu,
handle mouse and keyboard events, display selection, postback data, a good
javascript book is your first task. once you have the javascript worked out,
the control is pretty simple, look at any example. as you will probably use
a hidden field for the postback, you could inherit from the HtmlInputHidden
control, and override the OnRender method.

-- bruce (sqlwork.com)

"Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
news:19**********************************@microsof t.com...
| I understand how to make ASP.NET compiled controls but may need a few
| pointers to get started on creating this from scratch. Is there a base
| control that I can use to start this or do I have to graphically create
this
| from scratch? Just some design ideas will be a good start and I should be
| able to take it from there.
|
| Thanks
| "Curt_C [MVP]" wrote:
|
| > no... not with the standard SELECT control.
| > You will need a custom one for that.
| >
| > --
| > Curt Christianson
| > Owner/Lead Developer, DF-Software
| > Site: http://www.Darkfalz.com
| > Blog: http://blog.Darkfalz.com
| >
| >
| > "Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
| > news:90**********************************@microsof t.com...
| > > Does anyone know it is possible to include a small image(.gif .jpeg)
| > > within a <SELECT><option> so that the user would see the option text
as
| > > well as a little image(icon) in the option? I know this is not an
ASP.NET
| > > related question, but I know this group is knowledgeable and quick
with
| > > responses.
| > >
| > > Thanks
| > >
| > >
| > >
| >
| >
| >
Nov 19 '05 #4
Hi Chris,

This was a cool question! I don't know if someone has put a 3rd party
control out there like this yet. My gut tells me that it is out there.
However I did some quick searches using keywords like "select", "html",
"graphic", "picture", "dropdownlist" and other keywords and combinations I
could think of but didn't come up with anything.

This could have added benefits. For example, ever notice how when you put a
div over a dropdownlist the DDL shows through so you have to hide it? Very
annoying! Might as well replace that too. To be honest, it is all of
today's browsers that need to be replaced but before I launch into my
favorite topic (which I never discuss here) I'll stop.

This is such an interesting topic though that I'm going to come up with a
solution. Curt is right, this will work best as a custom control and not
something you just want to ad hoc together everytime. Bruce is also right,
it will take javascript to get it done. I can handle the custom control and
the javascript for IE. Any javascript gurus for Opera, Mozilla, or Other
please email me because I could use your help to make this universal.
Thanks! Ken.

P.S. Chris, since this is your topic, what would you like? Are you looking
for a few preset graphic sizes or do you want to specify? Do you want to be
able to use html to display the text in the list (bold, multiline items,
specify the color of each item, more than one column, etc.)? Would you be
interested in having items in the list that can in turn be themselves
dropdowns? What about nested dropdowns that go back to the server and fill
themselves with data based on a function you supply without performing a
postback? Sky's the limit. All I can say is this is going to be a blast!

P.P.S. Thanks for the post!

"Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Does anyone know it is possible to include a small image(.gif .jpeg)
within a <SELECT><option> so that the user would see the option text as
well as a little image(icon) in the option? I know this is not an ASP.NET
related question, but I know this group is knowledgeable and quick with
responses.

Thanks

Nov 19 '05 #5
Thanks for all the feedback. Over the past few weeks, this idea started as a
simple tooltip on a webpage and has now evolved into a much more functional
version....

What I invision is the ability to hover over an object on a webpage and have
an "intellisense" like dropdownlist (just like in visual studio) appear below
that object. The collection in the intellisense list would have icons
associated with each item and when the user selects an item it will redirect
the user to a new page/window. When the user hover's off this object, the
intellisense dropdown will disappear. I feel this is a robust way to make
use of a web page's space and to also add much needed functionality to a
website.

Ken - I would like to see your finished product and any other
idea's/comments you may have. This would also be an opportune time to
cooperate and share some of the development work....

To share some of my work, I have started to develop a rudimentary custom
control that uses the select option html tag and some javascript to hide and
unhide the object when a user mouseover's an object on the form. Since the
select option tag will not accomplish all of the goals of the design, most of
this code will not be extendable.

Please be in touch!
Chris

using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.Collections;
using System.Collections.Specialized;

namespace Applications.Library.Controls
{
[DefaultProperty("Text"),
ToolboxData("<{0}:Intellisense runat=server></{0}:Intellisense>")]
public class Intellisense : WebControl
{
private string text;

[Bindable(true),
Category("Appearance"),
DefaultValue("")]
public string Text
{
get
{
return text;
}

set
{
text = value;
}
}
[
Bindable(true),
Category("Data"),
Description("HTML Select Box Collection")
]
private StringCollection _selectItems ;
public StringCollection SelectItems
{
get { return _selectItems;}
set{_selectItems = value;}
}

[
Bindable(true),
Category("Data"),
Description("HTML Select Box Collection")
]
private int _htmlSelectTagSize = 4;
public int HtmlSelectTagSize
{
get { return _htmlSelectTagSize;}
set{_htmlSelectTagSize = value;}
}

private string WriteJSScript()
{
// should provide alternative if browser can't js
return ("<script type=\"text/javascript\">function
show(elmnt){document.all(elmnt).style.visibility=\ "visible\"} function
hide(elmnt){document.all(elmnt).style.visibility=\ "hidden\"}</script>");
}

private string WriteCSScript()
{
return
"<style>body{font-family:arial;}table.menu{font-size:100%;position:absolute;visibility:hidden;}</style>";
}

protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
Page.RegisterClientScriptBlock("jsBlock",WriteJSSc ript());
Page.RegisterClientScriptBlock("cssBlock",WriteCSS cript());

}

protected override void Render(HtmlTextWriter output)
{

// write html around selectbox
output.Write("<table><tr><td onmouseover=\"show('{0}')\"
onmouseout=\"hide('{0}')\">HoverObject<table
class=\"menu\"><tr><td>",this.ClientID.ToString()) ;

// try to render html listbox / textarea
output.AddAttribute(HtmlTextWriterAttribute.Name, "optSelect");
output.AddAttribute(HtmlTextWriterAttribute.Id,thi s.ClientID.ToString())
output.AddAttribute(HtmlTextWriterAttribute.Size,_ htmlSelectTagSize.ToString());
output.RenderBeginTag(HtmlTextWriterTag.Select);

// Goal is to loop through SelectItems which is type StringCollection
// StringCollection class implements IEnumerable Interface
if (SelectItems !=null)
{
System.Collections.IEnumerator myEnumerator =
((IEnumerable)SelectItems).GetEnumerator();
while ( myEnumerator.MoveNext() )
{
output.RenderBeginTag(HtmlTextWriterTag.Option)
output.AddAttribute(HtmlTextWriterAttribute.Value, myEnumerator.Current.ToString());
output.Write(myEnumerator.Current.ToString());
}
}

output.Write("</select>");
output.Write("</td></tr></table></td></tr></table>");

}
}
}


"Ken Dopierala Jr." wrote:
Hi Chris,

This was a cool question! I don't know if someone has put a 3rd party
control out there like this yet. My gut tells me that it is out there.
However I did some quick searches using keywords like "select", "html",
"graphic", "picture", "dropdownlist" and other keywords and combinations I
could think of but didn't come up with anything.

This could have added benefits. For example, ever notice how when you put a
div over a dropdownlist the DDL shows through so you have to hide it? Very
annoying! Might as well replace that too. To be honest, it is all of
today's browsers that need to be replaced but before I launch into my
favorite topic (which I never discuss here) I'll stop.

This is such an interesting topic though that I'm going to come up with a
solution. Curt is right, this will work best as a custom control and not
something you just want to ad hoc together everytime. Bruce is also right,
it will take javascript to get it done. I can handle the custom control and
the javascript for IE. Any javascript gurus for Opera, Mozilla, or Other
please email me because I could use your help to make this universal.
Thanks! Ken.

P.S. Chris, since this is your topic, what would you like? Are you looking
for a few preset graphic sizes or do you want to specify? Do you want to be
able to use html to display the text in the list (bold, multiline items,
specify the color of each item, more than one column, etc.)? Would you be
interested in having items in the list that can in turn be themselves
dropdowns? What about nested dropdowns that go back to the server and fill
themselves with data based on a function you supply without performing a
postback? Sky's the limit. All I can say is this is going to be a blast!

P.P.S. Thanks for the post!

"Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Does anyone know it is possible to include a small image(.gif .jpeg)
within a <SELECT><option> so that the user would see the option text as
well as a little image(icon) in the option? I know this is not an ASP.NET
related question, but I know this group is knowledgeable and quick with
responses.

Thanks


Nov 19 '05 #6
Hi Chris,

I'm going to be working on this shortly. I just started a company (which
lanuches 1/1/2005) and I'm making this the top thing on the ToDo:. I think
this control could be awesome. Use my email to contact me about code. Ken.

"Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
news:E2**********************************@microsof t.com...
Thanks for all the feedback. Over the past few weeks, this idea started as a simple tooltip on a webpage and has now evolved into a much more functional version....

What I invision is the ability to hover over an object on a webpage and have an "intellisense" like dropdownlist (just like in visual studio) appear below that object. The collection in the intellisense list would have icons
associated with each item and when the user selects an item it will redirect the user to a new page/window. When the user hover's off this object, the
intellisense dropdown will disappear. I feel this is a robust way to make
use of a web page's space and to also add much needed functionality to a
website.

Ken - I would like to see your finished product and any other
idea's/comments you may have. This would also be an opportune time to
cooperate and share some of the development work....

To share some of my work, I have started to develop a rudimentary custom
control that uses the select option html tag and some javascript to hide and unhide the object when a user mouseover's an object on the form. Since the select option tag will not accomplish all of the goals of the design, most of this code will not be extendable.

Please be in touch!
Chris

using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.Collections;
using System.Collections.Specialized;

namespace Applications.Library.Controls
{
[DefaultProperty("Text"),
ToolboxData("<{0}:Intellisense runat=server></{0}:Intellisense>")]
public class Intellisense : WebControl
{
private string text;

[Bindable(true),
Category("Appearance"),
DefaultValue("")]
public string Text
{
get
{
return text;
}

set
{
text = value;
}
}
[
Bindable(true),
Category("Data"),
Description("HTML Select Box Collection")
]
private StringCollection _selectItems ;
public StringCollection SelectItems
{
get { return _selectItems;}
set{_selectItems = value;}
}

[
Bindable(true),
Category("Data"),
Description("HTML Select Box Collection")
]
private int _htmlSelectTagSize = 4;
public int HtmlSelectTagSize
{
get { return _htmlSelectTagSize;}
set{_htmlSelectTagSize = value;}
}

private string WriteJSScript()
{
// should provide alternative if browser can't js
return ("<script type=\"text/javascript\">function
show(elmnt){document.all(elmnt).style.visibility=\ "visible\"} function
hide(elmnt){document.all(elmnt).style.visibility=\ "hidden\"}</script>");
}

private string WriteCSScript()
{
return
"<style>body{font-family:arial;}table.menu{font-size:100%;position:absolute;
visibility:hidden;}</style>"; }

protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
Page.RegisterClientScriptBlock("jsBlock",WriteJSSc ript());
Page.RegisterClientScriptBlock("cssBlock",WriteCSS cript());

}

protected override void Render(HtmlTextWriter output)
{

// write html around selectbox
output.Write("<table><tr><td onmouseover=\"show('{0}')\"
onmouseout=\"hide('{0}')\">HoverObject<table
class=\"menu\"><tr><td>",this.ClientID.ToString()) ;

// try to render html listbox / textarea
output.AddAttribute(HtmlTextWriterAttribute.Name, "optSelect");
output.AddAttribute(HtmlTextWriterAttribute.Id,thi s.ClientID.ToString());
output.AddAttribute(HtmlTextWriterAttribute.Size,_ htmlSelectTagSize.ToString
()); output.RenderBeginTag(HtmlTextWriterTag.Select);

// Goal is to loop through SelectItems which is type StringCollection
// StringCollection class implements IEnumerable Interface
if (SelectItems !=null)
{
System.Collections.IEnumerator myEnumerator =
((IEnumerable)SelectItems).GetEnumerator();
while ( myEnumerator.MoveNext() )
{
output.RenderBeginTag(HtmlTextWriterTag.Option);
output.AddAttribute(HtmlTextWriterAttribute.Value, myEnumerator.Current.ToStr
ing()); output.Write(myEnumerator.Current.ToString());
}
}

output.Write("</select>");
output.Write("</td></tr></table></td></tr></table>");

}
}
}


"Ken Dopierala Jr." wrote:
Hi Chris,

This was a cool question! I don't know if someone has put a 3rd party
control out there like this yet. My gut tells me that it is out there.
However I did some quick searches using keywords like "select", "html",
"graphic", "picture", "dropdownlist" and other keywords and combinations I could think of but didn't come up with anything.

This could have added benefits. For example, ever notice how when you put a div over a dropdownlist the DDL shows through so you have to hide it? Very annoying! Might as well replace that too. To be honest, it is all of
today's browsers that need to be replaced but before I launch into my
favorite topic (which I never discuss here) I'll stop.

This is such an interesting topic though that I'm going to come up with a solution. Curt is right, this will work best as a custom control and not something you just want to ad hoc together everytime. Bruce is also right, it will take javascript to get it done. I can handle the custom control and the javascript for IE. Any javascript gurus for Opera, Mozilla, or Other please email me because I could use your help to make this universal.
Thanks! Ken.

P.S. Chris, since this is your topic, what would you like? Are you looking for a few preset graphic sizes or do you want to specify? Do you want to be able to use html to display the text in the list (bold, multiline items,
specify the color of each item, more than one column, etc.)? Would you be interested in having items in the list that can in turn be themselves
dropdowns? What about nested dropdowns that go back to the server and fill themselves with data based on a function you supply without performing a
postback? Sky's the limit. All I can say is this is going to be a blast!
P.P.S. Thanks for the post!

"Chris Fink" <Ch*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Does anyone know it is possible to include a small image(.gif .jpeg)
within a <SELECT><option> so that the user would see the option text as well as a little image(icon) in the option? I know this is not an ASP.NET related question, but I know this group is knowledgeable and quick with responses.

Thanks


Nov 19 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Cristian Martinello | last post by:
How can I add <OPTION> to a tag <SELECT> runtime ? the code combo.innerHTML+="<OPTION value='1'>Name</OPTION>" doesn't work... -- Posted via Mailgate.ORG Server - http://www.Mailgate.ORG
2
by: Craig Keightley | last post by:
How do I retrive the Name of the item in a select box I have the following form <select name="select"> <option value="1">Monday</option> <option value="2">Tuesday</option> <option...
3
by: Iain Hallam | last post by:
Hi. I've been using display:none on the style property of some <option> elements in my forms, which works fine with Mozilla - as expected it removes the option from my dropdown (although it...
7
by: lambertb | last post by:
Hi, is this possible to achieve this, and how? http://img217.imageshack.us/img217/779/derrrvw2.png thanks!
7
by: Shrek | last post by:
I have a drop down on a web page and want to change the cursor from default to pointer, so my style definition has style ="cursor: pointer;" the drop down though fails to change from the...
14
by: The Natural Philosopher | last post by:
This is a nasty one and I can't see my way out of it. I have a bunch of select statements in a form, and each select statement has an onchange="do_something(this)" in it, and this works...
0
by: ajos | last post by:
hi friends, Im currently having a <html:select> where ive got many options value inside it...for example---> <html:select property="branch" size="1"> <html:option value="New...
5
by: plsHelpMe | last post by:
Hi Frens, I want to show a blank space at the begining of the option tag using javascript, can anyone please help me for the same. Let me explain what i want: I want to have an event which the...
9
by: eihabisaac | last post by:
hey every body how can i get using javascript the selected option <option> ID or Value because when ever i clicked it i get the <select> id and i dont want that <select name="list" id="list"...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.