Spry and onTabMouseOver / onTabMouseOut functions

I added to my page a Collapsible Spry Panel and i was looking for a solution to fix the javascript code using the commands onTabMouseOver and onTabMouseOut instead of onTabClick
Just to explain better, i want to add an automatic opening when you put the mouse over the CollapsiblePanelTab ; then an automatic closing when you put the mouse out from the CollapsiblePanelContent
The problem i found is that i was able to add a rule for the automatic opening, but there are some problems in the auto-closing.
The original code is this (line 148):
Spry.Widget.CollapsiblePanel.prototype.onTabClick = function(e)
if (this.isOpen())
this.close();
else
this.open();
this.focus();
return this.stopPropagation(e);
and i susbstituted it with this code:
Spry.Widget.CollapsiblePanel.prototype.onTabMouseOver = function(e)
if (this.isOpen())
this.close();
else
this.open();
this.focus();
return this.stopPropagation(e);
Now the CollapsiblePanelContent can be opened when i put the mouse over the CollapsiblePanelTab.
So i tried to add this code also:
Spry.Widget.CollapsiblePanel.prototype.onTabMouseOut = function(e)
if (this.isOpen())
this.close();
else
this.open();
this.focus();
return this.stopPropagation(e);
With this when i move the mouse outside the CollapsiblePanelTab, i can auto-close the CollapsiblePanelContent .. but it's not really what i was looking for; infact i need to put a Menù in the CollapsiblePanelContent and with that rule if i move the mouse on the CollapsiblePanelContent, the script consider the CollapsiblePanelContent oustside the CollapsiblePanelTab so the CollapsiblePanelContent disappears when i try to move the mouse on it.
Is there a solution to apply the auto-closing function to the CollapsiblePanelContent and not to the CollapsiblePanelTab using onTabMouseOut?
Sorry, completely a newbie with the javascript.. thanks in advance

thanks Ben, i did it!
this is the correct code (leaving the original SpryCollapsiblePanel.js unmodified)
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0" onMouseOver="CollapsiblePanel1.open();" >Tab</div>
<div class="CollapsiblePanelContent" onMouseOut="CollapsiblePanel1.close();">Content</div>
</div>
<script type="text/javascript">
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1", { contentIsOpen: false });
</script>
</body>
</html>
Now putting the mouse on the PanelTab, the PanelContent opens by itself ;
and moving the mouse outside the PanelContent, the PanelContent closes by itself !
Exactly what i was looking for
Thanks Again

Similar Messages

  • Spry Menu Issues - Not functioning correctly in Microsoft IE

    Hi there,
    I am fairly new to web design and dreamweaver.
    I have constructed a simple page that I am happy with complete with Spry Menu which again I am happy with.  However this spry menu works perfectly in firefox but for some reason on IE my spry menu does not function correctly and goes all over my page!
    CORRECT VERTICAL MENU - FIREFOX -
    INCORRECT MENU FUNCTION! - IE -
    See my CSS Code below for the spry menu in questions - if this helps -
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: inherit;
        font-size: 100%;
        cursor: default;
        width: 1000px;
        height: 47px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: medium;
        position: relative;
        text-align: center;
        cursor: pointer;
        width: 318px;
        float: left;
        height: auto;
        background-color: #000000;
        border: 2px solid #FFF;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: auto;
        cursor: default;
        width: auto;
        position: absolute;
        left: -1000em;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 318px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin-top: -5%;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0px;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #FFFFFF;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #bcbdb9;
        padding: 0.5em 0.75em;
        color: #FFF;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #000;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #000;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inherit;
        f\loat: left;
        background: #FFF;
    ** I am also using Windows 8 and Dreamweaver CS6 If this helps.**
    Any help with this would be fantastic as I need this to be resolved before the end of the week. 
    Any further information required please message me to find out.
    Thanks,
    Jamie

    THE CONFLICT IS BETWEEN YOUR DOCUMENT CSS AND THE SPRY CSS.
    It is because the <li> and <a> TAGS have been styled and therefore OVERRIDDEN THE SPRY CSS.
    Use CLASS TAGS e.g.  <li class="anyclass"> and <a class="anyclass">
    and STOP USING THE <a> TAGS.
    N.b. you may need to unstyle any <a> or other TAGS that conflict with the SPRY CSS.  (However it's best to start over knowing that styling basic tags may affect the SPRY CSS).

  • Flash not rendering correctly in IE using Spry and SWFObject.

    Hi,
    Tools that I'm using (Flash, Spry and SWFObject)
    I just finished converting portions of the image gallery to a
    video gallery using FLV Files.
    It works great in FireFox and Opera, I guess all mozilla
    based browsers.
    Now my problem is that I pass the Path variable to Flash for
    it to load the FLV file using SWFObject.
    Code:
    <div spry:detailregion="dsVideos"
    class="AccordionPanelContent">
    <div id="flashcontent"> You need to upgrade your Flash
    Player. </div>
    <script type="text/javascript">
    // <![CDATA[
    var so = new SWFObject("VideoPlayer.swf", "videoplayer",
    "427", "288", "8", "#161616");
    so.addVariable("video", "{@path}");
    so.write("flashcontent");
    // ]]>
    </script>
    </div>
    The FLV files won't load at all in IE meaning the variable is
    not going thru when Flash is rendered for a second time.
    So I added another variable just to see Flash reaction once
    the page loaded for the first time.
    Code:
    so.addVariable("Variable1", "I Love This Bug!");
    I added Variable1 to the Flash Movie as a textbox and It
    loads in a split second for the first render but when Spry loads it
    datasets and renders the region where Flash resides the variable
    doesnt go thru and Flash gets a undefined variable.
    When Spry renders that region the video variable is not going
    thru and no video is shown. :(
    Any suggestion?

    Don -
    Have you had any success here? I've been trying to get any
    kind of Flash
    to load properly in IE in a spry:region (or :detailregion),
    and have
    failed entirely.
    I added spry:state="ready" to the div with the Flash movie,
    but no fix.
    I've tested with both IE 6 and IE 7 beta, and with FP 8 and
    FP 9.
    I have a few test pages (everything works great in FireFox):
    - www.imagicdigital.com/portfolios/video_state7.html
    (uses SWFObject to write the movie, with spry info as
    FlashVars)
    IE: Flash movie is hidden. No FlashVars are passed.
    - www.imagicdigital.com/portfolios/video_state7_noso.html
    (same page as above, but with the standard Object/Embed tags,
    no SWFObject)
    IE: Flash movie is hidden. No FlashVars are passed.
    - www.imagicdigital.com/portfolios/video_state7a_noso.html
    (same page as above but with hardcoded FlashVars)
    IE: Flash movie is hidden. No FlashVars are passed.
    - www.imagicdigital.com/portfolios/video_state7b_noso.html
    (a Flash movie with no FlashVars at all)
    IE: Flash movie is hidden.
    - www.imagicdigital.com/portfolios/video_state7c_noso.html
    (same as 7a but with spry:region removed from the flash div)
    IE: Works perfectly. Flash movie shows up, FlashVars are
    passed.
    I noticed a few things:
    - In IE, the spry:debug generated markup shows FlashVars="",
    empty.
    - I don't see an innerHTML fix call for the FlashVideo div,
    even if I
    make it into a spry:region instead of detailregion. Can this
    help omehow?
    - In IE 7, if I right-click where my flash movie is supposed
    to show up,
    it does become visible (with no FlashVars). However, IE often
    crashes
    after that, either right away or on window close. The error
    shown in
    the alert is "Out of Memory at Line 56". This is both with
    and without
    passing FlashVars.
    NOTE: This error was just recently discussed on the SWFObject
    mailing
    list. Geoff Stearns found a sort of bug in FP 9 that was also
    causing
    this same error when 2 Flash movies were embedded with
    SWFObject and
    each making different ExternalInterface calls. He fixed it by
    removing
    the function written by Flash when it loads called
    "__flash_unloadHandler()". Link to the relevant discussion
    thread:
    http://lists.deconcept.com/htdig.cgi/swfobject-deconcept.com/2006-July/000795.html
    It would be great (crucial, I think) to get Spry to work with
    SWFs. Any
    ideas or progress? Thanks in advance.

  • Spry and prototype in jetspeed

    Hi!
    I have the same problem as some others with spry and
    prototype. I want to use spry in a portlet in liferay. Liferay use
    prototype.js. I have tried to put the spry before and after the
    prototype and I have tried it with prototype.js versions 1.4
    1.5_rc1 and 1.5. The spry version I use is 1.4.
    If have both at one page I get always:
    Spry.Data.updateRegion(toJSONString) caught an exception:
    TypeError: Spry.Data.regionsArray[regionName].updateContent is not
    a function
    If you have fixed this in your current version of spry - when
    will this be available?
    Thank you! marc.

    Hi again!
    If prototype.js is in the page the sorting does not work. So
    again my question.. is there a newer version of spry, which works
    with prototype.js and this jason.js?
    Its critical for us, that spry works with the liferay portal!
    best regards, marc.

  • I have a macbook pro version 10.7.5 and my mailbox will not open at all and comes up with a quit message even though it is not open. how can i get into my account. it works on my iPhone an i have internet and all other functions working on my computer

    I have a macbook pro version 10.7.5 and my mailbox will not open at all and comes up with a quit message even though it is not open. how can i get into my account. it works on my iPhone and i have internet and all other functions working on my computer

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports (not "Diagnostic and Usage Messages") for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents—the text, not a screenshot. I know the report is long. Please post all of it anyway.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • HT4085 So does this mean that I cannot have rotation lock off and the mute function off at the same time? In other words, can I have my screen rotate automatically as I hold my iPad in either portrait or landscape AND hear sounds from my apps at the same

    So does this mean that I cannot have rotation lock off and the mute function off at the same time? In other words, can I have my screen rotate automatically as I hold my iPad in either portrait or landscape AND hear sounds from my apps at the same time?

    In other words, can I have my screen rotate automatically as I hold my iPad in either portrait or landscape AND hear sounds from my apps at the same time?
    Yes, you can. You can configure the Side Switch (above the volume button) either as Mute switch or Rotation lock.
    Settings > General > Use Side Switch to: choose what you like the Side Switch to function as.

  • I created an apple id online on my computer, all is well and it is functional, however when i enter this same id and password into my iphone 5c it continues to ask me to sign in. Any suggestions on what i need to do?

    I created an apple id online on my computer, all is well and it is functional, however when i enter this same id and password into my iphone 5c it continues to ask me to sign in. Any suggestions on what i need to do?

    I created an apple id online on my computer, all is well and it is functional, however when i enter this same id and password into my iphone 5c it continues to ask me to sign in. Any suggestions on what i need to do?

  • Is there a way to disable 'Save as' and 'Send Email' function in Acrobat XI?

    Hi,
    Is there a way to disable 'Save as' and 'Send Email' function in Acrobat XI?
    Thnx in advance.

    I would hope there would be no way to disable Save AS that would reduce the applicationss capability. What are you trying to prevent happening?

  • Replacing Oracle's FIRST_VALUE and LAST_VALUE analytical functions.

    Hi,
    I am using OBI 10.1.3.2.1 where, I guess, EVALUATE is not available. I would like to know alternatives, esp. to replace Oracle's FIRST_VALUE and LAST_VALUE analytical functions.
    I want to track some changes. For example, there are four methods of travel - Air, Train, Road and Sea. Would like to know traveler's first method of traveling and the last method of traveling in an year. If both of them match then a certain action is taken. If they do not match, then another action is taken.
    I tried as under.
    1. Get Sequence ID for each travel within an year per traveler as Sequence_Id.
    2. Get the Lowest Sequence ID (which should be 1) for travels within an year per traveler as Sequence_LId.
    3. Get the Highest Sequence ID (which could be 1 or greater than 1) for travels within an year per traveler as Sequence_HId.
    4. If Sequence ID = Lowest Sequence ID then display the method of travel as First Method of Travel.
    5. If Sequence ID = Highest Sequence ID then display the method of travel as Latest Method of Travel.
    6. If First Method of Travel = Latest Method of Travel then display Yes/No as Match.
    The issue is cells could be blank in First Method of Travel and Last Method of Travel unless the traveler traveled only once in an year.
    Using Oracle's FIRST_VALUE and LAST_VALUE analytical functions, I can get a result like
    Traveler | Card Issue Date | Journey Date | Method | First Method of Travel | Last Method of Travel | Match?
    ABC | 01/01/2000 | 04/04/2000 | Road | Road | Air | No
    ABC | 01/01/2000 | 15/12/2000 | Air | Road | Air | No
    XYZ | 01/01/2000 | 04/05/2000 | Train | Train | Train | Yes
    XYZ | 01/01/2000 | 04/11/2000 | Train | Train | Train | Yes
    Using OBI Answers, I am getting something like this.
    Traveler | Card Issue Date | Journey Date | Method | First Method of Travel | Last Method of Travel | Match?
    ABC | 01/01/2000 | 04/04/2000 | Road | Road | <BLANK> | No
    ABC | 01/01/2000 | 15/12/2000 | Air | <BLANK> | Air | No
    XYZ | 01/01/2000 | 04/05/2000 | Train | Train | <BLANK> | No
    XYZ | 01/01/2000 | 04/11/2000 | Train | <BLANK> | Train | No
    Above, for XYZ traveler the Match? clearly shows a wrong result (although somehow it's correct for traveler ABC).
    Would appreciate if someone can guide me how to resolve the issue.
    Many thanks,
    Manoj.
    Edited by: mandix on 27-Nov-2009 08:43
    Edited by: mandix on 27-Nov-2009 08:47

    Hi,
    Just to recap, in OBI 10.1.3.2.1, I am trying to find an alternative way to FIRST_VALUE and LAST_VALUE analytical functions used in Oracle. Somehow, I feel it's achievable. I would like to know answers to the following questions.
    1. Is there any way of referring to a cell value and displaying it in other cells for a reference value?
    For example, can I display the First Method of Travel for traveler 'ABC' and 'XYZ' for all the rows returned in the same column, respectively?
    2. I tried RMIN, RMAX functions in the RDP but it does not accept "BY" clause (for example, RMIN(Transaction_Id BY Traveler) to define Lowest Sequence Id per traveler). Am I doing something wrong here? Why can a formula with "BY" clause be defined in Answers but not the RPD? The idea is to use this in Answers. This is in relation to my first question.
    Could someone please let me know?
    I understand that this thread that I have posted is related to something that can be done outside OBI, but still would like to know.
    If anything is not clear please let me know.
    Thanks,
    Manoj.

  • Search and replace string function

    Hello, I am using the "search and replace string" function and it does nt seem to work consistently for me.   I am using it in a situation where I am taking an array of strings, converting this into a spreadsheet string then deleting all of the commas.  Has anyone experienced the same behavior? I have searched through other posts and found other simular faults but none of the fixes worked for this. I can post the code it needed.
    Thanks,
    Andrew

    I agree that commas are often not desirable, especially if your software should also work in countries where comma is used as a decimal seperator.
    Where are the commas coming from? Does (1) each element of the original array have one (or more), do you (2) use comma as seperator if you convert it to a spreadhseet string?
    For (1), you might just strip out the comma for each element right in the loop. For case (2) you would simply use a different separator to begin with, of course.
    Btw: you are abusing a WHILE loop as a FOR loop, because you have a fixed number of iterations. Please replace it with a FOR loop. If you use a FOR loop, LabVIEW can manage memory much more efficiently, because it can allocate the entire output array before the loop starts. For While loops, the total number of iterations is not known to the compiler. (Of course a real program would also stop the loop if an error occurs. In this case you would need to stay woth the WHILE loop. )
    Do you have a simple example how the raw array elements look like. How many commas are there?
    LabVIEW Champion . Do more with less code and in less time .

  • Hi, i installed ios 5 for my iphone 4 and the camera function on lock screen was on the first few days , now it doesn't show the lock screen . is there any change i can do . Pls help me to solve the issue.

    hi, i installed ios 5 for my iphone 4 and the camera function on lock screen was on the first few days , now it doesn't show the lock screen . is there any change i can do . Pls help me to solve the issue.

    nishaadp wrote:
    ... it stucks with the apple logo ,  nothing works. Is anything i can do?
    See Here for
    Frozen or unresponsive iPhone

  • How can I get my Apple Remote to play/pause and do other functions on all applications?

    When I press the F8 button on my Macbook, it plays or pauses the media for whatever media application I have open, whether that's iTunes, VLC, or MPlayerX. Same goes for F7 and F9, which are backwards and forewards respectively.
    Well I recently bought an Apple Remote and expected that the same thing would go for the remote; the play/pause button would give the same command as the F8 button, so I could use the remote on whatever application that also supported the F7, F8, and F9 buttons. But apparently, that's not the case; so far I've only been able to control iTunes.
    So is there any setting I can change or program I need to install to have the Apple Remote buttons work just like the keyboard media buttons? I tried Remote Buddy, but that's not giving me specifically what I want since it's only designed to make specific programs compatible. But they still don't support for example MPlayerX, which is my default video player.

    Gosh, that must explain why it didn't come with a magic hat!
    I completely accept the fact that Apple designed it to do a limited set of functions, but in the post I asked if there was any program that I can install that causes it to do hit the function keys for me. There's already Remote Buddy, which intercepts remote signals and performs specific functions instead of the normal ones. How then can there not be a program that also intercepts them, but hits the function keys? Seems to me that that would be even easier than what Remote Buddy's doing.

  • Can i play music and use mirroring function at same time from ipad2 to apple tv

    can i play music and use mirroring function at same time from ipad2 to apple tv

    Yes, any audio during the "mirroring" funtion will forward to the appletv. This includes all system audio, games, apps, ect. If you slide the mute botton the side of your ipad to mute then you can block app audio and just get Music audio or Pandora if you are using pandora.

  • On windows 8.1 charms bar does not show up and the touch functionality is also degraded

    upgraded my elitepad 900 to windows 8.1 . after this the charms bar does not show up and the touch functionality is also degraded while playing games. i believe i need the latest synaptics gesture suite.  Cannot find it. Please help.

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this HERE.
    HP ElitePad 900 G1 Tablet Support
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • How to create and execute a function whose return value is  a table

    hi folks ,
    i would like know how to create and execute a function whose return value is a table ,
    am new to pl/sql ,
    my statement for the function is
    SELECT ct.credential_code, c.expiration_date
    FROM certifications c, credential_types ct
    WHERE ct.crdnt_id = c.crdnt_id
    AND c.person_id = person_id;
    i would like to have the result of the above query as return value for the function.
    Thanks in advance ,
    Ashok.c

    hi Ps ,
    Can you please do small sample ,
    that would help me in clear understanding
    thanks in advance
    ashok.c

Maybe you are looking for

  • Authorization issue "No authorization"

    Dears gurus, I created an analysis authorization using tx. RSECADMIN, this contains the IO 0COSTCENTER restricted with some value, and also contains the IO: 0TCAACTVT, 0TCAIPROV, 0TCAVALID. When I assigned it to a role using tx. PFCG. But when the qu

  • How to get the ep user information data in the web dynpro?

    Hi all   I want to create a web dynpro application on EP.I want to get the ep user information data in the web dynpro.How can I do?Thanks.

  • Sending the key with Socket

    Hello! I have made an application that encrypts a byte[], sends it to a server. And after that i am trying to decrypt it. But that gives me problem. The exception i get is: BadPaddingException: javax.crypto.BadPaddingException: Given final block not

  • Able to select resolution in Windows?

    Hello, I spent 2 days working through boot camp issues and finally got it installed.  The reason I wanted to install it is because I wanted to play some games that only come on PC - especially Star Citizen.  When I play the game, its PAINFULLY MISERA

  • Display/Edit Properties in a Table

    Hello everyone, i'm currently writing a javafx2 app for my bachelor thesis. in that app, i need a table like view to display the properties in. but, a normal TableView doesn't do what i want: a TableView expects a new object for each Row, and display