[ADF] Having Difficulties in Figuring Out Using the af:selectInputText Tag

This is my first time using the ADF tags.
The <af:selectInputText> is an input component that can launch a dialog and automatically accept its return value.
My pop-up is a data table that provides "code" and "description". And the selection made will be return to the parent page and the "code" will be populated in the input field.
First, I tested if my data table can be constructed successfully. Yes, I am able to use the JSF <h:dataTable> tag to display without problem.
Second, I have adf-faces-api-10_1_3_0_4.jar and adf-faces-impl-10_1_3_0_4.jar in my WEB-INF/lib directory.
Third, my web.xml and faces-config.xml work well because I was able to render JSF tags.
Fourth, I have created the adf-faces-config.xml file with its contents directly copied from the ADF Configuration web site. The adf-faces-config.xml is placed together with the web.xml and faces-config.xml files.
Fifth, on top of my ***.jsp, I added
<%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA10" prefix="af" %>
<%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA10/html" prefix="afh" %>
However, the IDE says that <af:selectInputText ...> is an unknown tag.
Besides, for the value of the "action" attribute of the <af:selectInputText ...>, what is supposed to be filled for the "dialog:?????"
and the compiler starts complaining that the "value" attribute in my <h:dataTable ...> has no value! But, my <h:dataTable ....> worked well before I introduced ADF.
Here is my code in the ***.jsp:
     <f:view>
          <h:form>
                 <af:selectInputText label="Sex: " id="idInputText"
                   value="#{listOfValuesManagementBean.selectedGender}"
                popupTitle="Sex Types"
                    action="dialog:????????????" windowWidth="300" windowHeight="200">
                   <h:dataTable id="gender" value="#{listOfValuesManagementBean.genderTypes}" var="genderType">
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Code"/>
                             </f:facet>
                             <h:outputText value="#{genderType.code}"/>
                        </h:column>
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Description"/>
                             </f:facet>
                             <h:outputText value="#{genderType.description}"/>
                        </h:column>                   
                   </h:dataTable>
          </af:selectInputText>             
          </h:form>
     </f:view>

I use IBM Rational Application Developer (RAD v.7)
As you know that my JSF code had worked before I started introducing ADF tags.
Now, I have resoved all the complilation complaints in my ***.jsp where I have the ADF <af:selectInputText ...> tag and all tags inside the <af:selectInputText ...> tag.
But, I have the "Error 500: Cannot find FacesContext" in the browser when I run the ***.jsp.
I believe it is in my web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
     <display-name>
     ADF_TEST</display-name>
     <context-param>
          <description>
          The location where state information is saved.
Valid values are 'server' (typically saved in HttpSession) and 'client' (typically
saved as a hidden field in the form.
Default is server.</description>
          <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
          <param-value>client</param-value>
     </context-param>
     <context-param>
          <param-name>javax.faces.CONFIG_FILES</param-name>
          <param-value>/WEB-INF/faces-config.xml</param-value>
     </context-param>
     <context-param>
          <description>
          The default suffix for extension-mapped resources that contain JSF components.
Default is '.jsp'.</description>
          <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
          <param-value>.jsp</param-value>
     </context-param>
     <context-param>
          <description>
          Number of Views to be stored in the session when Server-Side State Saving is being used.
Default is 15.</description>
          <param-name>com.sun.faces.NUMBER_OF_VIEWS_IN_SESSION</param-name>
          <param-value>15</param-value>
     </context-param>
     <context-param>
          <description>
          If set to true while server-side state saving is being used, a serialized representation
of the view is stored on the server. This allows for failover and sever clustering support.
Default is false. This parameter is not available in JSF 1.0.</description>
          <param-name>com.sun.faces.enableHighAvailability</param-name>
          <param-value>false</param-value>
     </context-param>
     <context-param>
          <description>
          If set to true while client-side state saving is being used, reduces the number of bytes
sent to the client by compressing the state before it is encoded and written as a hidden field.
Default is false. This parameter is not available in JSF 1.0.</description>
          <param-name>com.sun.faces.COMPRESS_STATE</param-name>
          <param-value>false</param-value>
     </context-param>
     <context-param>
          <description>
          Monitors Faces JSP files for modifications and synchronizes a running server with
the changes without restarting the server. If this parameter is set to false or
removed from the deployment descriptor, any changes made to Faces JSP files may
not be seen by the server until it is restarted. This parameter is usually set
to true while the Faces JSP files are being developed and debugged in order to
improve the performance of the development environment.</description>
          <param-name>com.ibm.ws.jsf.JSP_UPDATE_CHECK</param-name>
          <param-value>true</param-value>
     </context-param>
     <context-param>
          <description>
          Load JSF runtime when the application server starts up. If this parameter is set to false or removed,
JSF runtime will be loaded and initialized when the first JSF request is processed.
This may disable custom JSF extensions, such as factories defined in the project.</description>
          <param-name>com.ibm.ws.jsf.LOAD_FACES_CONFIG_AT_STARTUP</param-name>
          <param-value>true</param-value>
     </context-param>
     <context-param>
          <description>
          If set to true disables use of MultipartFacesContext, allowing underlying implementations to be used.
MultipartFacesContext is required when the FileUpload component is used, and can be disabled otherwise.</description>
          <param-name>com.ibm.faces.DISABLE_JWL_MULTIPART_CONTEXT</param-name>
          <param-value>false</param-value>
     </context-param>
     <context-param>
          <description>
          Value, in milliseconds, to be used for Expires header for resources served by the JavaScript Resource Servlet.
Default is never (31536000000 milliseconds or 1 year).</description>
          <param-name>com.ibm.faces.RESOURCE_EXPIRE_MS</param-name>
          <param-value>31536000000</param-value>
     </context-param>
     <context-param>
          <description>
          Defines the strictness of the conversion when converting from a string to a date.
The higher the value, the more exactly the value must conform to the format.
If 0 (liberal), all 'literals' are ignored while parsing a value, mis-ordered components will be rearranged,
any missing component is supplied using the current datetime, misspellings and incomplete spellings are allowed
(to the extent that they can be evaluated), 'E' and other non-unique components are ignored.
If 1 (strict), all 'literals' are ignored while parsing a value, any missing component is supplied using the current
datetime, misspellings and incomplete spellings are allowed (to the extent that they can be evaluated),
'E' and other non-unique components are ignored. For example if the pattern is MMMM dd, yyyy a user can enter 'Feb/02/04'
and it will be parsed as February 02, 2004.
If 2 (very strict), an exact match is required except long month names can be 'shortened' to the minimum number of unique
characters and 'E' and other non-unique components are ignored. Literals must match exactly.
Default is 1.</description>
          <param-name>com.ibm.faces.DATETIME_ASSIST_STRICTNESS</param-name>
          <param-value>1</param-value>
     </context-param>
     <context-param>
          <description>
          Defines the strictness of the conversion when converting from a string to a number.
The higher the value, the more exactly the value must conform to the pattern.
For numbers, currently strictness levels of 0 and 1 are equivalent. If the strictness is 2,
if number is signed, the sign must be provided (otherwise it's assumed positive).
Default is 1.</description>
          <param-name>com.ibm.faces.NUMBER_ASSIST_STRICTNESS</param-name>
          <param-value>1</param-value>
     </context-param>
     <context-param>
          <description>
          Defines the path for resources such as JavaScript libraries and images.
The value can be either:
1. An empty string. Context path of the current application will be used.
2. A path string. Example: /project13. A number. Specifies the number of nodes to use from the context path starting from the left.
Example: With a value of 1 if the context path is /screen/faces/SSID110267549/RID1102676
the path will be evaluated as /screen
Default is an empty string.</description>
          <param-name>com.ibm.faces.USE_UNENCODED_CONTEXT_PATH</param-name>
          <param-value></param-value>
     </context-param>
     <context-param>
          <description>
          Sets a custom url-pattern for the JavaScript Resource servlet.
Should match servlet mapping setting for the JavaScript Resource servlet. If the default default mapping
value '/.ibmjsfres/*' is modified, this context-param should also be modified.
</description>
          <param-name>com.ibm.faces.JS_RESOURCE_SERVLET_URL_PATTERN</param-name>
          <param-value>/.ibmjsfres/*</param-value>
     </context-param>
     <context-param>
          <description>
          If set to true, forces JavaScript Resource Servlet to cache all resources on the server.
This can be useful when client-side caching is turned off.</description>
          <param-name>com.ibm.faces.JS_RESOURCE_SERVLET_CACHE</param-name>
          <param-value>false</param-value>
     </context-param>
     <context-param>
          <description>
          Sets a custom charset mapping properties file similar to converter.properties in WAS.</description>
          <param-name>com.ibm.faces.ENCODING_MAPPING</param-name>
          <param-value>converter.properties</param-value>
     </context-param>
     <context-param>
          <description>
          Number of Views to be stored in the session when Enhanced State Saving is being used.
Default is 15.</description>
          <param-name>com.ibm.faces.ENHANCED_SERVER_STATE_SAVING_SESSION_STORED_VIEWS</param-name>
          <param-value>15</param-value>
     </context-param>
     <context-param>
          <description>
          If set to true, the entire JavaScript library, containing code for all components, will be included
in the generated pages as one file. If set to false or removed, multiple smaller JavaScript files will be
included, depending on the components used on the page.Default is false.</description>
          <param-name>com.ibm.faces.USE_HXCLIENT_FULL</param-name>
          <param-value>false</param-value>
     </context-param>
     <listener>
          <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
     </listener>
     <servlet id="Servlet_1181745021880">
          <servlet-name>Faces Servlet</servlet-name>
          <servlet-class>
          javax.faces.webapp.FacesServlet</servlet-class>
          <load-on-startup> 1 </load-on-startup>
     </servlet>
     <servlet id="Servlet_1181745029380">
          <servlet-name>JavaScript Resource Servlet</servlet-name>
          <servlet-class>
          com.ibm.faces.webapp.JSResourceServlet</servlet-class>
          <load-on-startup>-1</load-on-startup>
     </servlet>
     <servlet-mapping>
          <servlet-name>Faces Servlet</servlet-name>
          <url-pattern>/faces/*</url-pattern>
     </servlet-mapping>
     <servlet-mapping>
          <servlet-name>Faces Servlet</servlet-name>
          <url-pattern>*.faces</url-pattern>
     </servlet-mapping>
     <servlet-mapping>
          <servlet-name>JavaScript Resource Servlet</servlet-name>
          <url-pattern>/.ibmjsfres/*</url-pattern>
     </servlet-mapping>
     <welcome-file-list>
          <welcome-file>index.html</welcome-file>
          <welcome-file>index.htm</welcome-file>
          <welcome-file>index.jsp</welcome-file>
          <welcome-file>default.html</welcome-file>
          <welcome-file>default.htm</welcome-file>
          <welcome-file>default.jsp</welcome-file>
     </welcome-file-list>
</web-app>and my ***.jsp looks like:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af" %>
<%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Test the ADF selectInputText Tag</title>
</head>
<body>
     <f:view>
          <h:form>
                <af:selectInputText label="Sex: " id="idInputText"
                   value="#{listOfValuesManagementBean.selectedGender}"
                    action="dialog:chooseGender" windowWidth="300" windowHeight="200">
                   <af:table id="gender" value="#{inputListOfValuesManagementBean.genderTypes}" var="genderType">
                        <af:column>
                             <f:facet name="header">
                                  <af:outputText value="Code"/>
                             </f:facet>
                             <af:outputText value="#{genderType.code}"/>
                        </af:column>
                        <af:column>
                             <f:facet name="header">
                                  <af:outputText value="Description"/>
                             </f:facet>
                             <af:outputText value="#{genderType.description}"/>
                        </af:column>                   
                   </af:table>
               </af:selectInputText>
          </h:form>
     </f:view>
</body>
</html>Message was edited by:
user537770

Similar Messages

  • My macbook keeps asking me to use an administrator and their password to continue but nobody seems to know who is the administrator for this computer...does anyone know how to avoid this this or figure out who the administrator is?

    My macbook keeps asking me to use an administrator and their password to continue but nobody seems to know who is the administrator for this computer...does anyone know how to avoid this this or figure out who the administrator is?

    Lynne130,
    to figure out which users have administrative privileges, open the Users & Groups pane of System Preferences; each user other than the Guest User will be shown with a description of either “Admin” or “Standard”. It’s typical for the first user created on a Mac to be an administrative user.

  • I am having the same problem as many others: the scrabble on my iPhone just stopped working out of the blue yesterday - has anyone figured out what the fix is ??

    I was wondering if anyone has figured out why the Scrabble app isn't working on all of these iPhones yet?? It started on mine yesterday .

    See: http://support.apple.com/kb/TS1559
    If this doesn't resolve the problem you have a phone with a hardware failure.

  • Lumia 920: Still trying to figure out what the pro...

    Aside from being very upset about Nokia's not allowing updates for the unbranded 920s, I'm still trying to figure out what the problem is with my camera...
    I had nearly a perfect working phone one and a half week ago. Even though the battery didn't last well and heated up somehow and there are gliches with some apps, the phone and its original apps worked without problem. Once the battery died in the middle of the night but I thought that it was because I didn't plug the charger well enough, it's a little loose anyway. I read about the freezes and restarts in different forums and was wondering what people were talking about, since I didn't have any such kind of problems. I felt myself being lucky.
    Then I got some app updates (Nokia drive+ and a few others), and ever since then my camera hasn't worked properly. When I open the camera app or click the camera button nine out of ten times it just goes back to the home screen or else it freeze the phone. I have tried soft resets and restarts but they mostly don't work, or they might work long enough to take a couple of photos and then stop working, or otherwise it freeze the phone and need to soft reset it. There is no pattens as to when it works and when it doesn't. I have also tried to uninstall some apps but it seemed to have no effect on the condition of the phone. Every app that utilizes the camera won't work ( camera won't work but other functions work), flashlight app won't work.
    Today I decided to hard reset the phone. It's surprisingly easy procedure that took less than 10 min. I did my first hard reset and chose to use my phone's backup files from Skydrive and it went fine, except it didn't do anything to the camera, i.e. it didn't work. My second hard reset I chose to "start from clean table" (or something of such) without any apps installed, and also disabled the automatic update but it didn't do anything either, no working camera. I did the same procedure once more just in case I did something wrong, but it didn't work. The fourth hard reset I restored from Skydrive to have (mostly) everything in order. No working camera either but almost everything else works now.
    It puzzles me. I'd though that if the reason of camera not working is some app updates then start from the clean table would have resloved it. Even after hard reset using camera at the very first possible chance didn't succeed: it worked for a very short moment before it froze the phone, just like before resetting. If I can keep myself from touching the camera the phone itself works (aside from maybe once or twice restartd itself, very rarely anyway). Now I have a phone with a camera I can't use and I don't have a clue what the problem is. I don't think that there are hardware problems because the camera *worked*, and I don't believe that software updates can break it hardware-wise. I have thought of changing it but who can promise that I'll get a phone that works better. Probably I should wait for Microsoft's/Nokia's updates, it just feels like they never come...

    hi mate,
    Sorry to hear you are having such a rough time with your 920. In this case, it might be best to take your phone back to your point of purchase and ask for a replacement, and if they are being less than helpful, to take it to your local Nokia Care point instead: http://nokia.com/support
    I can certainly empathise with you, as a lot of the issues you describe are apparently fixed by the Portico update by Microsoft that was released yesterday to AT&T and Rogers devices but not the rest of the Lumia Windows Phone 8 range unfortunately. Bit of a wait, but hopefully not too long until the update hits.

  • HT4993 When I send Outlook invites to my iPhone (via email) the appointments appear 3 hours earlier? The time setting appears to be EST which is accurate so I can't figure out why the appointments don't appear in real time.  Thanks for your help, Ellen

    When I send Outlook invites to my iPhone (via email) the appointments appear 3 hours earlier? The time setting appears to be EST which is accurate so I can't figure out why the appointments don't appear in real time.  Thanks for your help, Ellen

    1) The best way to relocate the iTunes library folder is to move the entire iTunes folder with all subfolders to the new path, then press and hold down shift as start iTunes and keep holding until prompted to choose a library, then browse to the relocated folder and open the file iTunes Library.itl inside it.
    If you've done something different then provide some more details about what is where and I should be able to help.
    2) Purchases on the device should automatically transfer to a Purchased on <DeviceName> playlist, but it my depend a bit on whether automatic iCloud downloads are enabled. If there is a cloudy link then the transfer might not happen. You can use File > Devices > Transfer Purchases. In iTunes you should also check out iTunes Store > Quick Links > Purchased > Music > Not on this computer.
    3) Backup the device, then immediately restore it. In some cases you need to add a restore as new device into that equation. Obbviously not to be attempted until you're sure all your media is in your library. See Recover your iTunes library from your iPod or iOS device should it be needed.
    4) I believe there is complimentary 1 incident 90-day support with hardware purchases, but no free software support for iTunes itself. AppleCare gets you a different level of support.
    tt2

  • I cannot figure out what the "other" is that is taking up space on my iPOD.

    Please help! I am in the process of burning my songs to my iPOD and I noticed when I synced it up that I had alot of orange, "other" stuff taking up space. I have a few television shows and am building up my music files. I cannot figure out what the "other" is. When I clicked the tab for photos, it had 23 photos that it pulled from My Pictures. However, I played around with the settings and it said under "photos," (0). However, it still has space that it is taking up.
    I have alot of music to download and I don't want to have 5.38 bytes of used up space for which I don't know what it is.
    Thanks!
    -Josh

    Other can be album artwork, contacts, notes etc. If you feel that the Other is being incorrectly reported you could try restoring your iPod. Just be aware that restoring will erase the hard drive, reload the software and put it back to default settings, so if you have songs on your iPod that aren't on iTunes you will lose them if you have no back up. Once the restore is complete follow the on screen instructions and it should connect to iTunes and give you a prompt to automatically update your library onto the fresh installation. If you want to update manually or using selected playlists choose no and it will default to manual mode and you can choose whatever setting you like: Restoring iPod to factory settings with iTunes 7

  • Can I sign out of my iMessages on my Mac OS. I'm having difficulties of signing out., Can I sign out of my iMessages on my Mac OS. I'm having difficulties of signing out.

    Can I sign out of my iMessages on my Mac OS. I'm having difficulties of signing out., Can I sign out of my iMessages on my Mac OS. I'm having difficulties of signing out.

    iCloud: Troubleshooting restoring an iCloud backup
    iOS: Troubleshooting Messages
    iOS: Troubleshooting FaceTime                  
    Unable to make or receive FaceTime calls after April 16, 2014
    Using FaceTime and iMessage behind a firewall
    iOS: Troubleshooting FaceTime and iMessage activation
    iOS: Using FaceTime                               
    FaceTime, Game Center, Messages: Troubleshooting sign in issues

  • Can I zoom in or out using the Camera app on the iPhone 5?

    Can I zoom in or out using the Camera app on the iPhone 5?

    Pinch to zoom in and out.

  • HT1277 I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it.

    I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it. This is the 1st time I've had this problem.
    slpmtns

    Whilst it may not be your fault I am afraid it appears that your post is on a forum which is not the best for your OS. It will save the time of the unpaid volunteers here, and may resolve your issue faster, if you could examine the list below and see if there is a more appropriate forum to which you could direct your question.
    OS X 10.9 Mavericks
    OS X 10.8 Mountain Lion
    OS X 10.7 Lion
    OS X 10.6 Snow Leopard
    OS X 10.5 Leopard
    OS X 10.4 Tiger
    OS X 10.3 and earlier
    OS 9, OS 8 & System 7
    OS X Technologies
    OS X Server
    iPad
    iPhone
    iPod
    Other

  • HT1539 can i add my digital copy to itunes with out using the disk? my netbook does not have a disk drive and i want to add my movie to my ipod can i do it with out the use of the disk and just the code?

    Can I add my digital copy movie to my iTunes with out using the disk, my gateway laptop/netbook does not have a disk drive I have the unused code and everything, I just can't stuck the movie into the computer itself and my desktop computer has no internet on it. Is there a way to add my movie to my iPod touch 2nd generation tuning 4.2.1

    Hiya!
    It depends on what kind of digital copy you have.  This article goes ino details regarding the two types, and depending on the type you have, you may or may not need the DVD to redeem the code.
    Transferring video from DVDs with iTunes digital content
    http://support.apple.com/kb/HT1539
    I hope this helps!  Best wishes and good luck!

  • Help Please - having difficulties creating af link from the text to an attached file i acrobat

    I have been reading the help, but it just wonn't work when I try.
    I have tried as followed (I am working with a danish version, and hope to matched the same word as in the english version of Acrobat Xpro):
    1. From the toolbox i choose content and then 'hyperlink'
    2. I mark the text from which i wish to make a link
    3. Acrobat respond with an popup picture 'create a link'
    4. From the popup I mark 'Open a side' and push 'next'
    5. Acrobat respond with a new popup picture 'create / go to a side'
    6. I go to the navigator and open the list with attached file's that I have embedded in my acrobat file.
    7. I mark the to which i wish to make a link to
    8. In the popup 'create / go to a side' that stilll is open, i push 'Mark hyperlink'
    Then I hoped that I have created a link from the acrobat text to the attached file. In stead Acrobat has made a link to the same sidenumber that respond to the text from which i wish to make a link . F.ex. the linktext is on side 10 - then the link goes to side 10.
    How do i do it right?
    Please help.

    Hello Bernd
    Thanks for a quick respond.
    This corresponds to the text I have tried myself, but apparently I do something wrong
    1.      Open a PDF that contains a PDF file attachment – done
    2.      Go to where you want to create a link. If that location is in the file attachment, click the Attachments button in the navigation pane, select the file attachment, and click open.
    Here I go to side number 10 from which I wish to make a link from (I am not open the attachment file at this moment, as the location not is inside the file attachment).
    (I earlier also tried to  mark the attachment file and click open, and It result that the attached file just opened normally without creating a link to the file).
    3.      Choose Tools > Content > link, and select the area for the link
    Here  I mark the text on side 10 from which I wish to make a link to a attached file
    4.      In the Create Link dialog box, set the link appearance, select Go To A Page View, and then click Next
    Here I have selected ‘Go to a page view’ as told and I click Next
    5.      Set the page number and view magnification you want, either in the parent PDF document or in the file attachment, and then click set link.
    Here I go to the navigation pane and mark the attached file from the file list (the files in the list hasn’t any side number in the list) and then I click Set Link.
    Then I hoped that I have created a link from the acrobat text to the attached file. In stead Acrobat has made a link to the same sidenumber that respond to the text from which i wish to make a link . F.ex. the linktext is on side 10 - then the link goes to side 10.
    What do I do wrong.?
    Med venlig hilsen
    Mogens Pedersen
    Specialkonsulent
    T 33 63 13 07
    F 33 63 10 11
    [email protected]<mailto:[email protected]>
    Fra: Bernd Alheit [email protected]
    Sendt: 2. marts 2012 13:11
    Til: Mogens Pedersen
    Emne: Help Please - having difficulties creating af link from the text to an attached file i acrobat
    Re: Help Please - having difficulties creating af link from the text to an attached file i acrobat
    created by Bernd Alheit<http://forums.adobe.com/people/Bernd+Alheit> in Creating, Editing & Exporting PDFs - View the full discussion<http://forums.adobe.com/message/4241290#4241290

  • How to know the size of the string with out using the length() method

    i want to find the lenght of the
    String s="Sudha";
    with out using the lenght() method.

    Not true (I mean the part about "The only String
    call"). But if it had been true, I might haveagreed
    with this:
    Assuming one uses the 'exception' approach thenwhat
    method other than charAt() is needed?I probably misunderstood your post, I thought you
    meant that the only alternative to length() would be
    charAt() and catching the exception.There are many ways and if the teacher had said find 5 ways of finding the length of a String then I would have fealt happier because it would have meant the student would have to read and study the whole of the String API.
    I like
    int length = (s+"sabre").lastIndexOf("sabre");

  • I am unable to zoom in/out using the touch pad; yesterday i could zoom in/out of website pages, pics, etc, now today it is not letting me; how do i fix this?

    i am unable to zoom in/out using the touch pad; yesterday i could zoom in/out of website pages, pics, etc, now today it is not letting me; how do i fix this?

    See Here  >  http://support.apple.com/kb/HT1212

  • How to display the alv report blocks wise with out using the blocked alv

    Hi
    How to display the alv report with out using the blocked alv function module.
    Thanks
    Chinnu

    see this Standard Program
    RPR_ABAP_SOURCE_SCAN

  • I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this

    I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this is extremely irritating, I cannot re-initialize the same file or initialize and another PDF file after I have initialized the first file. If you cannot help please let me know if should use an earlier  version of Reader or find anther company that has the appropriate software.

    Perhaps you missed that you started a discussion at I have OS 10.9.2 and have downloaded latest version of Reader 11. I can no longer fill in form or scroll using the side bar. and you did not respond to the last post there.

Maybe you are looking for

  • Copying Data from a table to new table

    Hi, I am copying some columns data from one table to another table and my query is INSERT INTO TestTable (empno, empName,deptno) SELECT empno, empname,deptno FROM emp and it's working fine but I want to insert one more column data into testTable on t

  • Set default value with mouse click?

    Hi guys, I'm new enough to LabVIEW, and indeed this forum, so I hope you can help. I'm guessing it's a simple problem, but I can't figure out how to do it. I've got a cRIO taking in 4 analog voltages. Each voltage is from a linear potentiometer which

  • Books - no full-screen view of page?

    I would find it useful to be able to see a page of an Aperture Book I'm working on in full-screen mode. I don't find a way to do it. Full-screen mode works on an image from the Browser strip below the book-edit Viewer, or an image from the page, but

  • HT4993 My iphone won't turn on and when I try to charge it, it still won't turn on what should I do?

    My iphone automatically turned off and so I went to charge it but it's not turning on nor is it working anyway possible. What should I do?

  • How to load or embedd subtitle in video file

    Hi,      I've a movie in a folder. Folder contains 720p movie file with srt file(subtitle file). I Just add the video file in itune library and synced. When i playing the movie in my ipod touch, subtitle is not displaying. I've found any video conver