Recent Questions
Q: We work in a Mac environment, do you have a cross browser menu for that?
A: To create your menu on MAC you should download MAC version ofDeluxe Tuner.
http://deluxe-menu.com/deluxe-tuner-html.zip
Q: Can I just have the date displayed without the time in the javascript popup calendar
A: You cannot hide time from the calendar templates.
But you can chose the output data format.
See more info:
http://www.calendardatepicker.com/parameters.html#param
calendarDatePicker.handlers( ['txt', 'txt', {type : 'date', format: '%d-%m-%Y'}] );
The result will be: 12-02-2009 Q: We'd tried the useIFrame = 1 as well and the issue is fixed but the IE6 shows a "non secure objects over a secure connection" message, it worries me because on one side the problem is solved but on the other hand it generates confusion.
As an alternative we're planning to use the Deluxe navigation tree in order to avoid these overlapping problems, but it doesn't show up in IE7 over W2K3 R2!!
We requiere your support to use either the Deluxe Tree or the Deluxe Menu,
I'll look forward your kind answer.
A: Deluxe navigation tree works fine in IE7.
Try to set width and height parameters:
var tmenuWidth="230px";
var tmenuHeight="auto";Q: I have a question regarding deluxe tab implementation.Can you guide me on how to change tab selection dynamically for the tabbed navigation.
A: Deluxe Tabs doesn't support API functions which can return the selected tab.
You can set "bselectedItem" and " var bselectedSmItem" parameters based on your link before you call your data file.
For example, move " var bselectedItem" and " var bselectedSmItem" parameters from your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
var bselectedItem= var bselectedSmItem= </script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, for example:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
var bselectedItem=4;
var bselectedSmItem=3;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>