Link to the lines using other columns in the same line

Link to all rows based on values:

All - I have a requirement like this:

My Table has 2 columns - Col1, Col2

Select * from tab1;

Col1, Col2

A1 C1

A1 C2

A2 C2

C3 A2

C3 A3

C4 A4

A5 C2

Now, I have to create a link like this (in the example above, A1, A2, A3, and A5 are related because Col2 -

A1 is related to the C1 and C2 - A2 is related to A1 because they have all both C2 and thus related to A1 - A3 is associated with A2 because of the C3 (and therefore associated with A1) and A5 is linked to A2 because of the C2 (so A1 and A3)

A4 is not related to what it is and so independent

L1 A1

L1 A2

L1 A3

L1 A5

L2 A4

How can I do it using the function analytical or any other way - I reached the same using sliders-, but it takes too long and messy. Any help would be appreciated.

Thank you

RAM

Hello

If I understand your problem, a line with col1 = x and a line with col1 = get will assign the same linklevel if one

  1. There is a line with x = col1 and col2 = x and another line with col1 = 'AY' and col2 = z, or
  2. There is a line with col1 = x and col2 = z and another line that has col2 = z and the same linklevel there.

It is a recursive relationship. Here's a way to do it in pure SQL:

WITH got_relative AS

(

SELECT col1

CONNECT_BY_ROOT col1 AS relative

OF testdata

CONNECT BY NOCYCLE (col1 = col1 PRIOR

AND col2 <> col2 PRIOR

)

OR (col1 <> col1 PREREQUISITE)

AND col2 = col2 PRIOR

)

)

SELECT 'L ' | DENSE_RANK () OVER (ORDER OF MIN (relative)) AS linklevel

col1

OF got_relative

GROUP BY col1

ORDER BY col1

;

But pure SQL is not the most effective way to solce this problems.  You might be better off with a solution of PL/SQL.

Tags: Database

Similar Questions

  • Different coloured links on the same page

    If I set up different coloured links on the same page, it does not work on firefox but on other browsers it is fine.
    Example: -.
    a.Yellow:Link {color: #FFFF00}

    Any suggestions?

    Thank you!

    Martin

    http://www.w3schools.com/CSS/css_pseudo_classes.asp

    You have it tired with the color?

  • I bought CS6 Teacher Edition, but I'm unable to download or find a link for the same.

    I bought CS6 Teacher Edition, but I'm unable to download or find a link for the same.

    If approved, the software will be available in your account. Otehrwise use the serial number on the trial version. If you are referring to a subscription / creative cloud, download the application manager just like with any normal edition, connect and let him handle things.

    Mylenium

  • How to remove links on the same page?

    I have PDF documents with links to referenced sections (for example the text link "Article 2.2" points to the real page number of "article 2.2" "), but as the links are created from the cross references in the interpretation of the word to PDF, there are cases that the destination page number and the number of the page source of the links are identical (for example, text links"section 2.2 "on page 9 are created with the destination on page 9, which is the actual page the number of"Article 2.2"), I want to delete all these links, but I don't know how to get the landing page, I check the QAnywhere and finds that"PDLinkAnnotGetAction"may work, but I don't know how to use it, you could me check codes below and advise? Your help is really appreciated!

    PDPage page;

    ASInt32 i, of i2.

    AVDoc avDoc = AVAppGetActiveDoc();

    PDDoc pdDoc = AVDocGetPDDoc (avDoc);

    int pageNum = PDDocGetNumPages (pdDoc);

    for (i = pageNum - 1; i > = 0; i--)

    {

    page = PDDocAcquirePage (pdDoc, i);

    int annotNum = PDPageGetNumAnnots (page);

    for (i2 = annotNum - 1; i2 > = 0; i2-)

    {

    If...

    PDPageRemoveAnnot (i, i2);

    }

    }

    My product information:
    Acrobat Pro 8.1.6, Windows

    Start by reading the PDF standard (ISO 32000 - 1) to understand the Actions vs Destinations.

    Then for each annot, you'll want to see that she (and in the case of an Action, if it has more than one).  Next, you need to analyze the action or dest to see what it is and where it goes.  If you do not, you will delete it.

    From: Adobe Forums [email protected]<>[email protected]>

    Reply-To: "[email protected]<>[email protected]> ' [email protected]<>[email protected]>" "

    Date: Tuesday, October 25, 2011 09:25:32-0700

    To: Leonard Rosenthol [email protected]<>[email protected]>

    Topic: How to remove links to the same page?

    How to remove links on the same page?

    created byhttp://forums.adobe.com/people/OALDOALD > in Acrobat SDK - see the discussion complete onhttp://forums.adobe.com/message/3989576#3989576

  • IS THIS POSSIBLE AND IF YES COLOR 'HOW' TO HAVE DIFFERENT LINKS ON THE SAME PAGE?

    Hello

    IS THIS POSSIBLE AND IF YES COLOR 'HOW' TO HAVE DIFFERENT LINKS ON THE SAME PAGE?

    How to replace the color of Page link?

    See you soon,.

    Dreamer101.1

    Yes, it is possible, using CSS.

    Here's how. You already know that the link colors are set in the following css rules:

    • a: link
    • a: active
    • a: visited
    • a: hover

    All you have to do to have another set of links of different colors is to create another set of rules that set different colors and also have different names:

    • a.name1:link
    • a.name1: active
    • a.name1:visited
    • a.name1:hover

    Can link you these rules to the anchor as a class tag: something.

    You can have as many sets of rules to link given that the names you can think of.

    Happy linking!

  • How do I use the Favorites links folder the same as in IE?

    Until today, I was with IE8. In bookmarks, there is a folder named "links". These would appear in the top of the screen as a toolbar (with subfolders, acting as drop down menus). I want to set up the same way in FF. Is there a setting/bar tools/addon /... to achieve this?

    It is called the bookmarks toolbar in Firefox.

    https://support.Mozilla.com/en-us/KB/bookmarks+toolbar

  • Styles of multiple links on the same Page - problems

    Thanks in advance for your help. With the help of CS5.5

    Problem:
    I'm designing a model that uses images by hovering in the top nav links. When the style
    other links in the main content and the footer, sections, the style becomes hereditary since the links at the top.

    Tried everything, including:
    -Spry
    -separate style sheet for the page footer
    -Renaming the div
    -using the class instead of div

    -renamed CSS
    -curse/pray/crossing my fingers

    Have not tried to reinstall the software.

    Here is the html and CSS (as attached):

    HTML

    <!-TemplateBeginEditable name = "doctitle"-->
    < title > Untitled Document < /title >
    <! - TemplateEndEditable - >
    "" < link href = "... / _css/pages.css" rel = "stylesheet" type = "text/css" / >
    <!-TemplateBeginEditable name = "head"->
    <! - TemplateEndEditable - >
    < / head >

    < body >
    < div id = "outerWrapper" >
    < div id = "headerPages" >
    < ul >
    < li > < a href = "#" > link 1 < /a > < /li >
    < li > < a href = "#" > Link 2 < /a > < /li >
    < li > < a href = "#" > link 3 < /a > < /li >
    < li > < a href = "#" > Link 4 < /a > < /li >
    < li > < a href = "#" > link 5 < /a > < /li >
    "< li > < a href ="... / index.htm "> link 6 < /a > < /li >"
    < /ul >
    < div id = "logo" > placeholder logo < / div >
    <!-TemplateBeginEditable name = "pageTitle"->
    < div id = "pageTitle" >
    "" < h1 > < img src = "... /_images/NAV-Icon-Big.jpg" width = "66" height = "66" / > Page title < / h1 >
    < / div >
    <! - TemplateEndEditable - >
    < / div >
    < div id = "contentWrapperPages" > <!-TemplateBeginEditable name = "mainContent"->
    < div id = "contentCol1Pages" >
    "< p > < a href ="... / web - design.htm "> 1 < /a > < /p > column"
    < / div >
    <! - TemplateEndEditable - > <!-TemplateBeginEditable name = "sidebarContent"->
    < div id = "contentCol2Pages" >
    < p > < a href = "#" > column 2 < /a > < /p >
    < / div >
    <! - TemplateEndEditable - >
    < / div >
    < / div >
    < div id = "footer" >
    < ul >
    < li > < a href = "#" > the footer elements go here < /a > < /li >
    < /ul >
    < / div >
    < div id = 'copyright' >
    < p > & copy; 2011 < /p >
    < / div >

    < / body >
    < / html >

    CSS

    {body
    background: #EEF4F7;
    }
    {#outerWrapper}
    Width: 960px;
    margin-right: auto;
    left margin: auto;
    Background: #FFF;
    }

    #logo {}
    Width: 200px;
    height: 75px;
    padding-top: 10px;
    }
    #logo img {}
    padding-left: 50px;
    text-align: center;
    vertical-align: middle;
    }
    {#pageTitle}
    height: 66px;
    Width: 525px;
    top of the margin: 30px;
    }
    #pageTitle img {}
    padding-right: 10px;
    text-align: center;
    vertical-align: middle;
    padding-left: 25px;
    }
    #pageTitle h1 {}
    do-size: 2em;
    make-style: italic;
    color: #039;
    do-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    vertical-align: middle;
    margin: 0px;
    padding: 0px;
    }

    {#headerPages}
    Background: url (.. /_images/pages-Header.jpg) no-repeat;
    height: 200px;
    Width: 960px;
    }
    #headerPages ul {}
    list-style: none;
    float: right;
    / * width [disabled]: 680px. */
    }

    #headerPages ul li {}
    float: left;
    }
    #headerPages ul li a {}
    text-decoration: none;
    display: block;
    do-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    }
    #headerPages ul li a: link, a: visited {}
    padding: 5px 15px of 35px.
    color: #039;
    }
    #headerPages ul li a: hover, a: active, a: {emphasis
    padding: 5px 15px of 35px.
    Background: url (.. top of /_images/NAV-ICON2.jpg) no-repeat center;
    color: #039;
    }

    {#contentWrapperPages}
    Background: #FFF url (none) horizontal;
    float: left;
    Width: 960px;
    padding-bottom: 15px;
    Police-family: 50;
    }
    #contentWrapperPages a: link, a: visited {}
    color: #039;
    text-decoration: none;
    }
    #contentWrapperPages a: hover, a: active, a: {emphasis
    color: #0 C 0;
    text-decoration: none;
    }
    #contentWrapperPages img {}
    float: left;
    height: 75px;
    Width: 75px;
    }
    {#contentCol1Pages}
    Background: #FFF;
    float: left;
    Width: 650px;
    padding-right: 10px;
    padding-left: 10px;
    margin left: 25px;
    margin-right: 10px;
    }

    {#contentCol2Pages}
    Background: #FFF;
    float: left;
    Width: 200px;
    padding-right: 10px;
    padding-left: 10px;
    Clear: right;
    }
    #footer {}
    Width: 960px;
    Background: #FFF;
    margin: 0px auto;
    Clear: both;
    height: 50px;
    }
    #footer ul {}
    list-style: none;
    text-align: center;
    / * Displays [disabled]: block; */
    }
    #footer ul li {}
    display: block;
    text-align: center;
    }
    #footer ul li a {}
    padding: 10px 5px;
    color: #039;
    text-decoration: none;
    }
    #footer ul li a: link, a: visited {}
    do-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: #039;
    }
    #footer ul li a: hover, a: active, a: {emphasis
    color: #0 C 0;
    }

    #copyright {}
    Width: 960px;
    margin: 0px auto;
    }

    #copyright p {}
    do-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    text-align: center;
    }

    Much better if you post your problem webpage and post a link here so we can see the direct page in our browsers.

    However, the first glance to the CSS, the syntax of selectors together needs to be amended.

    Each element separated by commas in a grouped list of selectors should be clearly explained in its entirety

    e, g,

    change

    #headerPages ul li a: link, a: visited {}

    padding: 5px 15px of 35px.

    color: #039;

    }

    #headerPages ul li a: hover, a: active, a: {emphasis

    padding: 5px 15px of 35px.

    Background: url (.. top of /_images/NAV-ICON2.jpg) no-repeat center;

    color: #039;

    }

    TO

    #headerPages ul li a: link, #headerPages ul li a: visited {}

    padding: 5px 15px of 35px.

    color: #039;

    }

    #headerPages ul li a: hover, #headerPages ul li a: active, #headerPages ul li a: {emphasis

    padding: 5px 15px of 35px.

    Background: url (.. top of /_images/NAV-ICON2.jpg) no-repeat center;

    color: #039;

    }

    It is for all other groups of rules separated by commas.

  • Index and tuning: Linking on the same table

    Hello everyone,

    I have a PL/SQL mechanism that is based on a select query which links a table (T_RECHRED) on himself.

    Here's the SQL...

    SELECT
    DR. LSZ, DR. RECH_ID RECH_ID, GS. RECH_ID GS_ID
    Of
    DR. T_RECHRED, T_RECHRED GS
    WHERE
    DR. DATE_FROM GROUP GS. DATE_FROM
    AND DR. BILL_AMOUNT = GS. BILL_AMOUNT *-1
    AND DR. LSZ = GS. LSZ
    AND DR. ALNR = GS. ALNR
    AND DR.CAT! = 'GS' AND GS.CAT = 'GS '.
    ORDER BY
    DR. LSZ CSA, DR. POSITIONSTEXT1 DESC;

    As you can see, the table is joined to itself with the following fields...

    DATE_FROM, LSZ, ALNR and BILL_AMOUNT (with GS having the dial-up sign)

    Both sides of the join (separation) selection is on the cat 'IS GS' c to one side and 'NOT GS' for the other side. The selection of GS catches / selects several hundred thousand lines, while the 'NO GS' selection selects several million lines.

    This query (and the accompanying PL/SQL process) works very well...

    -Reduces data volumes
    -With the following filter...
    AND GS. RECH_MONTH IN (200809, 200810)
    ... which returns the same amount of data as a select complete!

    ... but seems to work constantly on the volume of data.

    The really stupid thing is that I had run it once (full volume) but have reshaped the tables and somehow fail to replicate the index configuration that I had before (it's really stupid of me!)

    So, my question is the best way to address such a request?

    My thoughts are these:

    -J' have my filter clause in the right order? The "GS.CAT = 'GS' is the most 'limit' filter so I put this last." Is this correct?
    -Do I have to put the joints in a "INNER JOIN" clause (leaving the "Cat" filter in the WHERE clause), or it makes no difference?
    -Is that the join on the BILL_AMOUNT with the sign reversed (*-1) impact on performance?
    -J' would have separate index (on each join column)? Or I should have an index composed on the join fields all (or almost)?
    -The ORDER BY clause is important (and cannot be deleted) because the PL/SQL depends on a concrete order.

    I've been googling and reading my book "Oracle Tuning" but can not find all the information on the links between the tables on themselves.

    Advice you can give me on this, or links to the 'case studies' or 'HOWTO', would be welcome.

    Thank you very much
    Alan Searle

    PS: I tried to run a "explain plan" and that seems to work through OK but no data (as far as I can see) is written to the "PLAN_TABLE. Any ideas what I'm doing wrong here?

    version of database? I suspect 10g or higher.

    explain plan is now written in a global temporary table, it must be explained and look in the session.

  • I need to place a series of links to the same scale.

    I'm working on a project where I need to make many links of varying dimensions (Illustrator files in this case) in InDesign to the same scale so that they are proportional to the other.

    I took picture with living legends attached blocks and ideally would like to wear each link to 5%, then mount the box to the content (cmnd + alt + C). Is this possible?

    To travelled many kilometres to keep going adjuting and menu bar percentage!

    OK worked the entire solution. (Mac OS 10.5.8 Indesign CS4 6.0.6)

    I was partly right with my posts except there is an option, you need to change in the Panel of the preferences > General

    During the measurement

    Adjust the percentage of the chosen scale

    Draw your box and resize it by your percentage required using scale X percentage and scale Y percentage

    Resize the box the size of departure chosen and he said it's a chart right click area > Content > graph

    Make a dup of the box maybe even put it in a file library for easy access.

    Use the Place command to put an image in the box and they will appear as the percentage reduction you need.

    Have fun

  • Need help with styles of different links on the same page

    Hello

    I use Dreamweaver CS4 on a PC.

    I searched through a large number of posts during the last two days, I tried the tutorial projectseven.com, google would, etc., but still may not know...

    All I want to do is apply a different link color to some links at the bottom of my page. Elsewhere on the site, I put the color blue (for the link) and orange (for the hover)-for footer links, I want the link to be white and the hover to stay orange color.

    The problem with the projectseven tutorial is that it seems not to apply to the CS4 and I kept getting error messages when you try to apply a new CSS rule - there is no class. Tag | Advanced according to the instructions...

    I copied the code to my page for this. The links I want to apply a different style to are contained in the DIV called "Footer-Navigation-Bar.

    Could someone please give me some instructions or point me in the right direction please?

    Thank you very much

    Vickie

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""
    <!-saved from url = (0014) subject: internet->
    "< html xmlns ="http://www.w3.org/1999/xhtml">".
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    <!-TemplateBeginEditable name = "doctitle"-->
    the < title > Australia subscribe to the family - it's free! < /title >
    <! - TemplateEndEditable - >
    "" < link href = "... / family - subscribe.css" rel = "stylesheet" type = "text/css" / >
    "" < script src = "... / SpryAssets/SpryMenuBar.js" type = "text/javascript" > < / script >
    "" < link href = "... / SpryAssets/SpryMenuBarHorizontal.css" rel = "stylesheet" type = "text/css" / >
    <!-TemplateBeginEditable name = "head"->
    <! - TemplateEndEditable - >
    < style type = "text/css" >
    <!--
    a: link {}
    color: # 30;
    text-decoration: none;
    }
    a: hover {}
    color: #F30;
    text-decoration: none;
    }
    a: visited {}
    text-decoration: none;
    }
    a: active {}
    text-decoration: none;
    }
    ->
    < / style > < / head >

    < body >
    < div id = "container" >
    < div id = "banner" >
    < ul id = "family-subscribe-menu" class = "MenuBarHorizontal" >
    "< li > < a href ="... / index.html "> home < /a > < /li >"
    "< li > < a href ="... / subscribe.html "> Subscribe < /a > < /li >"
    "" < li > < a href = "... / family - advertise.html" > announced < /a > < /li >
    "" < li > < a href = "... / family - articles.html" > items < /a > < /li >
    "" < li > < a href = "... / family-sign - in .html" > questions < /a > < /li >
    "" < li > < a href = "... / family - contribute.html" > Contribute < /a > < /li >
    "" < li > < a href = "... / family - contact.html" > Contact < /a > < /li >
    < /ul >
    < / div >
    "" "" < div id = "sidebar" > < a href = "... / family-sign - in .html" > < img src = "... /images/Launch-issue.jpg" alt = "number of launch" width = "220" height = "380" hspace = "4" / > < / has >
    < div id = "sidebar-image2" >
    "" < p > < img src = "... / pictures/sleeping bag for Web.jpg" width = "220" height = "151" alt = "sleeping bag" / > < / p >
    < p > Kozy Koala™ Sleeper pillow is ideal for summer nights when children want to sleep or when go you camping. The camper all-in-one pillow is composed of... [MORE] < /p >
    < / div >
    < div id = "sidebar-image3" >
    "" < p > < img src = "... / pictures/solrx for Web.jpg" width = "220" height = "164" alt = "sunscreen" / > < / p >
    SolRX® solar filters are very sweaty and resistant to the water-ideal for anyone who leads a life active outdoor... whether you are in the water or not! [MORE] < / div >
    < / div >
    <!-TemplateBeginEditable name = "content-area"->
    < div id = "main content" > main content < / div >
    <! - TemplateEndEditable - >
    < div id = "footer" >
    "" < div id = "page-navigation-bar foot" > < a href = "... / family - about.html ' > on < /a > | "" < a href = "... / family - advertise.html" > announced < /a > | "" < a href = "... / family - contribute.html" > help < /a > | "" < a href = "... / family - contact.html" > contact < /a > | "" < a href = "... / family - unsubscribe.html" > unsubscribe < /a > < / div >
    < div id = "foot of page-text" > Family Australia | ABN 33150685385 | "For all advertising inquiries, please contact < a href ="mailto:[email protected] "> [email protected] < /a > < br / >"

    Copyright © 2010 family Australia. All rights reserved.
    < / div >
    < / div >
    < / div >
    < / div >
    < script type = "text/javascript" >
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar ("family-subscribe-menu", {imgDown: "SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});})
    ->
    < /script >
    < / body >
    < / html >

    The links I want to apply a different style to are contained in the DIV called "Footer-Navigation-Bar.
    ......
    ......
    a: link {}

    color: # 30;
    text-decoration: none;
    }
    a: hover {}
    color: #F30;
    text-decoration: none;
    }
    a: visited {}
    text-decoration: none;
    }
    a: active {}
    text-decoration: none;
    }

    Hello

    You can see the CSS that applies to your links above.  If you have links you want to style in a different way, just write the rule as follows:

    #Footer - Navigation - Bar has: link {}

    color: Red;

    text-decoration: none;

    }

    Or whatever.  There are other ways, but this will make you as you already have these links you want to style differently in a div with its own code.  The new rule comes after other rules in your CSS I think that to make sure of the cascade, well thinking about, there is something called specificity in the CSS, which means that the rule I suggest will win anyway.  Everything you do in my suggestion is to select one: a link that is a descendant of an element with particular ID.

    I hope this helps.  I am a novice and might have gotten a little fuzzy with the waterfall/specficity but good, I think you get where you want to go...

    Martin.

  • V29 Firefox to open links in the same window

    Since the installation of version 29, I found only two apparently related questions:

    (1) I find that links open in the same window as the source, instead of a new window.

    For example, I get a notification of a newsletter every day in my Yahoo email account. Before v29, when I clicked on the link in the email to go to the newsletter, it would open in a NEW window (my preference).

    With version 29, it opens in the SAME window (and replaces the window where I had Yahoo mail open).

    (2) in the same way, I do a lot of work where the links will appear in an Excel worksheet. Previously, whenever I clicked on one, it will open a new window. If I clicked on 6, I have 6 windows open. Now, every link I click REPLACES the last one that I opened.

    These two problems are very annoying and slow me down.

    Is there a setting where I can change this behavior?

    I found that after Firefox v29, a LOT of my settings and

    Add - ons have been changed / reset. Try this;
    Launch Firefox in Mode safe

    While you are in safe mode;

    Firefox Options > advanced > General.

    Find and stop using hardware acceleration.

    Then check ALL your settings. Browser and Add-ons. Then restart.

  • Open link in the same window

    Hi, I found quite a few of questions on this but no work so far...

    I'm using AS3 course and this is my code so far...

    Link3.addEventListener (MouseEvent.CLICK, onClick3)

    function onClick3 (MouseEvent): void {}
    navigateToURL (new URLRequest ("
    http://mylink.com"), "_self" ' ");
    }

    I have three images that I want to link to three different html pages and I need them to open in the same window. I put this code on each image, change the names of occurrence of each image (link1, link2, and link3)

    When I click on the flash in pulish (f12) the link works but in a new window, not the same thing. This means the 'self' attribute does not? or is it another reason?

    Thank you, Jake.

    You should test the direct window on a server controls.

  • opening links in the same window

    Hi guys, been using the action script following on the buttons to open the links:

    {button.onRelease = function ()}
    getURL ("http://www.wayouttshirts.co.uk/Baboon.html", target = _parent)
    }

    {button.onRelease = function ()}
    getURL ("http://www.wayouttshirts.co.uk/Baboon.html", target = _self)
    }

    {button.onRelease = function ()}
    getURL ("http://www.wayouttshirts.co.uk/Baboon.html", target = _blank)
    }

    Problem is that they just open new windows and not the link in the current window.

    Any ideas?

    Thank you very much

    Dave

    use:

    {button.onRelease = function ()}
    getURL ("http://www.wayouttshirts.co.uk/Baboon.html", "_self")
    }

  • RH7 toolbar custom button Open link in the same window of full Page

    Hello

    I use Robohelp HTML 7 and I inserted a custom button in the tool bar of navigation I want to make a link to a web page. I wish it were in the same window, but using the entire page - as it is possible to do when insert any ordinary hyperlink into a field and selecting display Connectionwithsuchprocedures: full Page option.

    I managed to create buttons to toolbar navigation which opens a link in a new window or the same window using parent frameset. Is there a javascript that would allow me to open the link using the entire page?

    Thanks for any help

    Hello

    In the skin Editor, open the properties of the button. Go to the action tab, and then select "JavaScript". Add the following code in the field "OnClick": top.location.href ='http://www.google.nl' (edit the URL to the address that you want.)

    Take a bow

    Willam

    This email is personal. In our view, full disclaimer, please visit www.centric.eu/disclaimer.

  • How to create different attributes of link on the same page?

    I am using the CSS links for my menu. The links are white, big and fat, but I want an e-mail link to be a different color, the police and the smallest in size. How can I do this?

    Clark9 wrote:

    In the file.css: I typed: #email a {color: #000000}

    It did not work. What I am doing wrong?

    #email one is a descendant selector, which means a link that is a descendant of an element with the email ID. However, your ID is in the opening tag of the link, the link is not a descendant of email. The following should work:

    #email { color: #000000; }
    

    If it doesn't, it changes to this:

    a#email { color: #000000; }
    

    That means "a link with the email ID.

Maybe you are looking for

  • Clickable links

    Any of my email (Outlook Express) or web links are more clickable. http://www.proshowenthusiasts.com/index.php Has happened yesterday. Help would be welcome. Mike

  • How make the USB auto-ouvrir its Nav Pane folder when I plug. Vista for this? __

    In the Navigation pane (what I call the directory root - no?), when I plug a USB key, I have to click on the folder "Computer" to open it, then the folder of USB stick to open that in order to be able to drag files from the hard drive to the files in

  • AJAX request works just with a Wi - fi Blackberry Widget

    I'm doing an Ajax request to're RESTful WebService. When I run the Simulator everything works fine, but when I install the widget for blackberry on my device (9800) applications works when I'm using the Wifi connection... It's my config.xml file: bbb

  • VSS configurations

    We have 2 core switches 4500 series. I'm going to set up VSS configurations at the first time. When I get first order for the creation of domain, but not recognition of switches. "sw1 (config) #switch virtual area 9.^Invalid entry % detected at ' ^'

  • refunds for job applications

    I tried several applications that do not have an option to try. No of who don't like announced so I deleted immediately again 3 days later I was still charged? I want my money!