473,834 Members | 1,468 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Make panel appear outside browser window?

The Microsoft CRM has custom combo boxes and date calendar controls that pop
up outside the current window in a floating panel (they DON'T open a sub
window in the normal way - there's no title bar for a start). How do they do
it? I want to do the same thing in my web app but can't find any info on how
to do it... Anyone know how its done!?

Thanks,

Simon
Nov 18 '05 #1
7 1700
View the source code and read the JavaScript.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Simon Storr" <sp**@spam.co m> wrote in message
news:ep******** ******@tk2msftn gp13.phx.gbl...
The Microsoft CRM has custom combo boxes and date calendar controls that pop up outside the current window in a floating panel (they DON'T open a sub
window in the normal way - there's no title bar for a start). How do they do it? I want to do the same thing in my web app but can't find any info on how to do it... Anyone know how its done!?

Thanks,

Simon

Nov 18 '05 #2
I've naturally had a look at the code, but I can't see anything at all to do
with showing panels... I think they might be using htc behaviour scripts
though which I have 0% experience of :o/

"Kevin Spencer" <ke***@takempis .com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
View the source code and read the JavaScript.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Simon Storr" <sp**@spam.co m> wrote in message
news:ep******** ******@tk2msftn gp13.phx.gbl...
The Microsoft CRM has custom combo boxes and date calendar controls that pop
up outside the current window in a floating panel (they DON'T open a sub
window in the normal way - there's no title bar for a start). How do

they do
it? I want to do the same thing in my web app but can't find any info on

how
to do it... Anyone know how its done!?

Thanks,

Simon


Nov 18 '05 #3
I found a DHTML thing called createPopup which does the job fine except it
dissapears when using a server-side control...

http://msdn.microsoft.com/library/de...reatepopup.asp

"Simon Storr" <sp**@spam.co m> wrote in message
news:OT******** ********@TK2MSF TNGP10.phx.gbl. ..
I've naturally had a look at the code, but I can't see anything at all to do with showing panels... I think they might be using htc behaviour scripts
though which I have 0% experience of :o/

"Kevin Spencer" <ke***@takempis .com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
View the source code and read the JavaScript.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Simon Storr" <sp**@spam.co m> wrote in message
news:ep******** ******@tk2msftn gp13.phx.gbl...
The Microsoft CRM has custom combo boxes and date calendar controls that
pop
up outside the current window in a floating panel (they DON'T open a
sub window in the normal way - there's no title bar for a start). How do

they
do
it? I want to do the same thing in my web app but can't find any info

on how
to do it... Anyone know how its done!?

Thanks,

Simon



Nov 18 '05 #4
If you can post a link to the page you initially found this on (originally)
I might be able to help.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Simon Storr" <sp**@spam.co m> wrote in message
news:uJ******** ******@tk2msftn gp13.phx.gbl...
I found a DHTML thing called createPopup which does the job fine except it
dissapears when using a server-side control...

http://msdn.microsoft.com/library/de...reatepopup.asp
"Simon Storr" <sp**@spam.co m> wrote in message
news:OT******** ********@TK2MSF TNGP10.phx.gbl. ..
I've naturally had a look at the code, but I can't see anything at all to
do
with showing panels... I think they might be using htc behaviour scripts though which I have 0% experience of :o/

"Kevin Spencer" <ke***@takempis .com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
View the source code and read the JavaScript.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Simon Storr" <sp**@spam.co m> wrote in message
news:ep******** ******@tk2msftn gp13.phx.gbl...
> The Microsoft CRM has custom combo boxes and date calendar controls
that pop
> up outside the current window in a floating panel (they DON'T open a sub > window in the normal way - there's no title bar for a start). How do

they
do
> it? I want to do the same thing in my web app but can't find any
info on how
> to do it... Anyone know how its done!?
>
> Thanks,
>
> Simon
>
>



Nov 18 '05 #5
Hi Simon,
Thanks for posting in the community!
From your description, you're wanting to implement the effect of the date
calendar or combox control in CRM. Also, you 're looking for a certain
approach to do it via clientside javascript?
If there is anything I misunderstood, please feel free to let me know.

Based on my research, such CRM controls as date calendar or combox you
mentioned maybe quite different from those in the ASP.NET web servercontrol
collections. The ASP.NET web servercontrols are generally rendered out as
html element and with some javascripts. I agree with you that the CRM
controls may have made use of some other layout techs such as htc script or
even some other rich client features. I think you may try look through the
page's html source to see which there're any infos on such help files. For
example, script resoure links or activex object blocks?

Please check out the suggestion. If you have any questions or need any
assistance, please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #6
Thanks for the reply - I managed to get it to work using showPopup - the
original CRM code date.js which I based my code on in the end didn't use it
though, but I managed to get it to go. The key to getting it to work was
realising that I had to use a parent reference to the page from inside the
popup. showPopup rocks :o)

Thanks,

Simon

"Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> wrote in message
news:cd******** ******@cpmsftng xa07.phx.gbl...
Hi Simon,
Thanks for posting in the community!
From your description, you're wanting to implement the effect of the date
calendar or combox control in CRM. Also, you 're looking for a certain
approach to do it via clientside javascript?
If there is anything I misunderstood, please feel free to let me know.

Based on my research, such CRM controls as date calendar or combox you
mentioned maybe quite different from those in the ASP.NET web servercontrol collections. The ASP.NET web servercontrols are generally rendered out as
html element and with some javascripts. I agree with you that the CRM
controls may have made use of some other layout techs such as htc script or even some other rich client features. I think you may try look through the
page's html source to see which there're any infos on such help files. For
example, script resoure links or activex object blocks?

Please check out the suggestion. If you have any questions or need any
assistance, please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #7
Hi Simon,
Thanks for your followup. I'm very glad that you've solved the issue
yourself. I'm sure you'll be proud of yourself. In addtion, we'd appreciate
if you'd like to share us your solution on this issue. Thanks.


Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #8

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

Similar topics

82
10734
by: Peter Diedrich | last post by:
The site design is pretty simple: ============================================ | Head | ============================================ | | | | | | | | | left | center | right | | | | | | | | |
1
4345
by: ajay | last post by:
I have following code for a slide menu but i twiked it to work for a single level menu. Open it in a Browser to get a clear picture. I have 2 Qs 1) How to make first entry as non-link. i.e i want to make first text as Table Heading/menu category. For examle in the given menu i want to make a heading as "Comp. Languages" which won't be a link. 2) The position of this menu is absolute to the page. I want to make it absolute to the Table...
4
9384
by: james | last post by:
I cannot get my UserControl's browsable properties to show up in the designer properties panel. I have then public virtual bool TestProp { {get return testProp; } set { testProp = value; } } but it doesn't show up in the designer. By the way, this used to work in the 2002 version, now in 2003 I am getting all kinds of problems like this
2
8190
by: The Eeediot | last post by:
I would like to have a panel (i.e. DIV-layer) appear in the middle of a web browser as a sort of pop-up window asking the standard "Are you sure?" question. This panel would promptly become invisable after the response. Are there any example of floating panels like this? Is there a way to get this panel to appear in the middle of the available screen, at least? TIA...
4
1870
by: Alan Silver | last post by:
Hello, I would like to know if it is possible to use a panel, but prevent it from adding a <div> tag to the HTML. The reason I want to do this is that I am using a panel to enable me to show/hide part of a page as required. I would like the part in the panel to appear on the same line as the controls that precede it, but when the panel is converted to HTML, a <div> tag is used, and that forces a new line in the browser. Any ideas? TIA
11
1903
by: BoloBaby | last post by:
OK, check this out... I have a form with a panel control and button on it (outside the panel control). I have two event handlers - one handles the click event of the button on the form. The other handles a custom "CardInserted" event for a class I wrote that watches for smart cards to be inserted into an attached smart card reader.
3
2867
by: Peter Proost | last post by:
Hi I have made my own control with a dropdown functionality like a combobox and it works just great, but I've got one problem remaining. If you put a combobox on a panel and press the little arrow the dropdown part enlarges outside the bounds of the panel. How can I achieve this for my own usercontrol? My usercontrol is a textbox with on it's right side a button and if you click the button a datagrid becomes visible below the textbox, but...
3
2520
by: =?Utf-8?B?Qw==?= | last post by:
Hi, I have a user control which I use on all my pages. The control is situated on the top of my page (sits on my master page). For some long pages the user has to scroll back up to the top of the page to select an option from my user control. Can I make this user control floatable so that as the user scrolls down the page the user control moves down also?
4
2697
by: =?Utf-8?B?SGFyc2hh?= | last post by:
Hi All, I have created a asp.net page. In that page I have added a Panel. On button click I need show a word document in that panel. Please let me know how to do that. I don't want to open word document Separately rather I need to show only in that panel. Thanks in advance. Harsha.
0
9796
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10790
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10505
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9329
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7755
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6952
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5624
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4425
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3976
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.