RichText within CompositeField

The custom widget I created is based on the CompositeField widget and contains RichText widgets.
For testing purposes, I am simplifying this to a single RTE within each CompositeField instance.
When the dialog "OK" button is pressed, I am expecting the contents of each RTE to be stored as a
json stringified object in a multivalue String[] like this:
items  String[]
{"question":"<p>What is the question?</p>"}
{"question":"<p>What time is it?</p>"}
This works fine when using Text or TextArea, but, with the RTE, a javascript error is thrown.
Can anyone clue me in on what is wrong?
Thanks,
Rob
The specific javascript error is:
Uncaught TypeError: Cannot set property 'value' of undefined
CQ.form.RichText.CQ.Ext.extend.syncValuewidgets.js:127745
(anonymous function)widgets.js:127373
EXTUTIL.Event.firewidgets.js:4760
EXTUTIL.Observable.fireEventwidgets.js:4401
CQ.Dialog.CQ.Ext.extend.okwidgets.js:103049
handlerwidgets.js:102981
CQ.Ext.Button.CQ.Ext.extend.onClickwidgets.js:54680
hwidgets.js:11643
The specific javascript error is:
Here is my widget code:
CQ.ATestWidget = CQ.Ext.extend(CQ.form.CompositeField, {
    hiddenField: null,
    itemQuestion: null,
    formPanel: null,
    constructor: function (config) {
        config = config || {};
        var defaults = {
            "border": true,
            "autoWidth" :true,
            "layout": "form",
            "padding": 10,
            "collapsible": "true"
        config = CQ.Util.applyDefaults(config, defaults);
        CQ.ATestWidget.superclass.constructor.call(this, config);
    //overriding CQ.Ext.Component#initComponent
    initComponent: function () {
        CQ.ATestWidget.superclass.initComponent.call(this);
        // Hidden field
        this.hiddenField = new CQ.Ext.form.Hidden({
            name: this.name
        this.add(this.hiddenField);
        // Item question
        this.itemQuestion = new CQ.form.RichText({
            fieldLabel: "Question: ",
            allowBlank: false,
            ignoreData: true,
            submitValue: false,
            anchor: '100%',
            height: 75,
            addItemLabel: "Add new question",
            autoWidth :true,
            listeners: {
                change: {
                    scope: this,
                    fn: this.updateHidden
        this.add(this.itemQuestion);
    setValue: function (value) {
        var item = JSON.parse(value);
        this.itemQuestion.setValue(item.question);
        this.hiddenField.setValue(value);
    getValue: function () {
        return this.getRawValue();
    getRawValue: function () {    // read from crx
        var item = {
            "question": this.itemQuestion.getValue(),
        return JSON.stringify(item);
    updateHidden: function () {
        this.hiddenField.setValue(this.getValue());
CQ.Ext.reg('atestrte', CQ.ATestWidget);

KenichiM,
I'm pretty sure this is not a bug. The way I understand it (not to say I'm right, this is just how I understand it), the text needs to be selectable to be clickable (this is how it worked in the old Flash Player TextField class as well).
So, your workaround would be to use a RichEditableText control instead, and just select the Boolean editable property to false (so it is still selectable, just not editable).
<s:RichEditableText editable="false">
    <s:p><s:a href="http://www.google.com" target="_blank" color="#0066cc">Click me</s:a></s:p>
</s:RichEditableText>
Peter

Similar Messages

  • Need help in displaying a feed within my flex app

    Hello guys,
    I was hoping that someone can push me in the right direction. I am looking to display our feed within our Flex Application. I am using some of the sample from tour de flex
    This is what I have so far:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
         xmlns:mx="library://ns.adobe.com/flex/mx"
         width="960" height="850">
         <fx:Script>
         <![CDATA[
              import flashx.textLayout.conversion.TextConverter;
              import flashx.textLayout.elements.TextFlow;
              import spark.utils.TextFlowUtil;
              XML.ignoreWhitespace = false;
         ]]>
         </fx:Script>
         <fx:Style>
              @namespace s "library://ns.adobe.com/flex/spark";
              @namespace mx "library://ns.adobe.com/flex/mx";
              @namespace components "components.*";
              s|WindowedApplication {
                   background-color:#000000;
                   background-alpha:"0.9";
              s|ButtonBar s|ButtonBarButton:upAndSelected,
              s|ButtonBar s|ButtonBarButton:overAndSelected,
              s|ButtonBar s|ButtonBarButton:downAndSelected,
              s|ButtonBar s|ButtonBarButton:disabledAndSelected {
                   chromeColor: #00529c;
                   color: #FFFFFF;
              s|ButtonBar {
                   chromeColor: #053867;
                   color: #FFFFFF;
         </fx:Style>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
              <!--<s:HTTPService id="srv" url="http://feeds.feedburner.com/standforisrael/iWIn?format=xml" />-->
              <fx:XML id="srv" source="http://feeds.feedburner.com/standforisrael/iWIn?format=xml" />
         </fx:Declarations>
         <s:ButtonBar dataProvider="{myViewStack}" y="175" height="35" width="700" />
         <mx:ViewStack id="myViewStack" borderStyle="none" x="0" y="209" width="700" height="500">
              <s:NavigatorContent id="home" label="Home">
              </s:NavigatorContent>
              <s:NavigatorContent id="about" label="About Us">
              </s:NavigatorContent>
              <s:NavigatorContent id="rabbi" label="Rabbi Eckstein">
              </s:NavigatorContent>
              <s:NavigatorContent id="rabbiCom" label="Rabbi's Commentary">
              </s:NavigatorContent>
              <s:NavigatorContent id="programs" label="Our Blog">
                   <s:RichText id="rt5" width="280"
                        textFlow="{TextFlowUtil.importFromXML(srv)}" />
              </s:NavigatorContent>
         </mx:ViewStack>
    </s:WindowedApplication>
    Now when I run this I get a prompt that is telling me that if the program is already running to stop the program... I have no idea what program it is that i'm running that would prompt that type of dialogue box.
    I also get these errors:
    Unexpected processing instruction encountered and will be ignored. Found: type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css" IFCJ.mxml /IFCJ/src Unknown Flex Problem
    Unexpected processing instruction encountered and will be ignored. Found: type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl" IFCJ.mxml /IFCJ/src Unknown Flex Problem
    Is there anything that I am not doing right here?
    Any help would really be appreciated,
    Thank You

    I did try HTTPService but the problem that I was seeing was that I would need to push the information into a datagrid and that really doesn't help me witth presentation of the blog posts.
    What if I create a custom component that takes the RSS feed and parses it into sections like so:
    Title
    Description
    Link
    Where lets say the title is like so:
    [Bindable]
                public var title:String; <-- this is where I get stuck
    <s:Label x="0" y="80"
            text="{title}"/>
    I would like to also have that title wrapped in a url so that when the person is looking at our RSS they can click either the title or the read more link
    What else can i do?

  • RichText LinkElement ( s:a href="..." ) not clickable

    Is this a known bug for the Flex 4 beta?  The linkelement within a <s:RichText> control is not clickable (does not respond).  For example:
         <s:Group>
                <s:RichText>
                    <s:p>
                        <s:a href="http://www.google.com" target="_blank" color="#0066cc">Click me</s:a>
                    </s:p>                   
                </s:RichText>
         </s:Group>

    KenichiM,
    I'm pretty sure this is not a bug. The way I understand it (not to say I'm right, this is just how I understand it), the text needs to be selectable to be clickable (this is how it worked in the old Flash Player TextField class as well).
    So, your workaround would be to use a RichEditableText control instead, and just select the Boolean editable property to false (so it is still selectable, just not editable).
    <s:RichEditableText editable="false">
        <s:p><s:a href="http://www.google.com" target="_blank" color="#0066cc">Click me</s:a></s:p>
    </s:RichEditableText>
    Peter

  • Richtext fails with coldfusion.ajax.submitForm in IE

    Hi all,
    got a cfform containing a cftextarea with richtext = true, invoking the FCKeditor.  The form is inside a cflayoutarea and to maintain the page view I'm doing the calling forumAddPost to do the submission using coldfusion.ajax.submitform, processing it through a CFC method....shown below.
    The CFC simply writes to the database and once returned, the handler navigates the layoutarea to the mainpage.
    function forumAddPost() {
    ColdFusion.Ajax.submitForm('formnewpost', 'groups.cfc?method=forumNewPosts', forumAddPostHandler, errorHandler);
    function forumAddPostHandler(result) {
    ColdFusion.navigate('forum_showtopics_search.cfm?subject_id=<cfoutput>#group.forumid#</cf output>&searchtext=', 'MOD2');
    function errorHandler(code, msg)
    alert('error '+code+': '+msg);
    This code works fine in Chrome or Firefox, but in IE it fails and closes IE down.  If I remove the richtext option the posting works fine, so I've established it's something to do with the FCKeditor and the ajax posting method, but can't work out what?!
    Anyone have any ideas?
    Cheers
    Phil

    I was testing on IE8, Windows7 Starter.  I don't have IE6 available to test on.  Can test on IE7 a bit later on, but I have to fart-arse around with a VM to get it ready, so I'll do that after work.
    I tested multiple submits both via clicking between the tabs within one main "request" as well as multiple entire requests (like via refreshing the whole browser window).  I had no problems.
    I think you're being quite optimistic ot expect AJAX stuff to work reliably on IE6.  IE6 crashes.  That's what it's most famous for doing.  One needs to expect crashes if one pushes it (push it anywhere than out the window, that is).  And your client company's IT dept should be lined up against a wall and shot for still running it.  That's professionally negligent IMO.  But... you probably don't need to be told that.
    Adam

  • Cannot send email from within iPhoto

    Using OX X 10.7.5 cannot send email from within iPhoto.  I get this error message: "Your email did not go through because the server did not reply."
    If I change the preference to use email, everything goes fine but I lose the formatting feature.

    iPhoto Menu ->
    Preferences ->
    Accounts ->
    Delete and recreate your email settings.
    Alternatively, use Apple's Mail for the job. It has Templates too - and more of them. Check out the Stationery...

  • AND within IF statement in XML publisher

    Hi All,
    I am in need to use AND condition within an IF statement in rtf template.
    Here is the condition I am using
    <if:../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?>
    My data
    <?end if?>
    This is not working, does anybody know how to achieve this.
    Appreciate your time and help.
    Thanks,
    Ragul

    so you mean to say
    ../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID
    and
    DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID
    conditions are different?
    exactly
    I have always refered to data elements in the RTF without giving any path and it works fine for me. is there anything that I may be missing?
    so you may be have simple case or may be not need to use parent tags logic
    so crazy example
    <ROWSET>
        <G2>
            <DIST_SHIPMENT_COUNT>0</DIST_SHIPMENT_COUNT>
            <ADDRESS_DETAILS>
                <ADDRESS_DETAILS_ROW>
                    <LOCATION_ID>2</LOCATION_ID>
                </ADDRESS_DETAILS_ROW>
            </ADDRESS_DETAILS>
            <G1>
                <ROW>
                    <SOMEROW>some text 1</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
                <ROW>
                    <SOMEROW>some text 2</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
            </G1>
        </G2>
    </ROWSET>
    and
    original condition:
    <?for-each:ROW?><?position()?> and value <?if: ../../DIST_SHIPMENT_COUNT!=1 and ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    your condition:
    <?for-each:ROW?><?position()?> and value <?if: DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    and result as
    original condition:
    1 and value
    some text 1
    2 and value
    some text 2
    your condition:
    1 and value
    2 and value

  • Sum function within if/then/else (xdofx:if)

    I'm attempting to display a total at a particular group within my report. This total is conditional and should choose to display a placeholder value or the sum of another placeholder value (in a child group).
    I have been able to vary my output based on the value I want to check: FIXED_QUOTE_FLAG - I have the if/then/else working in a simplified fashion
    I can display literals and some placeholders correctlly eg. print a literal value of 00110011 or the value of placeholder QUOTED_PRICE
    I can also display a calculated placeholder, using sum within the group I am concerned with: sum (current-group()/ACTIVITY_CHRG)
    But when I try to get everythign working together ...
    I cannot get the sum to work inside the if/then/else condition. The result is NULL (blank in HTML output).
    The following is the snippet which is not working correctly:
    <?xdofx:if FIXED_QUOTE_FLAG = 'Y' then QUOTED_PRICE else sum (current-group()/ACTIVITY_CHRG) end if?>
    Message was edited by:
    gareth_adamson

    To answer you first question, perhaps sum is not a supported function in the xdofx namespace. It's annoying when this problem comes up because xdofx namespace seems to be the only way to do if then else clauses. I'm not entirely certain on the above, but you could resort to using BI Publisher's built-in if statement.
    For your problem, something like this:
    <?if: FIXED_QUOTE_FLAG='Y'?>
    QUOTED_PRICE
    <?end if?>
    <?if: FIXED_QUOTE_FLAG!='Y'?>
    <?sum(current-group()/ACTIVITY_CHRG)?>
    <?end if?>
    EDIT:
    There is a way to do if else without xdofx namespace. It is done with <?choose:?> <?when:?> and <?otherwise:?> tags. Here is example syntax copied from Tim Dexter's blog:
    <?choose:?>
    <?when:count(TRX_NUMBER) > 0?>
    Invoice Table
    <?end when?>
    <?otherwise:?>
    No Data Found
    <?end otherwise?>
    <?end choose?>
    To answer the second question about a running total, you will need to use the <?xdoxslt:set_variable($_XDOCTX,'var_name',var_value)?> and the <?xdoxslt:get_variable($_XDOCTX,'var_name')?>. This method of working with variables is the only method that allows you to update a variable. This makes it good for running totals. Consult the official user guide under "Creating an RTF Template" the section about using variables and calculating running totals.
    So, in your problem, once you get the first part working, you will have to add that value to your running total. It will look something like this:
    <?xdoxslt:set_variable($_XDOCTX,'running_total',xdoxslt:get_variable($_XDOCTX,'running_total') + conditional_value)?>
    Remember to initialize the running total to zero! Hope this helps.
    Thanks,
    Matt Soukup
    Message was edited by:
    Matt Soukup

  • HELP: I need to link a PDF within PDF and be able to open and return to original PDF

    I have a master PDF and have attached 7 supplemental PDF documents. I created "click here" icons and used the steps below so that the linked document would open. The problem is, once I open the supplemental PDF, it closes the original master. I would like to close the linked document and return to the master view. Is there a way to do this?
    Or is there a way to do this from InDesign? I created master file in InDesign and exported as an Interactive PDF.  I created the buttons and linked them to external files. This works great as long as the master PDF and the links are all in one file, but that is a pain to send to a viewer. Ideally, I want to be able to send the master PDF to a viewer and not have to send a links folder. Is there a way to embed the supplemental PDFs into the master so that they are all combined into one file AND have the ability to use buttons to call up one of the attachments, close, and return to the original?
    Thanks in advance!!

    I want to do the same thing that the original poster of this question wants to do. I haven't worked extensively with Acrobat so am finding by trial and error the several ways PDFs within PDFs can be accomplished. I'm using a trial version of Acrobat Pro X and have experimented with three options.
    1 - I've created a Portfolio and am impressed with what that can do, though I think it may be "overkill" for the current size of my project.
    2 - I've also tried creating this project as an index but discovered that the links I'd created in the original docs didn't work when I moved the index and its contents (keeping the file structure the same). I presume this means the links are absolute? I also don't understand how it is that users search a .pdx file, or how to present what I want to be the original opening PDF of indexed docs.
    3 - I've also thought to create one PDF with attached PDFs, so I'd like to have you expand on your comment about creating a master document and attaching documents to it.
    The specifics of my project are these: I have created a master directory that contains approximately 120 links. Most of the links are repeated three times (users can find in the directory the item they need in three different ways: alphabetically, by application, or by module; hence each item listed once in each of three categories). I want to make that directory the "master" PDF that users open first, and then locate within that PDF the 5-8 PDF documents that contain all of the places to which the directory links. I want the "master" directory to be self-contained and completely "portable" as far as all of the documents and links are concerned so that when I make the PDF available from our website users can open the master from there or copy it and have all of the docs they need with all of the links intact. I think I prefer that all docs open in new windows, since returning to the original doesn't seem very user friendly in Acrobat (I like the tabs feature in FoxIt when multiple PDFs are open...).
    I'd like an opinion about the best way to accomplish what I need to do, and am also wondering whether there are other options I am unaware of. BTW, the reason we've decided to document this whole project in PDFs rather than HTML is because this project contains a big number of tables, which do not look consistent across various browsers (i.e., most of our tables look fine in IE and Firefox, but awful in Google Chrome...). In researching my issue on the Acrobat Windows forum I see that rendering tables in Acrobat is also an issue that seems to be unresolved.
    Thank you!

  • How to open a popup win within a PDF file (c:\test.pdf) as Column Link

    I have a interactive report based on a Table (EMP). I need to create a column link that opens a pdf file within the employee curricula
    All the curriculum are stored in a windows folder, and in the EMP table there is a field named PATH containing the full path name.
    Thxs,
    Giuseppe.

    Hello, Sebastian
    I've tested your suggestion and in effect it works.
    I think is good solution if the files are readonly (pdf, images, etc).
    In my case the files are updatable by the end user.
    Consider that I'm using the following configuration:
    APEX 4.0, DB 11.2.0.1 and EPG
    This means that:
    a. All the files need to be loaded in the XML_DB via PL/SQL or via WebDAV (let's say in... /i/mydocs)
    b. When the end user opens the file via the "Column link" this is read-only in the browser, to modify it, the end user need to save updated version in (/i/mydocs), replacing the existing ones, .. and this is a bit complicated .
    Any other suggestion will be appreciate.
    Regards,
    Giuseppe.

  • Open vi within vi and close the the last one

    Hi all
    I've searched the solution to my problem, but didn't find.
    Short brief:
    I have a VI that uses for authorization, then if all O.K it should open other VI("code-vi") and run it and close itself. 
    I saw that some people recommended , that it can be done by just putting the "code-vi" in the right place, but when I'm following this method , the authorization VI can't be closed. 
    the other method I tried is to put a sequence where the first stage is opening the "code-vi" with  "vi server ref" and the second stage is close this VI also with "vi server ref". with this method i'm facing two problems , the first is the fact that all the vi's are within a project , and I want that the "path refernce" would be generic - I can put the folder that holdes all the files in any PC and it would run without redirecting the path. 
    The second problem is that I can't find the way to automaticaly run the "code-vi" when it invoked. 
    which files should I attach if i'm using project ? 
    Solved!
    Go to Solution.

    UdiWeiss wrote:
    so from your answer I can't configure it as for a VI that it is not in project -> VI properties , execution. 
    I'm not sure what you are trying to say here.  The "Run When Opened" property for the VI doesn't care how the VI was opened, just that it was opened.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to use multiple profiles within the same instance of Thunderbird

    About a month ago, I had Thunderbird configured with three profiles,
    and all three could be used within a single startup/instance of
    Thunderbird. That PC is now gone. I have re-configured the three
    profiles on a new PC, but am having trouble making all three
    useable within the same instance of Thunderbird. Can you help?
    Both PCs are/were Windows-7 64 bit.

    Thunderbird only opens on the default if one profile
    or
    if Profile Manager is instructed to ask at startup it will allow you to choose which Profile to open else it opens on the last Profile used..
    So it shows one Profile at a time in one instance of Thunderbird.
    However, one Profile can have many mail accounts.
    eg: I run 4 mail accounts in one Profile.

  • How do I use a frameset to another website within my iweb site?

    I am trying to figure out how to use frameset to view my online booking site within my site that I have created on iWeb. right now I just refer to a link but I would like to be abel to use the frameset to do it. I do have this code but not sure what to do with it.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title>Online Appointment Book</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style type="text/css">
    <!--
    body {
    margin: 0px;
    padding: 0px;
    -->
    </style>
    <frameset rows="90,*" cols="*" border="0">
    <frame src="upperframe.html" name="upperFrame" frameborder="0" scrolling="no">
    <frame src="mainframe.html" name="mainFrame" frameborder="0">
    <noframes>
    <body>
    I would appreciate any advice

    A Frameset is a separate, non-iWeb, webpage with the code you show.
    The upperframe.html and lowerframe.html are urls to whatever page you want to display.
    What you probably want is an <iframe>. You use it to display an external page within an iWeb page.
    The code is :
    <iframe src="http://url.to.file.html" frameborder="0" width="500" height="500" scrolling="no" allowTransparency="true"></iframe>
    You paste the code in the HTML Snippet. You have to change the width and height to reflect your situation.
    Note that an <iframe> is static. It does not change when the page it displays changs in width or height. To scroll set scrolling to yes.
    Sample iWeb page with <iframe> : http://www.wyodor.net/iFrame/

  • Office 2013 - Is there a way to when installing that you can change the default save location without having to configure it within the client?

    So, What I am trying to do is deploy Office 2013 throughout our company, and I do not want the users to save their business or personal files created within Office 2013 on the C: drive or Sky Drive. We have what is called the U: drive and I'd like to know
    if there's a quick registry tweak that I can use to not only change the default location upon setting up a computer, but to deploy through Group Policy? 
    One other question perhaps; Is there a way to change not only the file location to default to only the one place, but also is there a way to also set a specific size limit to folders and prevent certain files from being saved (videos and personal pictures). 
    I have our network pretty tight as to what or who can go where, and what not, I am just really for an answer or some help to the default location...anything you have GREATLY APPRECIATED! 

    You can use the OCT and/or domain Group Policy, to customise the Office experience and settings for your users:
    https://technet.microsoft.com/en-us/library/ee460874.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Can there be a hardware issue on the iPad that causes you to unable to join wifi networks or only if you are within 5 feet of routers?

    I used to be able to connect my iPad to my house wifi network walking all over my house then one day it stopped.  When i tried to connect to my network I would get an message saying "Unable to Join network".  I found that if i was within 5 feet of my router it would connect and work just fine.  At the same time I tried it at multiple other networks that I have before (girlfriends and other friends houses) and could not connect with same issue.  Only place I can connect is my work wifi.
    Can connect to wifi with my iPhone with no issues
    I have reset my network connections
    Reset my house router
    Upgraded to iOS6

    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    Try This - Renew IP Address:
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • How can I render an active link (yrl) within a UIX/XML page

    How can I render an active link (url) within a UIX/XML page.
    How can I get <jbo:ShowValue> to work in UIX/XML, or is there another way?
    Bill G...

    It may seem strange, but the <contents> of <rawText> aren't actually
    raw - it's only the "text" attribute that's raw. (It seems strange because
    it is. Ah well.) This is different from UIX JSP.
    So, try something like the following:
    <bc4j:attrScope name="Notes">
    <contents>
    <rawText text="&lt;a href=&quot;"/>
    <rawText>
    <boundAttribute name="text">
    <bc4j:attrProperty name="value"/>
    </boundAttribute>
    </rawText text="&quot;&gt;"/>
    Some text in the link.
    <rawText text="&lt;/a&gt;"/>
    </contents>
    <bc4j:attrScope>
    Thankfully, this will be much simpler in 9.0.3, when the following
    will work:
    <link text="Whatever you want">
    <boundAttribute name="destination">
    <bc4j:attrValue name="Notes"/>
    </boundAttribute>
    </link>

Maybe you are looking for

  • Is it possible to prevent my iPod from going silent when locked?

    The reason is that I use HwBrowser to download mp3 files which are not available as podcasts, but when I listen to them, I need to keep my iPod awake all the time or the sound stops. Now it wasn't always like that, I used to have no problem listening

  • JAX-RS security: exiting/applicable Oracle docs?

    Hi, I intend to create some RESTful APIs for a product using Jersey JAX-RS RI Version 1.9 deployed on Oracle WLS 11g (10.3.6) as described in Programming RESTful Web Services - 11g Release 1 (10.3.6) but there is no security documentation available f

  • Obiee 11g RPD consistency check error after upgrade

    Hi, got below error in RPD consistency check after upgrading from obiee 10g to obiee 11.1.1.6. *ERRORS: Business Model Core: [38028] Logical column Dim - Contact.Age Range does not have a valid data type.* logical column Age= CASE WHEN "Core"."Dim -

  • Sync new palm with windows without automatically restoring data

    Hi all. My TX finally bit the dust. I'm converting, nay, reverting, to an old, refurbished Palm Zire 72. However, when I sync the first time and choose the name to which to sync the palm windows app automatically starts restoring all the data. This w

  • Screen and Hard drive won't go to sleep

    When I shut my computer screen the computer will not go to sleep and the display stays fully lit. I have no idea how to fix this problem. please help!