Disabled HTML Fields and Coloring them

Hi,
There are about 100+ JSPs/HTML pages in my application. Some of them have readonly/disabled fields. I have to color such fields using a color of client choice. So I have written the following in CSS with out adding any class attributes for HTML fields.
input[disabled]{..........;}The solution is working for Opera, Safari and Firefox but not for IE.
Is there any solution where I can use just CSS without any class attribute for HTML controls.
-J

IE6 or older indeed doesn't support [CSS selectors|http://www.quirksmode.org/css/contents.html] yet. Use a onload Javascript function.
But IE7 should support it in [standards mode|http://hsivonen.iki.fi/doctype/].

Similar Messages

  • Is it possible to import html files and export them as scorm?

    Hi,
    is it possible to import html files (like a website) and export them as a SCORM compatible ZIP file?
    Thanks!

    You can embed html pages in a Captivate slide and they are included in the SCORM zip file when you publish, is this what you mean?

  • Disable window resizing and lock them?

    Is it possible through a prefernce or maybe an application to disable window resizing and lock their positions. I let my friends and family use my computer and they always move stuff around and resize everything. It really annoys me and I hate having to adjust everything to the way I like which I have spent hours setting up so they can just destory in a matter of seconds. I know I can setup a guest account but I don't have the memory or processing power for it since I usually have about 3-5 applications always open. I would also I like to steer clear from that route if possible. Thanks for any help on my issue! I did try searching to no avail however if this is already been discussed I appologize and a link to the discussion would be appreicated.
    1.42Ghz G4 Mac Mini   Mac OS X (10.4.8)   ATI Raedon 9200, 256MB ram, Model number: A1103

    The setting up and use of a guest account will not affect the memory or processing power but will use some of the hard disk space depending on how much stuff you allow your guest user(s) to save.
    You can easily set your favourite apps to load when you login again by clicking and holding on the app icon in the your Dock before you setup the new account - a pop menu appears. The advantage of having a separate account is that if you set it up as a non-administrator account the guests would not be able to screw up things too much, where as at present they could cause havoc.
    chris

  • HTMLD_ITEM.DATE_POPUP  - Disabling text field AND Datepicker.

    Hi all,
    Need help with the following.
    I am using APEX 3.2.100.12 (this is in production and won't be upgraded soon).
    I have a report, that creates dynamically date_popups.
    My query goes like this:
    select
    case
    when trunc(ddc_delivery_date) <= trunc(sysdate) then HTMLDB_ITEM.HIDDEN(3,PTD_PA_MONTH_ID) || HTMLDB_ITEM.HIDDEN(4, to_char(SYSDATE, 'DD-MON-RRRR')) || HTMLDB_ITEM.DATE_POPUP(2,ptd_pa_month_id,'','dd-MON-yyyy', 10, 11, 'DISABLED')
    else HTMLDB_ITEM.HIDDEN(3,PTD_PA_MONTH_ID) || HTMLDB_ITEM.HIDDEN(4, to_char(SYSDATE, 'DD-MON-RRRR')) || HTMLDB_ITEM.DATE_POPUP(2,ptd_pa_month_id,'','dd-MON-yyyy', 10, 11, 'onBlur="valiDate(' || rownum || ');"onChange="setFocusItself(' || rownum ||');"')
    end as "Example"
    from Table;
    Let's assume all those names there work as it is.
    The first "when trunc... " should show the date_popup item, but should be shown disabled; which totally happens, but only on the text field; I also need the datepicker to be void or something, and no popup be allowed to show up, something like: "('IP_CLOSED_DATE').parentNode.nextSibling.firstChild.href="javascript:void(0)", which can be used to not allow a popup be displayed.
    The thing is, I've tried to add another parameter (as I've seen it is possible), including words like disabled, void, 0, etc... and none of them work. So I would like to know if anyone has encountered the same issue and has been able to solve it.
    What I need, is not only the text to be disabled but also the popup.
    Thanks a lot!!
    Jorgelina

    Just noticed that you are on apex 3.2 and that JS code relies on JQuery(builtin to Apex 4.0)
    So we ll try another approach and this does not use any JS
    From your report query, I can see that you column has to be read only when <u>trunc(ddc_delivery_date) &lt;= trunc(sysdate)</u>. In this case you want those row's column to be a readonly text-field. So <b>we use a different API in those cases, i.e APEX_ITEM.TEXT instead of APEX_ITEM.DATE_POPUP</b>
    select
        case
        when trunc(ddc_delivery_date) <= trunc(sysdate) then
            HTMLDB_ITEM.HIDDEN(3,PTD_PA_MONTH_ID) || HTMLDB_ITEM.HIDDEN(4, to_char(SYSDATE, 'DD-MON-RRRR')) || HTMLDB_ITEM.TEXT(2, TO_CHAR(<date column>,'dd-MON-yyyy', 10, 11 ,'read_only="read_only"')
        else
           HTMLDB_ITEM.HIDDEN(3,PTD_PA_MONTH_ID) || HTMLDB_ITEM.HIDDEN(4, to_char(SYSDATE, 'DD-MON-RRRR')) || HTMLDB_ITEM.DATE_POPUP(2,ptd_pa_month_id,'','dd-MON-yyyy', 10, 11, 'onBlur="valiDate(' || rownum || ');"onChange="setFocusItself(' || rownum ||');"')
        end as "Example"
    from <table>;
    Note: Change <date column> to the name of the date column whose value has to be shown
    For readonly date row columns, you would see a text field alone, without a date picker

  • How do I add web app tags to web app fields and have them render correctly?

    - I have a webapp field entitled "Status".
    - I have a webapp fields entitles "Status-Listed".
    - I want to have a tag in the description field that is {tag_Status-{tag_Status}} to where if the Status field is set to Listed the result will be {tag_Status-Listed} and will return the value in the Status-Listed field.
    - It works, and returns the value:
    <h2>Listed</h2>{tag_county} County<br />{tag_firstname} {tag_lastname} | {tag_address1}, {tag_address2} {tag_city}, {tag_state} | {tag_zipcode} | {tag_phone}<br />{tag_status} | <em>
    - However, this will display as the text entered when the tag is rendered from Design view. If I place the code in the HTML view it will render each tag correctly. What I am seeking to do is apply four different types of stylings to the listing, as in Listed, Not Listed, Rejected, No Answer, etc. That way in my directory I can have the status determine the type of look each listing has based upon the Status field.
    Any thoughts from the community?

    I am not sure I follow what you are explaining, but, I will try to give you an idea. Wrap all of your HTML in a div with a class of {tag_Status-{tag_Status}}. you can then style as necessary. However, if this involves hiding certain elements, then I would suggest using a custom template for each type of listing.

  • Select two diff fields and storing them in two variable in a same query ?

    Hello,
    i have a join query and i am selecting fields from different table(one field is the material number and second is bsad-wrbtr, on which i am doing the SUM). Now i cant store material number in a variable, cause i will be getting many material numbers(against 'vbeln') and sum( bsad-wrbtr ) will be stored collectively in a variable.
    Shud i be using an internal table to store both of them ? , cause i have to display all the material numbers retrieved . If yes, the how ? what will be the query like ?
    My current select/join query is,
      select  sum( bd~wrbtr ) into l_cramt
        from ( ( bsis as bs
                  inner join bsad as bd on bs~bukrs = bd~bukrs and
                                           bs~belnr = bd~augbl and
                                           bs~bldat = bd~augdt )
                  inner join vbrp as vb on vb~vbeln = bd~belnr )
        where bs~blart = 'DZ' and bs~hkont = p_hkont.
    Waiting for your replies, thank..
    Shehryar Dahar

    Hi,
    If you want to have a list of materials and sum for each of them try this:
    types: begin of t_list,
                matnr like vbrp-matnr,
                wrbtr like bsad-wrbtr,
             end of t_list.
    data: i_list type table of t_list.
      select  vbmatnr sum( bdwrbtr ) into table i_list
        from ( ( bsis as bs
                  inner join bsad as bd on bsbukrs = bdbukrs and
                                           bsbelnr = bdaugbl and
                                           bsbldat = bdaugdt )
                  inner join vbrp as vb on vbvbeln = bdbelnr )
        where bsblart = 'DZ' and bshkont = p_hkont
        group by vb~matnr.
    If you want to have a sum for a given material try this:
      select  vbmatnr sum( bdwrbtr ) into (v_matnr, v_wrbtr )
        from ( ( bsis as bs
                  inner join bsad as bd on bsbukrs = bdbukrs and
                                           bsbelnr = bdaugbl and
                                           bsbldat = bdaugdt )
                  inner join vbrp as vb on vbvbeln = bdbelnr )
        where bsblart = 'DZ' and bshkont = p_hkont
        and vb~matnr = p_matnr.

  • I want count "space" token in my table field and separate them

    I want count "space" token in my table one field column and separate the word between them.
    word are store in another table.
    possibly give solution in[b] Postgres DB and Oracle DB
    for example
    table name search
    column name is keyword
    keyword
    " chinese colaba" --> spaces are 2
    " chinese borivali (W)" --> spaces are 3
    " deal shoes bandra (E)" --> spaces are 4
    and separate word in new table
    field
    chinese
    colaba
    chinese
    borivali
    (W)
    deal
    shoes
    bandra
    E)
    Message was edited by:
    Rajiv_Birari

    Hi,
    Can you rephrase you Question..!!
    My understanding with your quesiton might be thinking about Partitions or Moving the data to Different tablespace.
    Thanks & Regards,
    Pavan Kumar N

  • Why does a new firefox version disable common features and hide them completely from use

    When a new version of Firefox comes out of late, all to often when it has new features or a programmer has a different idea of what they like compared to the previous release, the features are enabled by default and things are rearranged without user choice. A case in point is that when I installed Firefox 24 on my wife's computer it disabled the menu bar and put the tabs on top. To add insult to injury there was no settings option to put the tabs back underneath!!! I don't care how much someone likes tabs on top, the proper way to handle these sorts of feature upgrades is to leave everything as it was in terms of settings and display a web page that has a button that says what each change is with a yes and no button so the user can try if they WANT or not, not just say (effectively) "we are the overlords and want you to use this and we know better". If this method is too difficult then just DON'T change the settings and leave it up to a "what's new" page. I know this is free SW and a lot of dedicated people contribute, but to do your darnedest to confuse or annoy your users is not the way to do it. Imagine if you took your car into have a new radio fitted and when you got it back the brake pedal was in the backseat and the guy said "we like it better that way"
    BTW, to have the tabs immediately above the web pages you are viewing makes way more sense than having them 3 lines away.

    Hi,
    I certainly agree that there were considerable changes made in Firefox v4 when it was released in March 2011. I was not a volunteer on this forum back then but looking back through the history there were quite a few support requests asking about how to make Firefox look like it used to. It was a big change to the UI.
    From the support volunteers' perspective all we can do is to try to provide clear, and easy to follow, answers when users ask about changes made in new versions.
    From Mozilla's perspective I believe one of the motivations behind introducing the [https://blog.mozilla.org/channels/2011/07/18/every-six-weeks/ rapid release calendar] was to ensure that updates were more incremental and less intrusive to users (i.e. only a few changes made with each release).
    The Firefox UI continues to evolve (for example a new logo was recently adopted) but since the update to v4 updates have been more continuous and each release has been more minor.
    My experience as a support volunteer is that this is an improvement for the users. The changes are made gradually and people have time to adapt.
    Having said that the next release of Firefox (v25) will introduce the first major redesign since v4 ([http://techcrunch.com/2013/06/01/mozilla-readies-major-firefox-redesign-as-it-ponders-what-the-browser-of-the-future-should-look-like/ Australis]).
    Those that prefer not to install feature updates and instead to just get security updates tend to use Firefox's Extended Support Release (ESR) versions. See here for more information:
    http://www.mozilla.org/en-US/firefox/organizations/
    I hope this helps.

  • Have a form trying to edit.  Has a bunch of check boxes but also text fields.  I can move the fields and make them larger but I can't edit or move the text above the fields.  Like it says "Enter comments Below" and then there is a text field for them to e

    It looks like this:
    A. What can be done to improve performance?
    B.  What can be done by assessor to help performance?
    C. Comments?
    Issue is the text field below these items is not big enough.  When I make it bigger, like in "A" it gets bigger but then overlaps the text in "B" and I can't move the text.  Someone else created this form and I have no idea what A, B and C are but they are not Text Fields.  They are just static text of some sort and I can't do anything with it.

    Hi,
    Try making the subform that contains your fields flowed, this will allow them to not overlap, but you will probably have to add some margins (or some 'spacer' subforms) to get the appearance you had.
    Regards
    Bruce

  • Disable OIM users AND ENABLE THEM MANUALLY IN OID.......

    Hi,
    I've OIM connected to OID.
    When i disable a user in OIM, the orclisenabled attribute for that user is set to DISABLED
    Now when i manually change DISABLED to ENABLED in OID, and run the target recon task, the user in OIM remains disabled and when i check resource profile, the OID user resource is ENABLED.
    This should not happen. I want the case, when I manually ENABLE the disabled user in OID,and run recon task, the user should again get disabled in OID
    Is it possible to realise this condition?

    i have pasted the code above in notepad and saved it with extnsion .jar and copied it to the location oim/xellerate/javatasks/
    when i add task to the adapter and select the jar file it as API source, it gives and error:
    09:26:18,244 ERROR [ADAPTERS] Class/Method: tcRemoteFileDiscovery/getClasses enc
    ounter some problems: error in opening zip file
    java.util.zip.ZipException: error in opening zip file
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:114)
    at java.util.jar.JarFile.<init>(JarFile.java:133)
    at java.util.jar.JarFile.<init>(JarFile.java:70)
    at com.thortech.xl.dataobj.util.tcRemoteFileDiscovery.getClasses(Unknown
    Source)
    at com.thortech.xl.dataobj.tcADP.getClasses(Unknown Source)
    at com.thortech.xl.ejb.databeansimpl.tcADPBean.getClasses(Unknown Source
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    at org.jboss.ejb.StatefulSessionContainer$ContainerInterceptor.invoke(St
    atefulSessionContainer.java:598)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.
    java:168)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invo
    ke(CachedConnectionInterceptor.java:158)
    at org.jboss.ejb.plugins.StatefulSessionInstanceInterceptor.invoke(State
    fulSessionInstanceInterceptor.java:333)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidation
    Interceptor.java:63)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInte
    rceptor.java:121)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxIntercep
    torCMT.java:350)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:1
    81)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFacto
    ryFinderInterceptor.java:138)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:6
    48)
    at org.jboss.ejb.Container.invoke(Container.java:960)
    at sun.reflect.GeneratedMethodAccessor128.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
    er.java:155)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
    java:264)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    at org.jboss.invocation.unified.server.UnifiedInvoker.invoke(UnifiedInvo
    ker.java:231)
    at sun.reflect.GeneratedMethodAccessor137.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
    er.java:155)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
    java:264)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    at javax.management.MBeanServerInvocationHandler.invoke(MBeanServerInvoc
    ationHandler.java:288)
    at $Proxy14.invoke(Unknown Source)
    at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:809)
    at org.jboss.remoting.transport.socket.ServerThread.processInvocation(Se
    rverThread.java:608)
    at org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.j
    ava:420)
    at org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.jav
    a:173)
    09:26:18,260 ERROR [ADAPTERS] Class/Method: tcADP/getClasses encounter some prob
    lems: {1}
    java.lang.NullPointerException
    at com.thortech.xl.dataobj.util.tcSortUtil.sortAscending(Unknown Source)
    at com.thortech.xl.dataobj.util.tcRemoteFileDiscovery.getClasses(Unknown
    Source)
    at com.thortech.xl.dataobj.tcADP.getClasses(Unknown Source)
    at com.thortech.xl.ejb.databeansimpl.tcADPBean.getClasses(Unknown Source
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    at org.jboss.ejb.StatefulSessionContainer$ContainerInterceptor.invoke(St
    atefulSessionContainer.java:598)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.
    java:168)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invo
    ke(CachedConnectionInterceptor.java:158)
    at org.jboss.ejb.plugins.StatefulSessionInstanceInterceptor.invoke(State
    fulSessionInstanceInterceptor.java:333)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidation
    Interceptor.java:63)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInte
    rceptor.java:121)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxIntercep
    torCMT.java:350)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:1
    81)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFacto
    ryFinderInterceptor.java:138)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:6
    48)
    at org.jboss.ejb.Container.invoke(Container.java:960)
    at sun.reflect.GeneratedMethodAccessor128.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
    er.java:155)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
    java:264)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    at org.jboss.invocation.unified.server.UnifiedInvoker.invoke(UnifiedInvo
    ker.java:231)
    at sun.reflect.GeneratedMethodAccessor137.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
    er.java:155)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
    java:264)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    at javax.management.MBeanServerInvocationHandler.invoke(MBeanServerInvoc
    ationHandler.java:288)
    at $Proxy14.invoke(Unknown Source)
    at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:809)
    at org.jboss.remoting.transport.socket.ServerThread.processInvocation(Se
    rverThread.java:608)
    at org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.j
    ava:420)
    at org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.jav
    a:173)
    what could be the reason. do i need to make some adjustments in package or class name or it could be anything. i did as exactly above.

  • Creating linked email addresses - and coloring them

    I produce a yearly roster book for my client, a large golf club, listing all members' information, more than 600 of them each listing comntains usually 2 addresses. The book is printed, but also supplied to members as a PDF file.
    Currently (and surprisingly) all the email addresses are already "hot" so one can send an email to a member simply by clicking on his address in the listing.
    But my client is asking if I can make all those email addresses appear in blue (and underlined), so members know those email addressees are linked... I guess I could do it one address at a time, but I'm looking for making a GLOBAL change... I checked it at the Adobe Acrobat forum, and was told that I should try doing it while still in the original page-layout program.
    ...Also, will this "do the trick" when opening the PDF file on one's iPad or any tablet, or a smartphone?....
    Thanks!

    Are the links really there, or just being interpreted by Acrobat and reader as links becasue they look like URLs? To be real, and relaible in other applictions, thyey would all need to appear inthe Hyperlinks panel I think.
    That, of course, doesn't prevent you from aking them blue and underlined in ID. To decide the best method of achieving that we need more information, though. Are these independent paragraphs, or text on a line with other text? If with other text, is it always the same, or does it vary? Waht version of ID do you have?
    A screen shot of a listing would probalby be helpful, but you should probably use some dummy text to simulate it rather than disclose anyone's private information here. You can embed an image in your posts by using the camera icon on the tweb page like this:

  • Lead Page Layout General Question - User Interface - Fields and Color

    General question if possible to do this or not, can we make a field be in color similar to the red required fields?

    Changing field or text colours is not support by OnDemand at this time

  • How to add dynamic name value pair to html link and retrieve them?

    *topic
    Someone, please help me with a code example. A simple example will do.

    And the setClientAttributes() takes Set object, so i added ClientAttributeTag and then set it in HashSet. Is this the way to do it ??
    and how can i set string value in ClientAttributeTag.setValue() ??
    Please help.
    Sudeep

  • Is it possible to link out to external URLs from within an HTML widget, and have them open in Safari?

    I can add links within the iBook content, but if they're added inside an HTML widget, the new page loads *inside* the widget itself, with no ability to navigate back etc.
    Is there any way to have external links inside an HTML widget open in Safari?
    Thanks,
    Mike

    Those links need to be local the the book, sorry.
    As always, feel free to use the 'Provide iBooks Author Feedback' menu item for features you'd like added in the future, etc.
    http://www.apple.com/feedback/ibooks-author.html

  • How to ennable/disable a field or check the status of a field

    I'd like to ennable/ disable a field, and check if a field is ennabled or disabled. Does anyone know the methods for this?

    I had a problem where dropdowns that were populated from the Standards Table wouldn't allow me to set them as Read-Only.  Doing this allowed me to automate some other dropdowns and reuse the form over several services, so there was actually a reason for this.
    Anyway, I used this to force the dropdown to Read-Only after it was populated, since Javascript runs after the Conditional Rules.
    JS_Z_SetReadOnly (theobject){
     var myselect=document.getElementById(theobject);
     myselect.disabled = 1;
    What I passed to it was the FormName.DictionaryFieldName in single quotes - 'CMN_Chargeback.OfficeNumber'.

Maybe you are looking for

  • Lost edits in Bridge CS4

    I've been editing within Bridge and have my prefs set to "save to sidecar .xmp file. When I go back to the folder all the editing is gone, including edited orientations (ie horizontal to verticle) Eeek! What am I missing here? Do I have to change to

  • There has to be some way to do this...

    I have a series of tests that are flash movies running in a browser. We cannot allow the testee to refresh the browser by hitting the f5 button. Is there any way to capture this key and prevent it from being passed to the browser window?

  • ME5J - PRs by WBS Element

    Hi,   I am trying to run ME5J by entering in the Search Criteria WBS element which encompass the entire range yet no PRs get displayed. This is the first time I am using ME5J or got to know of WBS element.   I am wondering if the PRs are in some way

  • Export failed in Folio Producer

    I'm having repeated export failure in Folio PRoducer on a folio that I've already exported 4 times with no problems. I can't figure out what is different since there was a minor fix, then I updated, and now it won't export. the message is just "An er

  • DW 8 locks up and crashes when I try to do anything

    DW 8 locks up and crashes when I try to do anything to a file. This started 2 days ago. When I open a file, and I try to merge table rows, or change the CSS of some text, or anything, DW 8 locks up and is "not responding". How do I fix this?