Includes work on one page, but not another.

Hello all.
I made a Spry naviation bar. It works on the orginal page, but when I put it on other pages, the menu bar is there, but the spry functionality is gone.
I've also had problems with my CSS stylesheet.  I tried putting it in my header include, but it doesn't work on all my pages, but it does work on some.  I've checked the links and they seem to be right as well
Any tips?
Gregg

As a guess, I would say that you are using doc relative paths inside your include files, and the parent page that does not work is in a different directory than those that do work. But like most questions here, without seeing your code we can only guess.

Similar Messages

  • Implicit read with assembly module instance working on one computer, but not another

    Hi,
    I'm trying to set up an on-site computer to run a VI which uses assembly instances for data communication, but for some reason I'm unable to establish a connection to the PLC.
    I'm running the example vi "CreateAssemblyInstance.vi" to try and get the communication set up before I start using my actual program.
    When I run this code on my development machine, I'm able to establish a connection to the PLC and read data. I then go into RSLogix 5000 and change the IP address to the on-site machine and try to run the test VI there, but I'm unable to make a connection. LabVIEW-side, the program thinks that it's established a connection and is reading/writing data, but PLC-side I'm getting a "Connection Failed" message in RSLogix.
    I find it weird that LabVIEW thinks the connection was established just fine, which the RSLogix says it can't connect to the VI.
    Just wondering if anyone else has had this happen. We aren't sure why the same VI runs on one machine but not another. We used RSLogix to change the IP address of the target machine, so we don't think that's the issue. And both computers are on the same network, so we don't think it's a firewall issue either.
    LabVIEW-side, things should be identical. I'm running the same example VI that came with the Ethernet/IP module. PLC-side, we're changing the target IP of the module within RSLogix 5000 (and we're sending the updated information to the PLC) to match the machine we're trying to make a connection with. Are we missing any steps? This is the first time we've tried using an assembly module, so we're having a hard time troubleshooting.
    Any ideas on why this is happening?

    I'm pretty sure we're using a generic ethernet module:
    I can communicate explicitly with the problem computer, it's able to use 'Tag Read' and 'Tag Write' to communicate with the PLC.
    We started having another problem just recently too. The Tag Read and Write commands are almost always timing out. I keep getting the error message -251723752:
    Detailed error info: Error -251723752 occurred at EthernetIP Tag Read REAL.vi;Details: The request response was not received in the requested timeout period    Possible reason(s):  Ethernet/IP Industrial Protocol: (Hex 0xF0FF0018) The request response was not received in the requested timeout period
    I can't figure out what's causing this all of a sudden, could these issues be related?

  • Home sharing works with one account but not another?

    My family has an apple tv, we've been having problems setting up the home sharing and tried everything. We eventually decided to try my brother's apple id instead of my mother's and it worked. So my question is; why does home sharing not work with one id but works with the other? any suggestions to get it to work with my mother's id?

    Try resetting the Apple TV. enter your mother's ID again. Then remove her ID on iTunes and re-add it. Then see if it works this time.

  • Downloading a file via a procedure works in one app but not another

    Obviously I've overlooked something. I have this procedure (following). It works in one application that has been running for a couple years. It is called from Column Link with this value #OWNER#.DOWNLOAD_ATTACHED_FILES?p_file=#DOWNLOAD_LINK#
    I'm now making a new application and want the same facility but this same procedure gives me a page not found error even though the error page URL looks like: .../apex/GMCTRL.DOWNLOAD_ATTACHED_FILES?p_file=42 which seems to me that it should work correctly. (the row with the value 42 does exist in the DB)
    Is there a setting/flag/thing that I have to set to make this work in my new application that I've overlooked? (both are APEX 3.1.1 and oracle 11g)
    create or replace PROCEDURE "DOWNLOAD_ATTACHED_FILES" (p_file in number) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(2000);
    Lob_loc BLOB;
    BEGIN
    SELECT MIME_TYPE, RPT_DOCUMENT_BLOB_IMG, RPT_DOCUMENT_FILE_NAME_TX, DBMS_LOB.GETLENGTH(RPT_DOCUMENT_BLOB_IMG)
    INTO v_mime, lob_loc,v_file_name,v_length
    FROM RPT_DOCUMENT_BLOB
    WHERE RPT_DOCUMENT_BLOB_ID = p_file;
    owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
    htp.p('Content-length: ' || v_length);
    htp.p('Content-Disposition: attachment; filename="'||substr(v_file_name,instr(v_file_name,'/')+1)|| '"');
    owa_util.http_header_close;
    wpg_docload.download_file( Lob_loc );
    end download_attached_files;

    Hello:
    Ensure that
    GMCTRL.DOWNLOAD_ATTACHED_FILES is executable by oracle account used by APEX to connect to the database (apex_public_user or anonymous)
    GMCTRL.DOWNLOAD_ATTACHED_FILES is included into 'WWV_FLOW_EPG_INCLUDE_MOD_LOCAL' as an authorized procedure. See Re: link can't find a stored procedure
    Varad

  • Safari works for one user but not another on same computer

    MacBook with multiple user accounts. Safari (and Firefox) work fine for one user but are unable to open web pages when the other user is logged in. The error in Safar is "Safari can't open the page "http://xxxxxxxxx/" because it could not connect to the server "/xxxxxxx/" . DNS is working for this user. I am able to ping any number of sites from Terminal. Network Preference pane is configured to not require any proxy. This is a case of it was working but now it's not.
    Can anybody help with this? I know I can fix this by simply creating another user and transfering the affected user's data to the new account but I would rather not. TIA

    HI Bob,
    You can test your settings by clicking the big "Test My DNS" button at <https://www.dns-oarc.net/oarc/services/dnsentropy>. If you see "Poor" on any of the tests, don't use that domain name server! Remove it from Apple Menu => System Preferences =>Network =>DNS Servers or similar location in your router if you've got a 'home network'. If all you have is "poor" DNS servers in your list, call your ISP and insist that they give you the address of a name server which is protected against the recently exposed DNS cache-poisoning threat.
    Also, open System Preferences/Network. Click the DNS tab. Add these numbers in the DNS Servers box.
    208.67.222.222
    208.67.220.220
    See if that helps.
    Carolyn

  • c:set works in one page and not another.. rediculous problem

    Hi all,
    im having one hell of a strange problem..
    i have this bit of code on one page..
    profile_body.jsp
    <jsp:useBean id="user" scope="request" beanName="com.insaini.publogs.business.UserBean" type="com.insaini.publogs.business.ProfileInterface" />
    <jsp:setProperty name="user" property="user" value="<%=request.getRemoteUser()%>" />
    <c:set value="${user.profile}" var="profile" />and i have this in my editProfile_body.jsp
    <jsp:useBean id="location" scope="request" beanName="com.insaini.publogs.business.LocationBean" type="com.insaini.publogs.struts.listeners.LocationListener" />
    <jsp:useBean id="org" scope="request" beanName="com.insaini.publogs.business.OrganizationBean" type="com.insaini.publogs.struts.listeners.OrganizationListener" />
    <jsp:useBean id="user" scope="request" beanName="com.insaini.publogs.business.UserBean" type="com.insaini.publogs.business.ProfileInterface" />
    <jsp:setProperty name="user" property="user" value="<%=request.getRemoteUser()%>" />
    <c:set value="${user.profile}" var="profile" />the profile_body.jsp loads fine.. but the editProfile_body.jsp does not load at all and its throwing this error..
    An error occurred at line: 17 in the jsp file: /jsp/includes/editProfile_body.jsp
    Generated servlet error:
    org.apache cannot be resolved or is not a field
    where line 17 points to
    <jsp:setProperty name="user" property="user" value="<%=request.getRemoteUser()%>" />
    this makes absolutely no sense since this exact same line works in the profile_body.jsp..
    any ideas?

    I think the problem is that you have an object in scope that has the name "org". Then, somewhere in the Java Code generated by the offending jsp:setProperty tag, there is a line that looks like:
    xxx = org.apache...
    What ends up happening is Java is looking in the object you have named org for a public (or otherwise visible) member named apache, and not finding it.
    This is a naming conflict, and gets resolved by renaming the <jsp:useBean id="org" object to something else (preferrably something other name org, com, net, or any other package name your system might have).

  • Identical actionscript works in one frame but not another...?

    Hi all,
    I'm working on this electronic sheep creator for my Masters
    degree (don't ask haha..) which is online at
    [url]www.aegreen.co.uk/creativetech/[/url] . The problem I'm having
    is that a piece of actionscript I'm using for saving the sheep as a
    jpg using BitmapData works in one frame with one movie clip but not
    in another frame..
    In frame 1 I create two movie clips - mc_modifysheep and
    mc_dna:
    [CODE]on(release) {
    _root.createEmptyMovieClip("mc_modifysheep", 1)
    mc_modifysheep._x = 150;
    mc_modifysheep._y = 70;
    mc_modifysheep.attachMovie("sheep_body", "body", 1, {_x:42,
    _y:65});
    mc_modifysheep.attachMovie("sheep_head", "head", 2, {_x:0,
    _y:0});
    mc_modifysheep.attachMovie("sheep_legs", "legs", 3, {_x:77,
    _y:215});
    _global.bodycolour = "default";
    _global.headcolour = "default";
    _global.legscolour = "default";
    _root.createEmptyMovieClip("mc_dna", 2)
    mc_dna._x = 0;
    mc_dna._y = 0;
    mc_dna.attachMovie("mc_DNA_empty", "DNA empty", 1, {_x:8,
    _y:360});
    mc_dna.attachMovie("mc_dna_default_default_top", "top", 2,
    {_x:45, _y:374});
    mc_dna.attachMovie("mc_dna_default_default_right", "right",
    3, {_x:65, _y:400});
    mc_dna.attachMovie("mc_dna_default_default_left", "left", 4,
    {_x:32, _y:401});
    gotoandstop(2);
    }[/CODE]
    the sheep in 'mc_modifysheep' and the dna in 'mc_dna' are
    built up over frames 2 and 3 and then in frame 4 the user decides
    whether the sheep is given freedom or captivity. If freedom is
    chosen then the user is prompted to name their sheep and the movie
    clip mc_modifysheep is saved as a jpg on the server using
    BitmapData and PHP. If captivity is chosen then the user is
    prompted to name the dna and the movie clip mc_dna is meant to be
    saved as a jpg on the server but only a white blank jpg is
    produced, not what is contained in mc_dna.. I've tried all sorts
    but I can't figure out why it's doing this..
    Here's the code I'm using, that works, to save the
    mc_modifysheep:
    [CODE]import flash.display.BitmapData;
    btn_freedom.onPress = function() {
    freedom();
    function freedom() {
    snap_sheep = new BitmapData(305, 290);
    snap_sheep.draw(mc_modifysheep);
    var pixels:Array = new Array();
    var w:Number = snap_sheep.width;
    var h:Number = snap_sheep.height;
    var a:Number = 0;
    var sn:String = txt_Freedom.text;
    high = 99999;
    low = 00000;
    ran =
    Math.floor(Math.random()*(Number(high)+1-Number(low)))+Number(low);
    var rn:Number = ran
    var filename:String = dn+sn;
    for (var a = 0; a <= w; a++) {
    for (var b = 0; b <= h; b++) {
    var tmp = snap_sheep.getPixel(a, b).toString(16);
    pixels.push(tmp);
    var freedomoutput:LoadVars = new LoadVars();
    freedomoutput.img = pixels.toString();
    freedomoutput.height = h;
    freedomoutput.width = w;
    freedomoutput.filename_sheep = filename;
    freedomoutput.send("save_sheep.php", "_self", "POST");
    stop();[/CODE]
    and here's the near identical code apart from different
    variable/movieclip names I'm using to try and save (but failing)
    mc_dna:
    [CODE]import flash.display.BitmapData;
    btn_capt.onPress = function() {
    capt();
    function capt() {
    snap_dna = new BitmapData(305, 290);
    snap_dna.draw(mc_dna);
    var pixels:Array = new Array();
    var w:Number = snap_dna.width;
    var h:Number = snap_dna.height;
    var a:Number = 0;
    var dn:String = txt_Capt.text;
    high = 99999;
    low = 00000;
    ran =
    Math.floor(Math.random()*(Number(high)+1-Number(low)))+Number(low);
    var rn:Number = ran
    var filename:String = dn+rn;
    for (var a = 0; a <= w; a++) {
    for (var b = 0; b <= h; b++) {
    var tmp = snap_dna.getPixel(a, b).toString(16);
    pixels.push(tmp);
    var captoutput:LoadVars = new LoadVars();
    captoutput.img = pixels.toString();
    captoutput.height = h;
    captoutput.width = w;
    captoutput.filename_dna = filename;
    captoutput.send("save_dna.php", "_self", "POST");
    stop();[/CODE]
    I know it's a problem with the flash and not the PHP as I've
    tested for that, definately in the flash. I just don't understand
    how the same code can capture mc_modifysheep, but not mc_dna.
    argh!!!
    If you need to take a look at the FLA file it's up at
    [url]www.aegreen.co.uk/creativetech/dohumansdream.fla[/url]
    Thanks everyone!!

    If you dont find anything specific, a lot of the problems i
    encounter like this are because one little thing is spelled wrong.
    like it doesnt match whats in your php file, ect. my suggestion,
    though a long one, if you know its supposed to work, and theres no
    syntax error, re type it, not copy and paste, and just be careful.
    keep tripple checking. you might not even find what was spelled
    wrong, but it might fix the situation,

  • WDTHEMEROOT works in one client but not another

    I'm looking at using the WDTHEMEROOT application parameter to set a theme. I've set it to 'sap-chrome' in our development client and that works fine when I test the application. When I log into another client on the same system, however, the WDTHEMEROOT  parameter has no effect. I'm guessing there is a setting in the first client but not in the second but I don't know what that might be. Any ideas ?
    thanks,
    Malcolm.

    Well,
    I guess my excitement was shortlived. I changed the theme and did whatever the note suggested. It worked!
    But then I changed it back to 'sap_chrome' and did all that the note suggested - it did not work. I am now stuck with the new incomplete theme and am  not able to change it back to what it was earlier.
    Any Help?
    Thanks,
    Sanjiv

  • Apps work in one location but not another

    Some apps (iheartradio and tvguide) work fine from my home wifi, but not in another wifi area (at work, which has better wifi).  Other apps such as pandora work fine at both locations.  What is the difference and how can I get all apps to work everywhere?

    It's entirely possible that your employer has blocked certain ports on the corporate firewall, which will prevent some apps from working.

  • Flash not working for one user, but not another on this CPU

    Hi,
    For user A on my computer most video will play in Safari, Firefox, and Chrome. But video at nfl.com will not play. The ads will play but not the actual feature.
    I just found out that the videos on nfl.com will work for user B. I have rerun the Adobe Flash 10.1 installer in user A's account several times with no luck.
    Are there permissions or libraries I should trash to try to restore this capability?
    thanks,
    Steve

    HI,
    For user A on my computer
    Try uninstalling the current copy of Flash, reinstall new, then repair permissions.
    Uninstall Flash
    Install the most recent version of Flash here.
    Now repair permissions.
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    You may also need to delete the Flash cache. Instructions here.
    http://discussions.apple.com/thread.jspa?messageID=11672709&#11672709
    If that doesn't help, install the v10.6.4 Combo Update It's ok to do this even though you are already running v10.6.4.
    Carolyn

  • Script works for one frame but not another

    I set up 2 keyframes, each one loads a different text file
    into a dynamic text box. The text box for the first keyframe is
    named "session" and the text box for the second keyframe is named
    "oneptq". The text file for the first text box is named Titles.txt
    and the text file for the second keyframe is 100Q.txt. The code I'm
    using is identical (except for the respective names of the text
    boxes and text files) but for some reason the text will load in the
    first text box but not the second.
    Here's my AS for the first keyframe:
    lvLoader = new LoadVars();
    lvLoader.onLoad = function(success)
    if(success)
    session.text = lvLoader.textbody;
    lvLoader.load("Titles.txt");
    And my AS for the second keyframe:
    lvLoader = new LoadVars();
    lvLoader.onLoad = function(success)
    if(success)
    oneptq.text = lvLoader.textbody;
    lvLoader.load("100Q.txt");
    I can't figure this thing out. Please help. Thanks.

    Have you double checked that it's a DYNAMIC text box? Maybe
    it was accidentally swapped by to static at some point...

  • Form validation working on one page, but not the other....

    Hope someone can help with this.
    I have a page below with a load of contact forms which all work fine :
    http://www.goodsafariguide.com/judges/judges.php
    I've trued to recreate (admittedly mostly by saving as....) the same functionality here :
    http://www.goodsafariguide.com/awardssite/judges/
    They do work when fulled in correctly, but there's a glitch with the validation.
    Basically when you fill in a form incorrectly, the page reloads, with the form's accordion closed. When you open it up, its showing the ugly looking error at the top of the form.
    Any ideas what's causing it to act like this, as opposed to the way it works in the first link?
    Thanks.

    Iain71 wrote:
    I've trued to recreate (admittedly mostly by saving as....) the same functionality here :
    http://www.goodsafariguide.com/awardssite/judges/
    They do work when fulled in correctly, but there's a glitch with the validation.
    When looking at the source code I note that - unlike the first page - this one doesn´t contain any references to the ADDT form validation libraries ("../includes/tng/scripts/FormValidation.js" and "../includes/tng/scripts/FormValidation.js.php"), meaning that the validation can´t work.
    Cheers,
    Günter

  • Synaptics touchpad on 4540s works for one person but not another

    The Synaptics touchpad on my ProBook 4540s (Win 7) works normally when I use it but when my wife tries to use it, the touchpad is unresponsive after a very slight initial cursor movement.  (Anticipating replies - Yes,  she casts a shadow, pictures of her come out normally, and she has a visible reflection in a mirror.)     The touchpad sensitivity setting is maxed on light touch and cursor speed is maxed.  
    She has relatively small hands, and long nails, but she had no difficulty using the touchpad on our old HP dv9910us and has no problem with an iPad touchscreen.  This week she tried the touchpad on a Sony VAIO that was so worn most of the original surface coating is gone, and had no problem moving the cursor on that machine either.   She even tried the awkward solution of using her knuckle instead of her fingertip on the HP in case her nails were getting in the way, but that didn't work either.  
    Not having used a 4540s before, and not having access to another one to compare, I have no way to tell whether this is a bad individual touchpad unit or a design issue.   If a design issue, what's the workaround?     For instance, is there a skin I can put on the touchpad to increase its conductivity?

    A friend of mine bought a ProBook 4540s yesterday. At Microcenter we noticed that the touch pad often would stop working for her, and sometimes for me, but it usually worked for me. She bought the laptop, and we she got it home we noticed the same problem. I played with the touchpad a little and noticed this pad has a very narrow window of operation. With the 14.1" HP's like the nc6220 or nc6400, you can use one finger, two fingers, even three fingers, and the mouse responds nicely. However if too much surface area is in contact with the touchpad of the 4540s it doesn't work. Too much surface area is the pad of your finger. Because my friend has long nails, she was laying her finger pretty flat on the touch pad, and it wouldn't work. When I used the pad like this it wouldn't work for me either. Because I have short finger nails I have always used the lower end of my tip. This works pretty well with the 4540s. Pressure seems to have little affect. It is a matter of surface area, and the acceptable area has a small range!

  • Video works with one friend but not another?? please HELP!

    my ichat video isn't connecting with my friend christina. we've taken turns calling each other and my computer keeps saying "no data has been received in 10 seconds" i can hear the ringing and then when we go to connect thats when the message comes up and cancels the call. at the same exact time my other friend sam was online so to test out my video chat i called her. & it worked. christina also connected with sam separately & that worked. then we tried a conference where all 3 of us could chat, and sam started it and invited both of us. it worked and we could all talk & see each other. however for some reason i can't connect to just christina. what's going on?

    Hi,
    Welcome to the    Discussions
    iChat can have several messages on a failed chat.
    The "No Data for 10 Secs" one only appears on chats that connect (even if you don't see the Video)
    Basically it point to an issues between iChat at the Internet.
    The same Result can be achieved by pulling the Ethernet cable out or turning the Airport card off or powering down the modem or router.
    So we have to look at what can produce a similar break in the Internet connection without the drastic steps above.
    Some modem and router have "protection" features that will do this.
    Denial of Service (DoS) tries to make sure any data that come to your Computer does so at a rate it can handle.
    It was originally designed to protect Web Servers from "attacks" where too many requests coming to frequently used to bring servers and their Internet connections to halt.
    So Dos is threshold based,. It will cut any port that it thinks there is an "Attack" on.
    Video chats can send lots of data.
    These thresholds that are preset in the device tend to be set at Web page streaming speeds (allowing for multiple requests on popular servers) - but also at older Internet Speeds.
    Modern Speeds and things like iChat Streaming two way Video can mean that certain Buddies can send you data faster than the threshold is set for particularly with iChat 5.
    Stateful Packet Inspection (SPI) works differently but can only process a certain amount of data and will cut the port that is causing it to be overloaded making it Threshold based as well.
    There is no way to change the thresholds involved so the best course of action is to Disable the feature.
    So the Speed Sam has to send you Video may be lower than that of Christine and not bump into the threshold.
    If Sam is the Host then it the Speed of that Internet Connection that governs how fast Data is sent to you.
    One solution is to cap iChat in iChat > Preferences > Audio/Video Menu to 500kbps on the all Buddies involved.
    If this solve the issue between you and Christine then you can move on to your Modem or router.
    8:16 PM Sunday; June 6, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
    Message was edited by: Ralph Johns (UK)

  • Why does iPhoto 8.1.2 work on one iMac but not another when both are the same spec both running Mavericks 10.9.1?

    I have a studio of 7 iMacs all running Mavericks 10.9.1, six of the machines are able to open iPhoto 8.2.1 but for some reason after updating the seventh, iPhoto vanished completely from that machine. I reinstalled it from a copy I had saved on a HDD but it now says it's unsupported with this version of OSX. I don't want to pay the £10 + for a piece of software that is only being used to import photos from the occasional iPhone so wont be installing the new version, especially as I know 8.2.1 does work on Mavericks.
    Any suggestions?
    Many thanks

    Reinstall v8 from the install disk as, at a guess, the version of the HDD is missing components.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List* there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    *Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

Maybe you are looking for

  • Downpayment Request Validations

    Hi,   Iam working on adding more validations to Downpayment request (f-47) using the function exit EXIT_SAPLFMR4_002. One of the validation says "WBS value on request matches PO value". Once we choose the PO value, the WBS value is automatically popu

  • Searching backwards in calendar

    It really amazes me that no one in the Apple iPAD/iPhone world seems to find wanting to search "backwards" in their calendar unimportant. Not many people seem to know that you cannot search for anything in the Calendar a year prior to the current dat

  • Starting opmn - RCV: Permission denied

    Hallo, today I got following problem. After installing the oracle http server the opmn runs. Then i installed apex and edited the dads.conf. When i now try to start the http server following message appears: RCV: Permission denied Communication error

  • Problems installing latest version Adobe Reader

    Trying to install latest version of Adobe Reader...download stops.."An error has occurred in the script on this page... Line:     1 Char:     13128 Error:     'ActionGtbCheck' is undefined Code:     0 URL:     http://127.0.0.1:1125/app/_js/adobe.js j

  • Freeze 1st two columns in OAF Page

    Hi, I have one requirement on OAF page customization. I have 10 columns displaying on OA Page. Since having 10 columns on page, I have to scroll down right to see last column and vice versa. the requirement is to Freeze 1st two columns, even if we sc