any body can help me for flyout
-
On my vb.net page has following controls for example:
Label1
dropdowncontrol1
dropdowncontrol2
link1
i am using flyout on link1 click
content..
so whenever flyout is opened , it will display content of flyout as well as from background dropdowncontrol1 and dropdowncontrol2 also seen in that opened flyout. So How can i disply only flyout content not that dropdownlist controls?
-
On my vb.net page has following controls for example:
Label1
dropdowncontrol1
dropdowncontrol2
link1
i am using flyout on link1 click
content..
so whenever flyout is opened , it will display content of flyout as well as from background dropdowncontrol1 and dropdowncontrol2 also seen in that opened flyout. So How can i disply only flyout content not that dropdownlist controls?
Well, it's clear to me now that your flyout is a third party user control. Doesn't that mean you should ask the vendor ? Some controls just appear behind drop boxes. That's because of how they are written. I'm not sure of the details, but if your control shows up that way, you need to find another.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
On my vb.net page has following controls for example:
Label1
dropdowncontrol1
dropdowncontrol2
link1
i am using flyout on link1 click
content..
so whenever flyout is opened , it will display content of flyout as well as from background dropdowncontrol1 and dropdowncontrol2 also seen in that opened flyout. So How can i disply only flyout content not that dropdownlist controls?
-
You're right, I noticed that. I dunno why he deleted it, and then reposted, but at least he finally posted some code ( he previously posted in the C# forum before I pointed him here ).
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
sorry , but i didn't understand properly, So if u know answer then please send me again
-
sorry , but i didn't understand properly, So if u know answer then please send me again
I gave you a good answer, did you understand it ?
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
On my vb.net page has following controls for example:
Label1
dropdowncontrol1
dropdowncontrol2
link1
i am using flyout on link1 click
content..
so whenever flyout is opened , it will display content of flyout as well as from background dropdowncontrol1 and dropdowncontrol2 also seen in that opened flyout. So How can i disply only flyout content not that dropdownlist controls?
The dropdown box as implemented by M$FT in all their wisdom will always appear "in front' of any true HTML controls. The simplest and best way of blocking it is to place an Iframe in front of it. See this article: http://www.codeproject.com/KB/HTML/dropdown_div.aspx
Jon Smith & Wesson: The original point and click interface
-
The dropdown box as implemented by M$FT in all their wisdom will always appear "in front' of any true HTML controls. The simplest and best way of blocking it is to place an Iframe in front of it. See this article: http://www.codeproject.com/KB/HTML/dropdown_div.aspx
Jon Smith & Wesson: The original point and click interface
thanks , My problem is solved