Language Bar Change Option Not Working

  
Hi,
I have created demo for radgrid filter. if I search in first textbox filter column and press enter then focus of control goes to second textbox filter column. I change the language English to Japanese and selecting input mode hiragana
for typing text in filter it works in Firefox but not working in Internet Explorer. I have attached gif file for this problem.
Please provide solution for it.

Hi,
C# forum is only for questions regarding C# language. The best way is to contact the support team of Telerik for help:
http://www.telerik.com/products/aspnet-ajax/grid.aspx
Or you may get more help from
ASP.NET forums.
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Help - space bar on touch not working

    hi - the bottom row of my keypad (space bar etc) does not work in Safari. Seems to work fine on home page - but on Safari and games doesn't work.... Would really appreciate help - my itouch is about 3 years old. thank you

    Have yo tried the standard fixes:
    - reseting the iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restoring the iPod from backup via iTunes
    - Restoring the iPod to factory defaults/new iPod via iTunes

  • Iweb: Why do navigation bar page links not work live when published?

    Why do the navigation bar page hyperlinks not work when site is published? There are no objects or boxes over. Works fine until published live. Help!!!

    this image: http://extravorganza-events.com/extravorganza/Home_files/droppedImage.png
    has a large transparency section above the visible (lower section), crop off the transparency section.

  • Scroll bar on editor not working

    I recently upgraded to phtoshop elments 11.0 to 13.0
    In the editor mode I cannot use the scroll bar. The scroll bar works fine in the orgnizaer mode. I have tried three different mouses and there is no difference.
    Tom Fitch, San Antonio Texas

    I am using Windows 7 Professional
    In the organizer portion the scroll bar moves. When I put my  mouse or
    arrow on the scroll bar and drag it then of course I move through the  different
    rows of folders or rows of pictures once in the photo  bin.
    It was doing it with Photoshop Elements 11.0 and I thought  13.0 might fix
    the problem and the scroll bar did move on the first try but not  since then.
    When I try and load the photo bin and I am choosing the right  folder to
    load the scroll bar just does not move. I can select the right folder  by
    using my up and down arrow or the page up and down and then click on the  right
    folder and then it loads.
    Once I get the right folder of pictures loaded and  once I finish the first
    row of pictures I cannot use my mouse and  arrow to drag the scroll bar
    down to get to the next row of pictures. I can  place my arrow on my mouse
    below the scroll bar and got to the next row but I  usually get only half the
    picture and sometimes only 1/4 of it but I can usually  get it loaded up and
    edit the pictures and move on the next picture but it is  very slow and
    frustrating.
    Any help would be appreciated.
    I protested to an adobe supervisor and I got an e-mail and  somebody is
    supposed to call me tomorrow so hopefully then can log on to my  computer and
    see what I am talking about.
    Sound like something got corruped in the editor mode only. I  tried 3
    different mouses and even the computer mouse and no  difference.
    Tom Fitch
    In a message dated 12/17/2014 5:05:37 P.M. Central Standard Time, 
    [email protected] writes:
    scroll  bar on editor not working
    created  by RKelly_ (https://forums.adobe.com/people/R_Kelly)  in 
    Photoshop Elements - View the full  discussion
    (https://forums.adobe.com/message/7024909#7024909)

  • Wifi option not working in my i phone 4s ios 7.0.2, how to fix it

    wifi option not working in my i phone 4s ios 7.0.2, how to fix it

    Now my wifi is working but not showing the wifi logo on the top

  • ALV GRID Tool bar options not working

    Hello Experts,
    I copied the standard tool bar into my program with the name 'ZSALV_STANDARD' and displaying the output in the grid format in a container with the method set_table_for_first_display
    When I execute the program the standard buttong in the tool bar are not working... Can anyone guide where am I going wrong...
    Here is my code
    DATA :    gr_event_handler TYPE REF TO lcl_event_handler .
      DATA:  threed TYPE i VALUE 1.
      SET PF-STATUS  'ZSALV_STANDARD'.
    * Creating an instance for the event handler
      CREATE OBJECT gr_event_handler .
      TRY.
          CREATE DATA i_table TYPE TABLE OF (viewname).
          ASSIGN i_table->* TO <i_itab>.
          CREATE DATA wa_all LIKE LINE OF <i_itab>.
          ASSIGN wa_all->* TO <wa_tab>.
    *     Selecting data dynamically
          SELECT * FROM (viewname) INTO TABLE <i_itab>.
    *     Building the fieldcatelog
          CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
            EXPORTING
              i_structure_name       = viewname
            CHANGING
              ct_fieldcat            = li_fieldcat
            EXCEPTIONS
              inconsistent_interface = 1
              program_error          = 2
              OTHERS                 = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    *     Making fields editable except key fields
          IF sy-ucomm = 'UPD' OR  sy-ucomm = 'CHANGE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key = space.
                lwa_fieldcat-edit = 'X'.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Making fields editable
          IF sy-ucomm = 'NEW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = 'X'.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
            lh_flag = 'X'.
            CLEAR : <i_itab>.
            DO 100 TIMES.
              APPEND <wa_tab> TO <i_itab>.
            ENDDO.
          ENDIF.
    *     Exclude buttons
          PERFORM exclude_tb_functions CHANGING i_exclude.
          IF g_custom_container IS INITIAL.
            CREATE OBJECT g_custom_container
              EXPORTING
                container_name = g_container.
            CREATE OBJECT grid1
              EXPORTING
                i_parent = g_custom_container.
          ENDIF.
    *     Making all fields non-editable if display mode
          IF sy-ucomm = 'SHOW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = ' '.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
          ENDIF.
          IF sy-ucomm = 'SAVE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key NE space.
                lwa_fieldcat-edit = space.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Displaying ALV Grid
          i_layout-NO_TOOLBAR = 'X'.
          i_layout-edit = 'X'.
          CALL METHOD grid1->set_table_for_first_display
            EXPORTING
              i_structure_name              = viewname
              it_toolbar_excluding          = i_exclude
              i_default                     = 'X'
              is_layout                     = i_layout
            CHANGING
              it_outtab                     = <i_itab>
              it_fieldcatalog               = li_fieldcat
            EXCEPTIONS
              invalid_parameter_combination = 1
              program_error                 = 2
              too_many_lines                = 3.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
    *      Getting the changed data
          SET HANDLER gr_event_handler->handle_data_changed FOR grid1 .
        CATCH cx_sy_create_data_error.
      ENDTRY.
    Thanks alot in advance.
    Sri

    Hello ,
    try
        call method g_grid%->set_table_for_first_display
          exporting
            i_save               = p_save_layout%
            i_default            = 'X'
            is_layout            = ps_layout%
            is_variant           = ps_variant%
            it_toolbar_excluding = pt_exclude%
          changing
            it_outtab            = pt_alv_tab1[]
            it_fieldcatalog      = pt_fieldcat%[].
        call method g_grid%->set_toolbar_interactive.
    regards
    Prabhu

  • Merged WebHelp Pro projects in RH8 - CSH options not working

    Hi -
    We are trying to upgrade from RH7 to RH8. Currently, we have several context-sensitive WebHelp Pro projects that are merged on the RH7 Pro server. To accomplish this, we simply select the "merge projects" check box in the Admin tool. (Nothing is done in the RoboHelp client w/respect to merging as must be performed with non-Pro projects.)
    The master project is master by virtue of being listed first in the Web Administrator. The order of the remaining projects defines their order in the merged Help TOC. The master project specifies two named custom windows and a custom skin. In the WebHelp Pro options for the child projects, we set Skin = Default and Default Window = None.
    The Help implementation is context-sensitive using map IDs. Some have the older context strings, defined in their respective projects' .ppf file. All works as expected in RH7. When a map ID is called from one of our applications, the individual Help topic inherits the master project's custom window and skin. The topic with the specified map ID or context string appears in the right-hand pane of the custom frameset. The TOC lists the topics of all merged projects. We used the RoboHelp-supplied RoboHelp_CSH.js in the design of the Help system. The call looks like this:
    <a
    href="javascript:RH_ShowHelp(0,'http://<ServerURL>/roboapi.asp>MyHelpWindow',HH_HELP_CONTEXT,'5108')">Help</a>
    We don't specify a project name and the server is happy (still resolves the map ID). For RH8, we have set things up identically on the server. However, the 'child' projects are not inheriting the 'look' (window/skin) defined in the master project. Either that, or the map IDs are not resolving. We also have a single-pane window defined in the master project for Help pop-ups, which now insists on appearing with the other custom window's frameset (button bar, TOC, and topic pane). We have changed nothing, other than importing the RH7 projects into the RH8 client. The server's "merge" check box is selected. The call to Help for RH8 needed to change and so far looks like this:
    <a href=http://<serverURL>/<context>/server?area=Area_51&ctxid=5108&wnd=MyHelpWindow>Help</a>
    Note that we haven't tackled using the Robohelp_CSH.js file that is packaged with RH8 yet. First things first, i.e. make sure server is running correctly and we have devined the new parameter syntax correctly. The question is, what needs to change for our Help application to work in RH8? The link specified above displays the correct HTML frameset, but the topic pane is empty/blank. If we leave out wnd=MyHelpWindow, we get the correct topic, but it apears in the user's default browser window, with no TOC. Also, if we target the single-pane window I mentioned above, it appears in the expected size and location defined in the master project, but it is multi-paned (again, with a blank topic pane).
    Here is one observation. We did find that in the RH7 Web Admin, selecting the master project and clicking View Project shows the master's default topic in the custom frameset. Doing the same for some child projects, they display their default topic in a plain window (no frameset). In RH8, many child projects would display the default RoboHelp frameset and a 404 error in the topic pane. By carefully investigating the child projects' NewWindow settings, we've found that RH8 is particularly sensitive if those settings are anything other than having 'One Pane' and 'Use Default Browser Settings' selected.
    Does anyone know why this is still not working? Any help appreciated.

    Hi RoboHobo,
    Unfortunately my previous post got a little messed up. I wanted to point you to link http://forums.adobe.com/message/2220336#2220336 , but somehow the url for that hyperlink was set incorrectly and it pointed to another post of mine.
    Anyways I hope this one gets posted properly. The workaround I was talking about is this(just a copy paste from my other post) :
    The page that you get has javascript code to open a popup window to launch page containing context sensitive help. If you view source of the page you get for CSH link, you will find it has javascript code like :
    <script language="JavaScript" src="/robohelp/robo//server/resource/window.js"></script>
    <script language="JavaScript">
    //function Main()
            var cWnd = new CWindow();
            cWnd.m_bUseProp = 1;
            cWnd.m_strFrameName = 'DHW_TestCSH|RHS_CSH';
            cWnd.m_strURL  = '/robohelp/server?%26mgr%3Dagm%26agt%3Dwsm%26wnd%3DTestCSH%7CRHS_CSH%26tpc%3D%2 Frobohelp%2Frobo%2Fserver%2Fgeneral%2Fprojects%2FTestCSH%2FTopic1.htm%26ctxid%3D 2%26project%3DTestCSH';
            SetRect( cWnd, 5, 5, 90, 90, 0, 0, 0, 0 );
            SetProperty( cWnd, 1, 1, 0, 1, 1, 1, 1 );
            Execute( cWnd );
    </script>
    May be you have popup blocker enabled in your browser and that’s why popup window containing the help doesn’t open up.
    The reason its launched in a separate browser window is so that CSH window properties specified in help layout can be applied on the new window.
    If you have to do away with the popup window and want the page to open directly by entering the URL, then there is a workaround, but in that case your CSH window won’t have the properties specified in Webhelp Pro window used while publishing Webhelp Pro to RoboHelp Server 8.
    The workaround is as follows:
    1) Backup <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ie_iframe.asp and <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ns_window.asp
    2) Stop Tomcat service
    3) Edit <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ie_iframe.asp and <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ns_window.asp and copy following text in these files:
    <html>
    <head>
    <meta http-equiv="Refresh" content="0; url=<%=strWorkspaceURL%>">
    </head>
    <body>
    <font face="Verdana, Arial, Helvetica" size="2">The help page you are looking for can be found at <a href="<%=strWorkspaceURL%>">here</a>.</font>
    </body>
    </html>
    4) Delete all files in <RHS8_Install>/robo/server/resource
    5) Start tomcat service again
    Now the CSH url should take you directly to the help page you are looking for.
    Regards
    Tulika.

  • Complaint - Netflix and Youtube (internet option) not working on Apple TV 2 - Please advise

    Netflix and Youtube (internet option) is not working on Apple TV 2 I bought - please advise how to fix this.  Please note this is not to do with signing in as the internet menu and option to sign in is not given at all on screen/within ATV2.  The only menu options which appear on screen are "computer" and "settings" and nothing else.
    I have read from some other posts this may be because of the country in which I am located (currently the UAE) - this of course is not an acceptable excuse and if the real reason I hope Apple will fix this immediately.  From the box I bought the description on the reverse side of the packaging clearly states "Plays movies and TV shows from Netflix, live and archived games from MLB, NBA, and NHL, and videos from YouTube and Vimeo".
    If it is a country specific/territory issue then the packaging must be changed for countries in which this does not work as this product is being missold to customers, especially as having the option to stream Netflix, YouTube and Vimeo is one of its unique selling points - without which I would not have bought it in the 1st place!
    Currently very disappointed in Apple (normally a complete Apple fan!)
    Any help appreciated (positive comments only thank you).

    In reply to the comment "You seem to be saying that the box that you have is different in some way".  I'm actually not saying that at all as I have no idea what your box says and therefore can't comment. 
    And unless you're on the packaging design or distribution teams it would be a giant leap to presume every single box around the world is the same based on the product being the same.
    As a marketing person I know companies of all sizes and shapes tailor their products to cater for individual markets.  E.g. coca cola cans have different designs based on distribution location and languages used in particular countries and even the product itself can differ, although this may not be the case with Apple of course.
    I'm simply describing what is on my box and I don't neccessarily mean to be abrupt however I certainly wouldn't waste my time typing on this forum to say the box says something when it actually does not.
    Let me know if you can postively affect the outcome of this problem/help in someway and I'll be sure to send the image.
    Thanks.

  • 'Get All New Data Request by Request' option not working Between DSO n Cube

    Hi BI's..
             Could anyone please tell me why the option ' Get one Request only' and  'Get All New Data Request by Request' is not working in DTP between Standard DSO and InfoCube.
    Scenario:
    I have done the data load by Yearwise say FY 2000 to FY 2009 in Infopackage and load it to Write-optimised DSO (10 requests) and again load Request by request to Standard DSO and activate each request. I have selected the option in DTP's to  'Get All New Data Request by Request' and its working fine between WDSO and SDSO. But not working between Cube and SDSO. While Execute DTP its taking as a single request from SDSO to Cube.( 10 request to single request).
    Regards,
    Sari.

    Hi,
    How does your DTP setting looks like from below options ? It should be change log, assuming you are not deleting change log data.
    Delta Init. Extraction from...
    - Active Table (with archive)
    - Active Table (without archive)
    - Archive ( full extraction only)
    - Change Log
    Also if you want to enable deltas, please do not delete change log. That could create issue while further update from DSO.
    Hope that helps.
    Regards
    Mr Kapadia
    *Assigning points is the way to say thanks*

  • InfoPath 2013 - Rich Text box - Expand to show all text option not working

    I have create an InfoPath form and created a view which will be used for printing. I have a rich text box in this print view and the scroll option for this rich text box is set to "Expand to show all text". However, it is not working and it doesn't
    expand the size of the text box based on the content length.
    same thing used to work in InfoPath 2010.
    Any suggestions?
    Thanks,
    Neelesh

    Hi Wendy,
    Here are the steps I have used:
    1. On default view added a rich text box.
    2. Created another view called Print and mapped it to the same Field which I added to default view
    3. Set the Wrap text and Expand to show all text on both the Rich Text Box Properties - in default view and in Print
    view. Also set the height of the rich text box to auto.
    4. Set the print views as the print view for default view
    5. Deployed the form to SharePoint Form Library
    6. Opened the form in browser
    7. Entered the content in the rich text box in default view. It expands well if I have much content
    8. Clicked on Print preview and that opens up the print preview and it shows the rich text box only one line in height and with scroll bar
    I missed to mention that it is a web browser enabled form and I am using InfoPath 2013 and SP 2013.
    It does work fine in InfoPath client.
    Thanks.

  • Click the lock to make changes is not working. Lion 10.7.2

    I cannot make any preferences' changes that require clicking on the lock. When I try to click on the lock it simply does nothing and remains locked. I've tried doing a permission repair using disk utility and I cannot create another admin account because that requires opening the lock in Users&Groups. Also, when I login into root, then the lock is also locked.
    The problem began when I updated to Lion.
    I've had no luck finding a solution in forums.

    i have the same issue,
    summary : at mine clicking the lock at any kind of program does not work at all, not working in system pref,
    not working at ''get info'' window, not working in any other kind of lock, i tried defragging via idefrag but that couldn't work because it needed a lock to be opened as well, i can't move my files to some folders, getting the ''The operation can’t be completed because an unexpected error occurred (error code 100022).''
    plus when i log out, cannot log in because when i type my password it accepts it but then nothing happens, i had a root account as well but i can't enter it and can't create again because of the lock, but when i log in with guest account(no pass required) i can make changes via clicking the lock and filling in admin username and password in system preferences. and i created a new admin account in guest account by filling admin info for authorization in system preferences > users&groups , set no password, logged out but could not log into that account as well. my system is set to login to my account when the system starts.
    so this is what i get with the clean display in console, opening system pref, then clicking users&groups, then clicking the lock. this is system.log
    Jun  6 04:46:06 idiyot System Preferences[4902]: kCGErrorIllegalArgument: CGSDeviceCreate: Invalid window
    Jun  6 04:46:06 idiyot System Preferences[4902]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jun  6 04:46:06 idiyot System Preferences[4902]: Failed to create window context device
    Jun  6 04:46:06 idiyot System Preferences[4902]: CGWindowContextCreate: failed to create window context delegate.
    Jun  6 04:46:06 idiyot [0x0-0x90090].com.apple.systempreferences[4902]: Jun  6 04:46:06 idiyot.local System Preferences[4902] <Error>: Failed to create window context device
    Jun  6 04:46:06 idiyot [0x0-0x90090].com.apple.systempreferences[4902]: Jun  6 04:46:06 idiyot.local System Preferences[4902] <Error>: CGWindowContextCreate: failed to create window context delegate.
    Jun  6 04:46:06 idiyot System Preferences[4902]: _initWithWindowNumber: error creating graphics ctxt object for ctxt:0x16bdb, window:0x0
    Jun  6 04:46:06 idiyot System Preferences[4902]: CGPixelAccessLock failed!
    Jun  6 04:46:07 idiyot System Preferences[4902]: Error loading /Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin/Contents/MacOS/TASCAM_US 122L_US144:  dlopen(/Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin/Contents/MacOS/TA SCAM_US122L_US144, 262): no suitable image found.  Did find:
                        /Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin/Contents/MacOS/TASCAM_US 122L_US144: no matching architecture in universal wrapper
    Jun  6 04:46:07 idiyot System Preferences[4902]: Cannot find function pointer CreateAudio for factory DB8AEA2A-E42F-11DA-B71D-000A95B009DC in CFBundle/CFPlugIn 0x400b38f00 </Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin> (bundle, not loaded)
    then after, i do the same with var/log/secure.log
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in od_record_check_pwpolicy(): retval: 0
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Establishing credentials
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Got user: alicankaralar
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Context initialised
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Got euid, egid: 0 0
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done getpwnam()
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done setegid() & seteuid()
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): pam_sm_setcred: krb5 user alicankaralar doesn't have a principal
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done cleanup3
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done seteuid() & setegid()
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done cleanup4
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): pam_sm_setcred: no domain found skipping
    Jun  6 04:48:29 idiyot com.apple.SecurityServer[29]: UID 501 authenticated as user alicankaralar (UID 501) for right 'system.preferences.accounts'
    i tried repairing disk, permissions, both in system and recovery volume, and i just upgraded to 10.7.4, but the problem was present in 10.7.3, i noticed it two days ago and i just upgraded hoping that would solve the problem.
    edit: i have found out that my problem is best described here, not the real concern of the OP but at the 4th option they say its a netinfo database problem, and diagnostics are the same problems that occur to me of that option but the system they're talking about is 10.1.5, i guess things have changed since then, but the problem is the same . http://macosx.com/forums/mac-os-x-system-mac-software/20630-cant-click-click-loc k-make-changes-button-when-installing.html
    hope you can help
    thanks in advance

  • Menu Bar and Keyboard not working

    Hi,
    My Ipad has encountered some very annyoing issues. Worked fine for 4/5 weeks since purchase and now this has started to happen.  I am unable to use Menu Bar at top of screen when Ipad is held in Portrait position. For example when in Safari, cannot input new email address, use back button, use X button. And its same with other applications - when in settings, the options on menu bar at top are not working - As if its Greyed out and not accessible.  When I flip Ipad into Landscape position, these options on Menu Bar are then working - very fustrating.
    Also same issue affecting keyboard. When holding Ipad in landscape position some keys do not work and they do when Ipad flipped back into Portrait position.
    Means i am constantly turning Ipad around in my hand endlessly trying to get it to function making it pointless to use. Only setting that I can see that may be affecting this is Lock rotation - but same issue with this selected or not.
    Anyway any help appreciated as Im not very tech savvy and only have Ipad few weeks. I've downloaded no apps, only used it for browsing internet so far. I have taken some photos and videos and really would hate to lose those.
    All comments appreciated! Thanks in advance.

    Forgot to mention that Ipad also keeps telling me that I cannot get Mail when I click on Mail icon - That Connection to server failed?

  • Apply changes button not working as expected

    Hi
    I have a page, this page has some fields and a drop-down list where it has a projectname as the values and when I change a value in the drop-down list and click on "Apply Changes" button it does update the table and the changes can be viewed on the page ............. but when I have created a copy of this same page and changed the select statement of the drop-down list and in order to change the year from the drop-down list and click on apply changes then it does not update the table or changes are not reflected on the page.... am I doing soemthing wrong somewhere , but not sure where !
    Can anyone know what could be the reason ....?
    thanks

    Hi Nancy,
    That could be the case, but I tried it multiple times during the day and it was not working. I think I would have notice it if I "missclicked" it like 10 times in a row. I normally use this option more than once a day and it works. But If it happen again, I'll pay attention to that.
    Thanks!

  • Language specific template is not working

    Hi all,
    I have converted AR invoice report to xml. which has a standard template and language specifis tempalte.
    while running in development instance i use to select the language specific template using the options button in SRS. it works fine.
    but same thing when i try to do ti in QAT, it is not working it is picking the language specific template. even though when i manually select the language specific template while submitting but the standard template is assigned.
    Please help me to solve this isssue.
    Thanks
    Rajesh

    Thanks Rajesh for posting the solution you found. I ran into the same problem then went into the concurrent program definition for the invoice and removed the MLS Function and now when I choose a different language template it works.
    Thanks,
    Ken

  • Adobe form translation changes do not work for second time

    Hi Team,
    i am translating adobe form from EN to TR and it was successful for first time and all the changes were working correctly then again i have translated all the texts and checked however then it was only translating fields which were translated in first try.
    I am really confused and please help me here i am not really sure what exactly to do .
    i have checked below note however not getting what to delete exactly .
    i have acttached the note  data below please help <removed by moderator>.
    1294146 - Problem translating rich texts in PDF based forms (Adobe)
    Message was edited by: Manish Kumar

    HI Lande,
    There is nothing to delete. Here is what you should do:
    Following procedure applies to both symptoms:
    1. Open the corresponding form in the original language in change mode in Form Builder
    2. Choose the Layout tab of Form Builder to open the form layout in Adobe Designer.
    3. Identify and select the concerned text element in the layout so that it will be highlighted in the hierarchy tree of the Adobe Designer
    4. Go to the XML Source tab of the Adobe Designer
                  The XML source shows the section of the selected form element.
         5. Go to the appropriate <exData/> element and delete the occurrence of attributes
         xft-xliff:id or xliff:rid
    6. Leave the XML source tab and save the changes.
    7. Activate the form.
    Regards,
    Ashvin

Maybe you are looking for

  • Itunes failed to respond - solution anyone?

    hey guys,. There is a problem with my iTunes. problem started ytd when i plugged in my iPhone4, then there was no respond. so i unplugged it then repeated the same procedure, still nth happened. So i rebooted my computer and tried again, nothing happ

  • Where are my itunes videos i downloaded

    where do i find my itunes videos that i downloaded from my computer onto my ipad on my ipod they are on the "iPod" app but the music app on the ipad doesnt have my videos

  • Open EasyDMS from cProjects

    hi, I need to call transaction from cProjects to open Easy DMS. I need the configuration settings. Regards, Reema.

  • TIBCO consumer, WebLogic JMS, reconnecting

    We're currently running TIBCO 7.2 processes with WebLogic 7 as the JMS and DB connection factory.           When using weblogic.jar to access JMS, we have discovered that TIBCO seems to loose connection entirely if a JMS server node dies, even when u

  • Coloured portion in XY graph

    Dear All, I am trying to build a vi which starts to find the average of data points. The starting point is specified with the no of points taken for the averaging. I like to have a coloured region - a line to be shown in the XY graph where the s