Regarding Focus on InputField

Hi Experts,
   I have created 3 input fields in a view.
   I set focus on First Inputfield
   When i click Tab in keyboard the focus went to address bar.
  I want to set the focus on next inputfield when i click tab .
  Plz give me suggestion

Hazrath,
Keep all the input fields in a transparent container. Make sure the 'labelFor' property of the Labels for the input fields, point to one of the inputfields. (otherwise, tab focusses on label instead of inputfield.
Try and let me know.
Regards,
Rajit

Similar Messages

  • Regarding Focus on Uielement

    Hi experts
       I create 2 input fileds  and i set focus on Ist inputfield when browser open.When i click the tab the focus goes to addressbar.I want the focus to be on 2nd input field.
    Plz give me the solution

    Hi,
    Check the <b>label for</b> properties of the second input box.
    Is the second text box enabled?
    Regards
    Ayyapparaj

  • Problem regarding focusing elements after submit

    Hi all
    I have a bunch of radio groups with submit on my page . The requirement is to set focus on the next radiogroup with submit after any radiogroup with submit is clicked.
    But the problem is When user changes the value the focus is moving to the top of the page. Is there any way that we can keep the focus on the same item or other item at the same level ?
    I have written the following statement in HTML Form Element Attributes and Form Element Option Attributes of the first radiogroup with submit (called P4_X) : onClick = "document.getElementById('P4_E').focus();" (The last radiogroup with submit on the page is called P4_E).
    But alas it just doesnt work :-(
    If this is any help, I am pasting a sniplet of the 'view source' of my page
    <td colspan="2" valign="top" class="t3Body"><table class="formlayout" summary="" ><tr><td nowrap="nowrap" align="right"><a class="t3optionalwithhelp" href="javascript:popupFieldHelp('3886301842732082','12829541423701975766')" tabindex="999"></a></td>
    <td colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="3886301842732082" /><fieldset id="P4_X"><input type="radio" name="p_v01" value="%null%" onclick="doSubmit('P4_X')" onClick = "document.getElementById('P4_E').focus();" /><span onClick = "document.getElementById('P4_E').focus();">%</span>
    <input type="radio" name="p_v01" value="choice1" checked="checked" onclick="doSubmit('P4_X')" onClick = "document.getElementById('P4_E').focus();" id="P4_X_1" />
    <span onClick = "document.getElementById('P4_E').focus();"><label for="P4_X_1">choice1</label></span>
    <input type="radio" name="p_v01" value="choice2" onclick="doSubmit('P4_X')" onClick = "document.getElementById('P4_E').focus();" id="P4_X_2" />
    <span onClick = "document.getElementById('P4_E').focus();"><label for="P4_X_2">choice2</label></span>
    <input type="radio" name="p_v01" value="choice3" onclick="doSubmit('P4_X')" onClick = "document.getElementById('P4_E').focus();" id="P4_X_3" />
    <span onClick = "document.getElementById('P4_E').focus();"><label for="P4_X_3">choice3</label></span></fieldset>
    <td colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="3891304050742114" /><fieldset id="P4_E"><input type="radio" name="p_v08" value="choice1" onclick="doSubmit('P4_E')" id="P4_E_0" />
    <label for="P4_E_0">choice1</label>
    <input type="radio" name="p_v08" value="choice2" onclick="doSubmit('P4_E')" id="P4_E_1" />
    <label for="P4_E_1">choice2</label>
    <input type="radio" name="p_v08" value="choice3" onclick="doSubmit('P4_E')" id="P4_E_2" />
    <label for="P4_E_2">choice3</label></fieldset>
    <a class="eLink" title="Edit" href="javascript:popupURL('f?p=4000:371:14317056829894007819::::P371_ID,FB_FLOW_ID,FB_FLOW_PAGE_ID:3891304050742114,101,4');" tabindex="999"><img src="/i/e.gif" alt="Edit" class="eLink" /></a></td></tr>
    Please help me out !!
    Regards
    -Shantanu Dhanuka

    Hi,
    1 - Create a new HTML region on your page called "Scripts" and in the "Display Point" select "Before Footer" - this places the region at the bottom of the page.
    2 - Create a new Item and put in the new region. Call the item P1_FOCUS_FIELD. Set its Default Value to the name of the field that will receive the focus when the page is FIRST loaded (P_E_1?).
    3 - In the new region's Region Footer, add in the following:
    &lt;script type="text/javascript"&gt;
    var f = document.getElementById("P1_FOCUS_FIELD").value;
    document.getElementById(f).focus();
    &lt;/script&gt;
    4 - Update your submit process to set the value of P1_FOCUS_FIELD to the ID of the field that you want to receive the focus when the page is reloaded.
    Regards
    Andy

  • Regarding Focus and Validation message on the JDialog

    Hi All,
    Can any body provide the Solution for the below scenario.
    I have a dialog ,on this i have some components like combobx , TextField and check box etc..... and also one OKButton and Cancel button.
    The problem is when i enter some invalid data or with out entering the values in any fields , if i click on ok button a validation message will be displayed stating that perticuler field is mandatory and if i click on that validation message the focus should go to the corresponding field.
    it is not happening some times(i.e the focus is not going to the corresponding field)
    but some times it is happening.
    can u provide a solution or suggest me on this regard.
    Thanks in Advance.
    Regards,
    jeevan.

    Put the request focus code inside this:
    SwingUtilities.invokeLater(new Runnable()
         public void run()
                 //Put the code here to set the focus
    });

  • Regarding validation of Inputfield

    Dear Experts
    I want to allow the user to enter only the digits.(Actually this inputfield is for "Year")
    Please give me the sugeestions.
    Urgent
    Thanks
    Hazrath.G

    Hi Hazrath,
                    Say your attribute name is year of type integer.
    You can convert it as String set it to your model attribute like this:
    wdContext.current<modelnode>().set<attribute>(String.valueOf(wdContext.currentContextElement().getYear()));
    More Info:
    If you want set Min. and Max. values for this input, create a simple type attribute as other forum members specified (Say YEAR).
    Properties: 
    Built-In Type - integer
    Value Constraints:
       Minimum Inclusive  -- MINIMUM YEARS ALLOWED ( e.g.1988)
       Maximum Inclusive -- MAXIMUM YEARS ALLOWED ( e.g.1988)
    Now set the attribute type to this YEAR. Now all the validations are taken care by framework.
    regards,
    Siva

  • Setting focus to InputField in WebDynpro

    Hi All,
    How can I dynamically set focus to a WebDynpro field. API?
    Guys please reply!!
    Dhanya

    you can use requestFocus method where necessary (wdInit method of the view controller?)..
    e.g.
    IModelHeaderElement modelHeaderEmt = wdContext.currentModelHeaderElement();
    IWDAttributeInfo notifNumInfo =
              wdContext.nodeModelHeader().getNodeInfo().getAttribute(IModelHeaderElement.NOTIF__NO);
    wdControllerAPI.requestFocus(modelHeaderEmt, notifNumInfo);

  • Thtmlb:inputfield problam in search view

    Hi Experts,
    i am facing one problem in search view.. my requirement is i have added one field in search view by using <thtmlb:inputfield> tag in .htm.
    when i click on f4 it was displaying popup and selected value will populated in to that field.
    but here how can i capture the selected value and one more thing if i click on search button the selected value is disparaging in that filed.
    plz guide me how can i solve this..
    this is the code i wrote in my .htm.       
                <thtmlb:inputField id               = "PARTNER"
                            showHelp         = "X"
                            helpId           = "CRM_GPM_BUPAP_HELP"
                            f4Title          = "Partner general"
                            helpInputFields  = "PARTNER=PARTNER"
                            helpOutputFields = "PARTNER=PARTNER" />
    i wrote this logic in event.
    DATA: data_input TYPE REF TO cl_htmlb_inputfield,
             ld_fieldid TYPE string.
        me->gv_input_field =   htmlb_event->if_htmlb_data~event_id.
       data_input ?= cl_htmlb_manager=>get_data(
                   request = runtime->server->request
                     name = 'inputField'
                    id = 'PARTNER' ).
         IF data_input IS NOT INITIAL.
            ld_fieldid = data_input->value.
        ENDIF.
    but i haven't get any value in to id_fieldid.
    Thanks & Regards,
    Srinivas

    Hi,
        <thtmlb:inputField disabled    = "<%= enabled %>"
                            id          = "PARTNER"
                            f4Title     = "Partner general"
                            showHelp    = "X"
                            helpOnClick = "PARTNER"
                            focus       = "TRUE"
                            maxlength   = "5"
                            size        = "5"
                            value       = "//your node/PARTNER" />
    After this you can create the 'PARTNER' event in event handler then write the below code.
    then you can capture your value into your Node.
    LR_ENTITY ?= LR_COMPCO->TYPED_CONTEXT->your node->COLLECTION_WRAPPER->GET_CURRENT( ).
       WA_SEARCH-PARTNER = LR_ENTITY->GET_PROPERTY_AS_STRING( IV_ATTR_NAME = 'PARTNER' ).
    you can get the your parner name into WA_SEARCH-PARTNER....
    for more info:
    METHOD EH_ONPARTNER.
       DATA: LR_COMPCO TYPE REF TO ZL_partner_BSPWDCOMPONEN_IMPL.
       LR_COMPCO ?= COMP_CONTROLLER.
       TYPES:   BEGIN OF TY_SEARCH,
                  PARTNER TYPE ZPARTNER,
                 END OF TY_SEARCH.
       DATA:WA_SEARCH      TYPE TY_SEARCH,
            LR_TABLINE     TYPE REF TO TY_SEARCH.
       DATA:  LR_COL         TYPE REF TO IF_BOL_BO_COL,
              LR_VALUENODE   TYPE REF TO CL_BSP_WD_VALUE_NODE.
       DATA: LR_ENTITY      TYPE REF TO    IF_BOL_BO_PROPERTY_ACCESS.
       LR_ENTITY ?= LR_COMPCO->TYPED_CONTEXT->your node->COLLECTION_WRAPPER->GET_CURRENT( ).
       WA_SEARCH-PARTNER = LR_ENTITY->GET_PROPERTY_AS_STRING( IV_ATTR_NAME = 'PARTNER' ).
       IF WA_SEARCH-PATNER IS NOT INITIAL .
    *For Screen
         CLEAR:LR_COL,LR_VALUENODE.
         CREATE OBJECT LR_COL
           TYPE
           CL_CRM_BOL_BO_COL.
         CREATE DATA LR_TABLINE.
         "...create value object with current line for colleciton
         CREATE OBJECT LR_VALUENODE
           EXPORTING
             IV_DATA_REF = LR_TABLINE.
         "...set current line data
         LR_VALUENODE->SET_PROPERTIES( WA_SEARCH ).
         "...add current line to collection
         LR_COL->ADD( LR_VALUENODE ).
         LR_COMPCO->TYPED_CONTEXT->SEARCH->COLLECTION_WRAPPER->SET_COLLECTION( LR_COL ).
         TYPES: BEGIN OF LTYPE_ATTR_STRUCT,
                    PARTNER TYPE ZPARTNER,
                         END OF LTYPE_ATTR_STRUCT.
         DATA: LT_FINAL TYPE TABLE OF LTYPE_ATTR_STRUCT,
               WA_FINAL TYPE LTYPE_ATTR_STRUCT,
               R_PARTNER TYPE RANGE OF ZPARTNER ,
               W_PARTNER LIKE LINE OF R_PARTNER.
         IF WA_SEARCH-PARTNER IS NOT INITIAL.
           W_PARTNER-SIGN = 'I'.
           W_PARTNER-LOW = WA_SEARCH-PARTNER.
           FIND FIRST OCCURRENCE OF '*' IN WA_SEARCH-PARTNER.
           IF SY-SUBRC = 0.
             W_PARTNER-OPTION = 'CP'.
           ELSE.
             W_PARTNER-OPTION = 'EQ'.
           ENDIF.
           APPEND W_PARTNER TO R_PARTNER.
         ENDIF.
         SELECT PARTNER FROM BUT000 INTO TABLE LT_FINAL WHERE PARTNER IN R_PARTNER.
         DATA: LR_TABLINE1     TYPE REF TO   LTYPE_ATTR_STRUCT.
         CLEAR:  LR_COL, LR_VALUENODE.
         CREATE OBJECT LR_COL
           TYPE
           CL_CRM_BOL_BO_COL.
         LOOP AT LT_FINAL INTO WA_FINAL.
           "...create line object
           CREATE DATA LR_TABLINE1.
           "...create value object with current line for colleciton
           CREATE OBJECT LR_VALUENODE
             EXPORTING
               IV_DATA_REF = LR_TABLINE1.
           "...set current line data
           LR_VALUENODE->SET_PROPERTIES( WA_FINAL ).
           "...add current line to collection
           LR_COL->ADD( LR_VALUENODE ).
           CLEAR WA_FINAL.
         ENDLOOP.
         LR_COMPCO->TYPED_CONTEXT->RESULT->COLLECTION_WRAPPER->SET_COLLECTION( LR_COL ).
       ENDIF.
       CALL METHOD LR_COMPCO->IF_BSP_WD_WINDOW_MANAGER~CREATE_POPUP
         EXPORTING
           IV_INTERFACE_VIEW_NAME = 'your interface view name'
           IV_USAGE_NAME          = 'your usage name'
           IV_TITLE               = 'Search Partner'
         RECEIVING
           RV_RESULT              = GR_BSP_POPUP.
       CALL METHOD GR_BSP_POPUP->SET_ON_CLOSE_EVENT
         EXPORTING
           IV_VIEW       = ME
           IV_EVENT_NAME = 'PARTNERSEL'.
       GR_BSP_POPUP->SET_DISPLAY_MODE( IF_BSP_WD_POPUP=>C_DISPLAY_MODE_SURROUNDED ).
       GR_BSP_POPUP->OPEN( ).
    ENDMETHOD.
    Regards
    Srikanth

  • Focus on UI element

    This seems to be a trivial question, but I couldn't find the answer.
    How can you programmaticaly give an ui element the focus or at least make sure it's visible (similar to html anchors) ?
    Thanks

    Hi Pieter,
    You have a Ui Element like inputfield
    (a)If you want to focus this  inputfield then
    IWDInputField input=(IWDInputField)view.get(id of  inputfield);
    input.requestFocus();
    if you want make it visible:-
    input.setVisible(WDVisible.NONE);
    or
    input.setVisible(true);
    Regards,
    Praveen

  • Focus box anomoly (continued from prior IE alpha issue)

    The "standard" PNG fix for IE doesn't work when there are
    JavaScript image
    swaps on the page.
    The "Fix" for it causes the transparent background to 'flash
    white' for a
    second as the image loads.
    Anyone know of any other fixes?
    Here's an example.
    http://www.buddhapada.com/tests/png_mouseover.htm
    Works fine in FF, but you'll see the image background of a
    second in IE.

    Wow...not REALLY not paying attention today.
    Meant to post this here:
    Let's start off with my confession that I haven't a genuine
    clue about how
    this focus stuff works.
    Focus box/lines stuff seems inconsistent all over the place.
    Some sites show
    them, some don't (even without "scrubbing" code) in both IE
    and FF. Safari
    doesn't seem to ever display them, but I have that by
    hearsay, only.
    http://www.buddhapada.com/tests/feral.htm
    The four graphic links across the top of this page will
    display focus boxes
    when clicked in FF or if you tab through them, but the "moth"
    link at the
    right doesn't show the focus box on click or during a tabbing
    cycle and
    during the tabbing cycle there is a point where the focus box
    highlights the
    entire page.
    In IE6 clicking on any of the links will NOT produce a focus
    box, but the
    focus boxes DO appear during tabbing INCLUDING the 'moth'
    link at the right.
    What are the words of wisdom regarding focus box display
    cross browser?

  • BSP Extensions Book - example application

    Hi all!
    I have bought the Book "BSP Extensions: How to master Web reporting with HTMLB" and i've tried to run the example application. But on half the way of the programming (the next chapter is checkbox & radioButton) i'm getting a JScript error that says "childNodes.0.tagName is null or not an object" and it occurs every time i want to create the text of a new treenode by focusing the inputfield.
    I've coded everything exactly like it is in the book so i don't know what's wrong. A little while ago i've searched the SDN forums for that case and found out that there is a SAP Note (949105) about it. After following the instructions and refreshing the cache the error still appeares. Does anyone read the book and faced the same problem?
    (I'm Using the Trial Version of Netweaver 2004s ABAP.)
    Regards
    Mark-André

    hi,
    can you tell me ..what kind of example you are trying..
    there are demo programs which are given by sap..first try it and then sort the error..
    program names :
    SBSPEXT_BSP
    SBSPEXT_HTMLB
    or
    choose bsp application from se80 and search as SB*
    you will find more programs:
    thanks
    jaideep
    if helpful reward points...

  • Facing troubles with "requestFocus()"

    Hi
    Can anyone help me telling what is wrong with my code?. I hv 2 JTextFields and both will hv their values checked when losing focus. My problem is that a MessageDialog is showed telling what's wrong for the user, but then when ok button is clicked, the same messagedialog appears but with no button or message and everything freezes.
    Here's my code
    public void focusGained(FocusEvent e)
    public void focusLost(FocusEvent e)
    if (e.getSource().equals(edtCityCode))
    //check if CityCode is valid or not               
    if (!valid)
    JOptionPane.showMessageDialog(null, "This code is not valid. Type another");
    edtCityCode.requestFocus();
    else if (e.getSource().equals(edtCityName))
    if (edtCityName.getText().equalsIgnoreCase(""))
    JOptionPane.showMessageDialog(null, "You must type field = cityname");
    edtCityName.requestFocus();
    Thanks in advance.

    After reading all over Sun/Google/Yahoo about this bug and the workarounds posted for this problem I finally got to get it to work as per my requirements.
    Following were some of the constraints that I had:-
    1) All screens are already developed and buttons are already coded so I cannot go back and
    substitute extended JButton instance with has altered behaviour regarding focus events.
    So the one possible workaround that for this problem which involved extending JButton was ruled out.
    2) I want to make the IV generic so that it can read from some property file the rules to validate this.
    (I did not include this stuff in the implementation below but if you need that you can ask via email.
    3) I did not liked the idea of altering the basic plaf which was another way how people have worked out their ways from this problem.
    So here is my solution.
    1: Assign an extended verifier SCAInputVerifier to the JTextField/JTextArea. Pass the Container that contains the text field to the constructor of SCAInputVerifier.
    2: First time when the verify() method is called it creates a SCAJFocusListner as listed below. It validates and keeps the result in SCAInputVerifier but always returns true.
    3: As soon as the focus is about to loose to the next component the SCAJFocusListner comes into picture
    and displays the message via JOptionPane.showMessageDialog().
    (Before clicking the Ok button on this error message dialog if the user clicks on any AbstractButton it showed random behaviour.
    This is addressed in point 5)
    (Optional)
    4: As a general rule I we have all Cancel button or Close button closing the JDialog and their name starts with Cancel.
    If the user clicks cancel or close button on the screen user is allowed to go exit.
    5: Now the main problem:If the focus was going to a AbstractButton it was showing weired behaviour.
    It was getting pressed as soon as mouse was over that button.
    This problem is fixed in focusLost() method of SCAFocusListener.
    6: The focus is requested back into the text field.
    * SCAFocusListener.java
    * Created on August 14, 2003, 7:01 PM
    package walgreens.sca.system;
    import java.awt.event.*;
    import javax.swing.*;
    * @author Yogesh Gadge
    public class SCAFocusListener extends FocusAdapter{
    private SCAInputVerifier iv = null;
    public SCAFocusListener(SCAInputVerifier iv) {
    super();
    this.iv=iv;
    public void focusLost(FocusEvent fe) {
    if ( (! iv.isGood()) && iv.getParentPane()!= null && iv.getParentPane().isVisible()) {
    java.awt.Component opp = fe.getOppositeComponent();
    //if cancel or close button
    if (opp instanceof AbstractButton) {
    AbstractButton aBut = (AbstractButton)opp;
    String name = aBut.getText();
    if(name != null && (name.trim().toLowerCase().startsWith("cancel") || name.trim().toLowerCase().startsWith("close"))) {
    return;
    //workaround for bug in JDK 1.4.1 bugID 4342333
    ButtonModel mod = aBut.getModel();
    aBut.revalidate();
    if (mod.isArmed())
    mod.setArmed(false);
    if (mod.isPressed())
    mod.setPressed(false);
    JOptionPane.showMessageDialog(iv.getParentPane(),"Input is invalid.");
    java.awt.Component c = fe.getComponent();
    //fe.consume();
    c.requestFocusInWindow();//InWindow();
    } else
    super.focusLost(fe);
    import javax.swing.*;
    import java.awt.event.*;
    * @author Yogesh Gadge
    public class SCAInputVerifier extends javax.swing.InputVerifier {
    private java.awt.Container parentPane=null;
    private boolean good = false;
    private FocusListener focusListener = null;
    /** Creates a new instance of SCAInputVerifier */
    public SCAInputVerifier(java.awt.Container parentPane) {
    this.parentPane=parentPane;
    public boolean verify(javax.swing.JComponent comp) {
    if (focusListener == null)
    comp.addFocusListener(createFocusListener());
    this.good=true;
    if (comp instanceof javax.swing.text.JTextComponent) {
    javax.swing.text.JTextComponent field = (javax.swing.text.JTextComponent) comp;
    String input = field.getText();
    System.out.println(input);
    try {
    //lets say it is convergence factor
    double d = Double.parseDouble(input);
    if (d < 0.0 || d >=1.0 )
    good=false;
    } catch(Exception e) {
    good=false;
    return true;
    public boolean isGood() {
    return this.good;
    protected FocusListener createFocusListener() {
    FocusListener f = new SCAFocusListener(this);
    System.out.println(f);
    this.focusListener=f;
    return f ;
    /** Setter for property good.
    * @param good New value of property good.
    public void setGood(boolean good) {
    this.good = good;
    /** Getter for property focusListener.
    * @return Value of property focusListener.
    public java.awt.event.FocusListener getFocusListener() {
    return focusListener;
    /** Setter for property focusListener.
    * @param focusListener New value of property focusListener.
    public void setFocusListener(java.awt.event.FocusListener focusListener) {
    this.focusListener = focusListener;
    /** Getter for property parentPane.
    * @return Value of property parentPane.
    public java.awt.Container getParentPane() {
    return parentPane;
    /** Setter for property parentPane.
    * @param parentPane New value of property parentPane.
    public void setParentPane(java.awt.Container parentPane) {
    this.parentPane = parentPane;

  • My shooting setup

    Hi all
    Well after reading through this forum it seems there is a lot of information about how many images should be shot etc. so I thought I would share my setup as I seem to be embarking on a bit of a mission. I need to be really accurate, as the images will be used in photogrammetry, so I am being as scientific as I can be. The camera is a Canon 1ds Mark II, and I have these lenses:
    28mm
    50mm
    85mm
    24-105mm
    24-85mm
    70-200mm
    8mm fisheye
    I have a small studio of approx 16ft in length.
    Primes:
    close-up focus distance: 9 x chart positions, 1 stop aperture increments
    mid focus distance: 9 x chart positions, 1 stop aperture increments
    far focus distance:  9 x chart positions, 1 stop aperture increments
    Zooms:
    close-up focus distance, widest zoom: 9 x chart positions, 1 stop aperture increments
    close-up focus distance, mid zoom: 9 x chart positions, 1 stop aperture increments
    close-up focus distance, tele zoom: 9 x chart positions, 1 stop aperture increments
    mid focus distance, widest zoom: 9 x chart positions, 1 stop aperture increments
    mid focus distance, mid zoom: 9 x chart positions, 1 stop aperture increments
    mid focus distance, tele zoom: 9 x chart positions, 1 stop aperture increments
    far focus distance, widest zoom: 9 x chart positions, 1 stop aperture increments
    far focus distance, mid zoom: 9 x chart positions, 1 stop aperture increments
    far focus distance, tele zoom: 9 x chart positions, 1 stop aperture increments
    Now, not only do I have my work cut out for me, but I doubt I have the space needed. What I would like to know is are all the focus distances really needed? I guess giving how exact we need our profiles to be it is in fact a requirement? Also I thing getting smaller grids will be needed for some of the telephoto and close-up shots seeing as I dont have a huge amount of room?
    Any thoughts will be appreciated.
    Elliot

    Hi Elliot, the first potential big timesaver is to check if the Adobe-supplied profiles work well on your system. For example, with the public Camera Raw 6.2 Release Candidate and Lightroom 3.2 Release Candidate (posted last night), Adobe has Canon lens profiles for all 50 mm lenses except the f/2.5 compact macro, both 85 mm lenses, the 24-105 zoom, and all 70-200 lenses. If these do work well for you, then that takes care of 4 of your 7 listed lenses, including two zooms (which are more time consuming to profile).
    Regarding focus distance: yes, it does matter, but only if you shoot in those conditions. For example, if you never use your 28 mm at minimum focus distance, then it's not worth profiling it at that distance. Consider doing just 2, or maybe even just 1 focus distance.
    When we build profiles internally at Adobe for broad distribution, we really can't assume how a lens will be used (i.e., we can't go around saying, "don't use this lens at minimum focus distance ... !"), so we need to cover the bases and build thorough profiles that will work well under a broad range of field & studio conditions. But for profiles that you're building for your own use, this is not necessarily the case.

  • Installation stops without error

    After a reinstallation of Office 365 on a Win 7 ultimate 64 bit system I am not able to reinstall my Visio 2013 Pro. After inserting the installation disk the setup.exe starts but nothing happens. I tried to start the setup.exe from the DVD by double click
    as administrator but still the same behaviour.
    I also tried to copy the DVD to a local directory and to start the setup but always the same - nothing happens and no error message appears.So what to do now?
    best regards,
    focus 043

    Hi,
    It’s most like that the installation DVD is corrupted. Is the DVD damaged?
    If so, you can download a copy of Visio 2013 from this site.
    http://office.microsoft.com/en-us/products/download-back-up-restore-microsoft-office-products-FX103427465.aspx
    You may need to run “Fix it” to uninstall Visio 2013 before reinstalling it.
    http://support.microsoft.com/kb/2739501
    Regards,
    Greta Ge CHN
    TechNet Community Support

  • Double click inputfield for focus?

    Currently, when a user wants to select an inputfield to enter some data, the user has to click the field twice to be able to enter the data. The first click seems to set focus "around" the inputfield, the second click will enable the cursor and the user can start typing.
    Is there a way to change this to normal form behaviour? So clicking on an inputfield will immediately allow the user to start typing?

    Hi,
    I have exactly the same problem after we applied the SAP Note 1167574.
    And you ? Have you applied this note too ?
    Have you resolved the problem ?
    Thanks to keep us in touch,
    Regards,
    Laurent.

  • Text selected when InputField has focus

    Hi,
    I have a Table, which on press enter jump from one InputField to another.
    How I could do to when the InputField gets focused, the text inside (a zero, because its an initialized integer) were selected and ready to write?
    With this I would like to avoid that user has to delete the zero to write the number he/she wants.
    Thanks!

    Hi
    Try
    Requests to change the keyboard input focus to this view element.
       It is undefined which focus request wins if there are several ones.
       The request may silently fail, but is guaranteed not to throw an exception.
        If this view element is a table cell editor, its occurence in the current
        row (according to the context's lead selection) will receive focus. Similar
        things will happen inside other containers that display multiple occurences
        of the same view element.
    requestFocus();
    Ex: IWDTextEdit a;
           a.requestFocus()
    Regards
    Ayyapparaj

Maybe you are looking for

  • Error in creating a contract

    Hello Experts, I am new to SDN forum. I need all your experts help to enhance my skills in SRM. Currently i am getting an error when i click on Create Contract then error is : "Org Unit Doesn;t Exist" .I checked my user is linked to org structure. I

  • Catalyst 4500-X, VSS, and SVI

    Hello, everybody! I have a proyect to implement the feature VSS, with two catalyst 4500-X, it will be the layer Core/Distribution. So, I want integrate in the catalyst 4500X, Inter vlan routing (SVI)  and vtp domain,  in the layer access, we´ll have 

  • Deep Packet Inspection (DPI) - coping with it and/or defeating it

    Hi, Now that the "DPI Genie" is well out of the bottle (or toothpaste tube) and will never go back to where it came from no matter what, I have been looking for ways and means to: 1- cope with it when it comes time to send/rec emails of minor/modest

  • How to redownload purchased songs?

    Soo...I had to do a system recovery for my computer. Before I did that I backed up my files to my flashdrive. But the thing is my flashdrive only had about 5 gigs left so not everything backed up, including some of my itunes songs. About half of my p

  • PAL DVD WS export: why black bars at sides?

    I am editing a 1920x1080 EXCAM HD sequence in Premiere Pro CS6.01 on Win7x64. I want to export to PAL Widescreen DVD. When I use the PAL WS presets to export from Premiere I get black bars on either side of the MPEG2 DVD footage. Why is this? Both 19