mouse hover popup
-
On http://www.asp.net/ajax/showcase/ when you hover over a showcased site a window will popup giving more detail about the site. What control is providing this functionality and where can I find a sample. Thank you,
-
On http://www.asp.net/ajax/showcase/ when you hover over a showcased site a window will popup giving more detail about the site. What control is providing this functionality and where can I find a sample. Thank you,
Looks like an AjaxControlToolKit.HoverMenuBehavior but you can build your own with plain ole VB, I am looking for my old VB6 project that used MouseEnter and MouseLeave, mine was not this fancy but when the mouse Entered a control on my form, a callout type window opened and I was able to put info / instructions in the callout window, its buried somewhere on an external HD, if you are interested, I have to dig it out, it was simple unless someone here can get this Java for you easily. Sys.Application.add_init(function() { $create(AjaxControlToolkit.DropShadowBehavior, {"Opacity":0.2,"TrackPosition":true,"id":"ctl00_MainContent_ctl03_rptShowcases_ctl23_dse"}, null, null, $get("ctl00_MainContent_ctl03_rptShowcases_ctl23_img")); }); Sys.Application.add_init(function() { $create(AjaxControlToolkit.HoverMenuBehavior, {"DynamicServicePath":"/ajax/showcase/Default.aspx","OffsetX":-25,"OffsetY":-40,"PopDelay":150,"id":"ctl00_MainContent_ctl03_rptShowcases_ctl23_hme","popupElement":$get("ctl00_MainContent_ctl03_rptShowcases_ctl23_info")}, null, null, $get("ctl00_MainContent_ctl03_rptShowcases_ctl23_img")); });
-
Looks like an AjaxControlToolKit.HoverMenuBehavior but you can build your own with plain ole VB, I am looking for my old VB6 project that used MouseEnter and MouseLeave, mine was not this fancy but when the mouse Entered a control on my form, a callout type window opened and I was able to put info / instructions in the callout window, its buried somewhere on an external HD, if you are interested, I have to dig it out, it was simple unless someone here can get this Java for you easily. Sys.Application.add_init(function() { $create(AjaxControlToolkit.DropShadowBehavior, {"Opacity":0.2,"TrackPosition":true,"id":"ctl00_MainContent_ctl03_rptShowcases_ctl23_dse"}, null, null, $get("ctl00_MainContent_ctl03_rptShowcases_ctl23_img")); }); Sys.Application.add_init(function() { $create(AjaxControlToolkit.HoverMenuBehavior, {"DynamicServicePath":"/ajax/showcase/Default.aspx","OffsetX":-25,"OffsetY":-40,"PopDelay":150,"id":"ctl00_MainContent_ctl03_rptShowcases_ctl23_hme","popupElement":$get("ctl00_MainContent_ctl03_rptShowcases_ctl23_info")}, null, null, $get("ctl00_MainContent_ctl03_rptShowcases_ctl23_img")); });
Looking at the controls more closely I can created the desired popup by using the Animation control. I appreciate your response. Thank you.