manolo
|
| Posted: 02/23/2006, 5:11 PM |
|
any one knows of a free Outlook style menu, and how to implement it in CCS.....???
|
|
|
 |
JGreen
|
| Posted: 03/07/2006, 12:00 AM |
|
I use DHTML Builder for my menus. It works great, is easy to insert into your CCS pages and could be made to look like ourlook. here is the link to their site: http://software.xfx.net/index.html
|
|
|
 |
feha
Posts: 712
|
| Posted: 03/07/2006, 2:56 AM |
|
Check here: http://www.dhtmlgoodies.com/
great resource
_________________
Regards
feha
www.vision.to
feedpixel.com |
 |
 |
Damian Hupfeld
|
| Posted: 03/08/2006, 4:02 AM |
|
Some nice scripts there.
Specifically looking for the Outlook menu? Just use style sheets and the
rollover tip from this forum.
Here is an example - the site is still under development <grin> and may not
be there by the time you read this link!
http://mustang.websitewelcome.com/~shimadzu/med/
The Outlook menu basically has a light grey bevelled background and on
mouuse over turns solid grey.
Damian
"feha" <feha@forum.codecharge> wrote in message
news:5440d66fb578ec@news.codecharge.com...
> Check here:
> http://www.dhtmlgoodies.com/
>
> great resource
> _________________
> Regards
> feha
> Vision.To Design
> www.vision.to
> wowdev.com
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
manolo
|
| Posted: 03/15/2006, 11:31 PM |
|
Hi, Im using the dhmtlgoodies.com menu, but When I click on a menu, all my parameters dessapear from the url....
Im know very little of javascript, and the page dont offer documentation, so please, help me....
|
|
|
 |
Damian Hupfeld
|
| Posted: 03/16/2006, 2:27 AM |
|
Example -
You have a table called news
Create a grid based on this table
Select only the Title field for the grid
Choose columnar format
Delete the first column (containing the field name not the field value)
Right click on the label and change to link
Modify the link properties adding the appropriate detsination and parameters
eg target news.ccp and parameter newsid=
Switch to HTML view and use a combination of Walter's alternate rows and
Luis's highlighting rows (see tips and solutions) to do something like this:
<table class="Grid">
<tr>
<!-- BEGIN Row -->
<tr {highlight}>
<td><a href="{newstitle_Src}"><u>{newstitle}</u></a> </td>
</tr>
<tr>
<!-- END Row -->
<!-- BEGIN NoRecords -->
</tr>
<tr class="NoRecords">
<td>{res:CCS_NoRecords}</td>
</tr>
<!-- END NoRecords -->
</table>
Note the label called {highlight} (from the above tips) and add custom code
like this:
$infomenu->pages->highlight->SetValue("class=\"MenuRow\"
onmouseover='this.className=\"highlight\"'onmouseout='this.className=\"MenuRow\"'");
In my style sheet I have the following styles:
..MenuRow td {
font-size: 80%;
padding: 3px;
border-bottom: 1px solid #999999;
vertical-align: top;
background-image: url('Images/outlook.png');
background-color: #cccccc;
color: #000000;
}
..MenuRow a:link {
font-weight: bold;
font-size: 100%;
color: #000000;
text-decoration: none;
}
..MenuRow a:visited {
font-weight: bold;
font-size: 100%;
color: #000000;
text-decoration: none;
}
..MenuRow a:hover, .AltRow a:active {
font-weight: bold;
font-size: 100%;
color: #000000;
text-decoration: none;
}
..MenuRow u {
font-weight: bold;
font-size: 100%;
color: #000000;
text-decoration: none;
}
..highlight td {
font-size: 80%;
padding: 3px;
vertical-align: top;
border-bottom: 1px solid #000000;
background-color: #cccccc;
color: #000000;
}
..highlight a:hover, .Caption a:active {
font-weight: bold;
font-size: 100%;
color: #000000;
text-decoration: none;
}
..highlight a:link {
font-weight: bold;
font-size: 100%;
color: #000000;
text-decoration: none;
}
..highlight u, {
font-weight: bold;
font-size: 100%;
color: #000000;
text-decoration: none;
}
Hope this has helped and not confused you!
regards
Damian Hupfeld http://www.nexthost.com.au/services.php
"manolo" <manolo@forum.codecharge> wrote in message
news:544191463b623b@news.codecharge.com...
> Hi, Im using the dhmtlgoodies.com menu, but When I click on a menu, all my
> parameters dessapear from the url....
>
> Im know very little of javascript, and the page dont offer documentation,
> so
> please, help me....
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
jl,jk,j
|
| Posted: 03/16/2006, 6:48 AM |
|
jkljklj
|
|
|
 |
lwismanuel
Posts: 39
|
| Posted: 03/20/2006, 1:33 PM |
|
You might want to take a look at this:
http://www.openrico.org/rico/demos.page?demo=rico_accordion
|
 |
 |
|