473,385 Members | 1,942 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,385 software developers and data experts.

Calendar control ?

Hey
Is there a way to make calendar "roll back" so when the user don't need it
should hide a lot of dates. Or maybe some roll back... I want to have
calendar in gridView but takes so much space that it wouldn't feet even if I
have page like 1280pixels wide ( there is a lot of diffrent fields too but
calendar really takes space ).
Jarod

Feb 1 '06 #1
3 1211
I've resolved this problem using javascript. I've put my calendar into
a <div> tag with position:absolute, and display:none style property.
Just next to it, i've put an image with javascript function on the
onClick attribute. When clicking the image, the javascript function
change 'display' of the div to 'inline-block', and then calculate the
position attributes (top & left) to add to the styles attributes of my
div. So anywhere my image is put, any click on it make my calendar
appear just next to it, just like a little popup.

Feb 1 '06 #2
> I've resolved this problem using javascript. I've put my calendar into
a <div> tag with position:absolute, and display:none style property.
Just next to it, i've put an image with javascript function on the
onClick attribute. When clicking the image, the javascript function
change 'display' of the div to 'inline-block', and then calculate the
position attributes (top & left) to add to the styles attributes of my
div. So anywhere my image is put, any click on it make my calendar
appear just next to it, just like a little popup.


Would you share some code ? Or link ? Or even email me with the solution ;)
Jarod
Feb 2 '06 #3
My JS code :
/* Affiche ou masque la balise div contenant le calendrier.
En cas d'affichage, elle la positionne également correctement sur la
fenêtre.

*/
function afficheCalendrier(eltReference, idDivCalend)
{
var divCalend = document.getElementById(idDivCalend);
if (divCalend.style.display == 'none')
{
var pos = WindowPositionDatePicker(eltReference);
divCalend.style.display = 'inline';
divCalend.style.pixelLeft = pos.x;
divCalend.style.pixelTop = pos.y + 20;

if ((divCalend.style.pixelLeft + divCalend.clientWidth) >=
document.body.clientWidth)
{
divCalend.style.pixelLeft = ((divCalend.style.pixelLeft -
divCalend.clientWidth) + eltReference.clientWidth);
}
}
else
{
divCalend.style.display = 'none';
}
}

/* Retourne les coordonnées absolues d'un élément

*/
function WindowPositionDatePicker(elt)
{
var pos = new Object;
pos.x = 0;
pos.y = 0;
while (elt.offsetParent != null && elt.id.search('WebPart') != 0)
{
pos.x += elt.offsetLeft;
pos.y += elt.offsetTop;
elt = elt.offsetParent;
}
return pos;
}

and then I've just put an image with
onclick="afficheCalendrier(this,'myDiv')" and also a div : <div
id="myDiv" style="display:none; position:absolute"> <asp:Calendar
....></div>

I put "this" as first parameter in my afficheCalendrier method, because
it allows as first parameter a reference element. As you will see (I
hope it will works fine), the div (which is abolute positionned) is
displayed just below the image. It's possible because the image is the
reference element.

I haven't test it very much, so perhaps you could had some
improvements. Tell me !

Feb 2 '06 #4

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

Similar topics

0
by: Tim Graichen | last post by:
Hello, I am making use of the Active X calendar control (mscal.Calendar.7) in several places in my main form, with the following code Below is an example of the code I'm using for the...
5
by: Miguel Dias Moura | last post by:
Hello, i am trying to create a .css file with several styles and apply them to the calendar control so i can change the look of: 1. Text Type and Format (Bold, Underline, etc) 2. Background...
1
by: bill yeager | last post by:
I would like to place the currently selected date (retrieved from the database) on a calendar control which is embedded inside a datagrid. However, I can't find the ID of the control to do so....
0
by: maxrawson | last post by:
First, let me start by saying my asp.net experience is still in it's infancy so please bare with me as I try to explain my situation. I have created a single page that with the use of many...
2
by: Caesar Augustus | last post by:
First, let me start by saying my asp.net experience is still in it's infancy so please bare with me as I try to explain my situation. I have created a single page that with the use of many...
3
by: Peter | last post by:
Is there anyway to make the System.Web.UI.WebControls.Calendar to display only Month Name and Year, like: January, 2006 February, 2006 ..... .... .... ....
3
by: =?Utf-8?B?UGFycm90?= | last post by:
I applied the following Ajax code in my web page which has a calendar control to keep my page from completely reloading everytime something was changed. <atlas:ScriptManager ID="ScriptManager1"...
7
by: John Kotuby | last post by:
Hi all, I am trying to use a calendar server control which I have ID="Calendar1" in the source code. What I am trying to do is emulate a JavaScript calendar that was being used in an older ASP...
6
by: thorpk | last post by:
I have an access database that i have added a pop up calendar to, the Table information for the Date Reported field is Date/Time format short date, input mask is 00/00/0000. i have created a...
3
by: thorpk | last post by:
I posted this problem earlier in the month and some one decided it was better to change the subject and ask a completely different question. I am therefore reposting. I am hoping some one can...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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...

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.