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

G

Guest

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
 
C

Curt_C [MVP]

no... not with the standard SELECT control.
You will need a custom one for that.
 
G

Guest

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
 
B

bruce barker

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)



| 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
| >
| >
| > | > > 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
| > >
| > >
| > >
| >
| >
| >
 
K

Ken Dopierala Jr.

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!
 
G

Guest

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",WriteJSScript());
Page.RegisterClientScriptBlock("cssBlock",WriteCSScript());

}

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,this.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>");

}
}
}
 
K

Ken Dopierala Jr.

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 said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top