 |
|
 |
not working in Firefox Mozilla
|
|
|
|
 |
|
 |
Well, this is my very first Web Application and I have downloaded your calender control to use in my website. I recieved two files calender.htm nad calender.hts. But the question i show to use them?
I have tried giving link of HTc control to my Web page but all I see is a link NOT a control there?
could you be more elaborative that users like me can understand how to use it?
|
|
|
|
 |
|
 |
hi,
i wanted to knw hw cn v make dis calendar work in firefox.i need it quite urgently, so will b waitin fr an early reply.i wud also lyk to knw sum basic concepts abt hw dis calendar is made as i m a beginner to html nd xhtml.
|
|
|
|
 |
|
 |
Hi,
This calendar control doesn't work in mozilla firefox . can you provide a new version which can work on mozilla.
thanks
|
|
|
|
 |
|
 |
Pls guide me how to start with converting the HTC control into asp.net user control.
We have been using 2.0 framework of asp.net..It populates all the controls dynamically which i dont want to reciprocate for User control... Pls treat this as urgent..thx
puneet
modified on Thursday, July 31, 2008 4:24 AM
|
|
|
|
 |
|
 |
hi
Good Stuff
keep up the good work
if it solve some drawbacks it helps to be one of the great
1)6 weeks display all the time(empty row at top or bottom)
2)if we give wrong date(eg feb 31) its automatically move to march 3rd
reg
sathish.c
|
|
|
|
 |
|
 |
I've discovered that Netscape, FireFox and Opera do not recognize any date after 2000 so here is the code I have added to my calendar to make it work in these browers. I hope someone finds it useful.
if (nCurrentYear < 2000){nCurrentYear = nCurrentYear + 1900}
|
|
|
|
 |
|
 |
Hi, Just a suggestion.
I wish you provide more coding implementation detail in the article itself, you know 80% of the users read between the lines, but if you have some important code or pictures in between those are not skipped, we are normally lazy downloading the demo project and then going through unless we are really looking for such thing.
Also I wish instead of window.showmodaldialog if you have used IFRAME, because it is fast and does not have 'title' on top.
Thanks
---------
Tittle
|
|
|
|
 |
|
 |
The component is written to handle only a Sunday to Saturday week. Many countries have weeks beginning and ending on different days. For instance in the middle east the week starts on Fridays and ends on Thursdays.
Balzac
|
|
|
|
 |
|
 |
Hi,
I need to have some check list box control in HTML. Is this possible using JAVA Script. What should be done for this....Is there any need to generate Active-X control for this...Kindly let me know some help in this regard. How to embed checklistbox control in HTML using JavaScript
Thanks
|
|
|
|
 |
|
 |
When using the control on a web page, IE shows a message that it has blocked the content (requiring the user to click on the control bar of IE and allow the blocked content).
Is there any way around this? Most users would not understand the warning.
Thanks.
|
|
|
|
 |
|
 |
When the calendar opens, it initially displays the date that was in the text field, but it does not take into account regional settings (my date format is dd/mm/yy) and it does not work correctly. Has anyone come across and fixed this problem?
|
|
|
|
 |
|
 |
I have solved this problem, if you want to know how, let me know.
|
|
|
|
 |
|
 |
How to get date In dd/mm/yyyy format?
Please help me for this
|
|
|
|
 |
|
 |
it seems not working on IE6 with Sevice Pack2. The pop-up box is empty when it is initiaed from IE6 with SP2. Any idea how to fix this?
for IE6 with SP1, it is working perfectly.
Thanks.
|
|
|
|
 |
|
 |
Your calendar control doesn't work because the extension .htc isn't registered correctly on your web server.
Please instruct your web server to return 'text/x-application' for the extension '.htc'.
On apache/linux, you do that by adding a line saying:
text/x-application htc
to /etc/mime.types
Thanks,
Isaac Aaron
|
|
|
|
 |
|
 |
Your calendar control has become very useful for me. Thanks for all of the effort.
I do have one question concerning display styles. I noticed that the code has some mention of CSS style sheets, but I have not found out how they are actually implemented in this control. Is there anyway to apply styles to this control to change appearance?
|
|
|
|
 |
|
 |
Does anyone know where to change the .htc to
have the control present the current date on
open. It now shows January 1, 2001.
Thanks,
Marc Miller
|
|
|
|
 |
|
 |
01/01/2001 is a value of textboxFromDate in MyWebPage.htm
Another question is - when I try to open this calendar against an empty textboxFromDate - I get JavaScript error
|
|
|
|
 |
|
 |
because calendar.htm expects a date as argument.
u need to change the java code functions.
|
|
|
|
 |
|
 |
I have fixed this problem within the ShowCalendar() function that gets called with the onclick event. This way the .htc file doesnt need to be edited.
I test if the text box is a valid date, if not, i set the value to todays date before passing it to the control. See code below:
function ShowCalendar(anItem)
{
pLeft = (screen.width - 265) / 2;
pTop = (screen.height - 210) / 2;
var aDate = new Date(anItem.value);
if(!(aDate.getDate() > -1 && aDate.getDate() < 31 & aDate.getMonth() > -1 && aDate.getMonth() < 12 && aDate.getFullYear() > -1))
{
aDate=new Date();
}
HoldDate = (aDate.getMonth()+1) + '/' + aDate.getDate() + '/' + aDate.getFullYear();
anItem.value = window.showModalDialog('./icCalendar/Calendar.htm',HoldDate, 'dialogLeft:' + pLeft + 'px;dialogTop:' + pTop + 'px;dialogHeight:210px;dialogWidth:265px;center:No;help:No;scroll:No;resizable:No;status:No;');
}
If you use this code, I also changed the parameter that gets passed to this function, I pass it the element from the form that the calendar is linked to.
Keep in mind, to compensate for regional date differences, I keep the date in long format. I also have made some changes to the calendar.htc and calendar.htm for the regional date issue. If you need details of these, let me know.
Joel Friedlaender
Software Developer
joel.friedlaender@icomply.com.au
iComply Pty. Ltd.
www.icomply.com.au
|
|
|
|
 |
|
 |
Where this code needs to be inserted.
Regards,
Shiva
|
|
|
|
 |
|
 |
You don`t have to change the .htc file.
Just change the MyWebPage.htm file !
at <INPUT id="textboxfromdate" look at value="01/01/2001"
change the value to the value of today.
I used PHP to help me : value=""
then it gives the date of today.
greetings,
Wijnand Schenning
|
|
|
|
 |
|
|
 |
|
 |
...it would be nice to have a cross browser version.
cheers,
Chris Maunder
|
|
|
|
 |