Cannot access textfield value in another page

Hello, I thought it would be simple and straightforward, but I hit a wall.

I can't access the values from another page in a script.

I'm trying to set a value of a text field to the value of a text field which is in another page.

I have the click event (just to test):

eApp.ENB - 7-07 - CAGAIN_Page_5.a3z_data_AdditionalInfo::click - (JavaScript, client)

this.rawValue = eApp.ENB - 7-07 - CAGAIN_Page_4.AccountNumber.rawValue;

He does not get the value.

But if I copy create a field on the same page (page 5 here) with the same information, I can access

with this.parent.AccountNumber.rawValue;

I can make it work, by copying the textfields on the page and in hiding, then using their value.

but it seems dirty and useless.

I just want to be able to access the fields on another page, I thought it would be as easy as form.page4.accessthisvalue

Any help is VERY appreciated, been banging my head for a moment loong.

Hello

It should not be a problem doing this, you can reference a field anywhere on the form.  You get script errors?  My first guess would be to rename the ENB-7-07-CAGAIN_Page_4 field so that it doesn't have the dash inside character, he might try to subtract 7 variable he thinks is called BNB.

Concerning

Bruce

Tags: Adobe LiveCycle

Similar Questions

  • To access the APEX_COLLECTIONS on another page

    Use: APEX 5

    One of my app pages (Page 12), I have a dynamic action that calls upon request AJAX callback process.

    The code of the dynamic action has the javascript call:

    var arr_f01 = [];

    () $("input[name='f01']:checked").each

    function() {}

    arr_f01.push ($(this).) Val());

    });

    (apex). Server.Process

    "Lines Checked process."

    {f01: arr_f01},

    {the data type: 'text',}

    Async: false,

    success: {function (pData)}

    $s ("P12_SELECTED", pData);

    }

    });

    The recall AJAX process is:

    Controlled process lines

    declare

    l_f01 varchar2 (2000);

    Start

    APEX_COLLECTION. () CREATE_OR_TRUNCATE_COLLECTION

    p_collection_name = > 'TEST_COLLECTION');

    l_f01: = ";

    delete from lrg_symptoms_select;

    because me in 1.APEX_APPLICATION. Loop G_F01. Count

    insert into lrg_symptoms_select values (APEX_APPLICATION. G_F01 (i));

    l_f01: = l_f01 | APEX_APPLICATION. G_F01 (i) | «, » ;

    end loop;

    APEX_COLLECTION. ADD_MEMBER)

    p_collection_name = > 'SPLIT_SYMPTOMS ',.

    p_c001 = > l_f01);

    Select c001 in: l_f01 of APEX_COLLECTIONS where collection_name = "TEST_COLLECTION";

    HTP.PRN (l_f01);

    commit;

    end;

    I have 2 questions here:

    1. After this process, I call a modal dialog (Page 9) page at the click of a button. The modal dialog box is to have an area of report that is supposed to display the data of this APEX_COLLECTION

    Select c001 in APEX_COLLECTIONS where collection_name = 'TEST_COLLECTION';

    But I get the following error

    Failed to parse the SQL query:

    ORA-00933: SQL not correctly completed command.

    How can I access the collection on the page of the modal dialog box?

    2. the value of the page (P12_SELECTED) in dynamic action element is not visible in the session state.

    The value is displayed on the page but when I check it in the session, it is null. Also when I pass this value to another page, it is delegated to as NULL.

    How to set the value of page element in the session?

    Thanks in advance

    Hina

    844372 wrote:

    Update your forum profile with a recognizable username instead of "844372": Video tutorial how to change username available

    I have 2 questions here:

    1. After this process, I call a modal dialog (Page 9) page at the click of a button. The modal dialog box is to have an area of report that is supposed to display the data of this APEX_COLLECTION

    Select c001 in APEX_COLLECTIONS where collection_name = "TEST_COLLECTION";

    But I get the following error

    Failed to parse the SQL query:

    ORA-00933: SQL not correctly completed command.

    How can I access the collection on the page of the modal dialog box?

    Remove the ';' the query.

    2. the value of the page (P12_SELECTED) in dynamic action element is not visible in the session state.

    The value is displayed on the page but when I check it in the session, it is null. Also when I pass this value to another page, it is delegated to as NULL.

    How to set the value of page element in the session?

    Set the value of the element in the recall process and use it as the return value:

    :p12_selected := ...;

    I can't integrate it in your code because I don't understand. Why the TEST_COLLECTION is created and used in a query, but the data added to the collection of SPLIT_SYMPTOMS?

  • I want to save my outlook.pst file but get the following error message:-impossible to copy outlook: the process cannot access the file because another process has locked a portion of the file.

    I want to save my outlook.pst file but get the following error message:-impossible to copy outlook: the process cannot access the file because another process has locked a portion of the file. How can I unlock it please?

    You have Outlook open when you save? You need to close.

    Hope this helps

    Post back if necessary

    ___________________________________________________________

    If this post can help solve your problem, please click the 'bookmark' or 'Yes' to this message button. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How to make a multiple numeric value to another page

    Dear Experts,

    Apex 4.1

    Oracle 11g

    I would like to pass multiple numeric value to another page, as below:

    P1_ID = (11,22,33) POINT Page1 depend on what users chose

    P2 SQL: SELECT * FROM TABLE WHERE ID IN (11,22,33), ID is numeric fields.

    but the PAGE 2 to show the error invalid number, how to fix, please help me.

    Thanks and greetings

    Yong Huang wrote:

    Dear Experts,

    Apex 4.1

    Oracle 11g

    I would like to pass multiple numeric value to another page, as below:

    P1_ID = (11,22,33) POINT Page1 depend on what users chose

    P2 SQL: SELECT * FROM TABLE WHERE ID IN (11,22,33), ID is numeric fields.

    but the PAGE 2 to show the error invalid number, how to fix, please help me.

    This is the classic problem 'variable IN the list' (I have no idea why this misunderstanding is so widespread. Always seemed obvious to me that it doesn't). In

    select * from table where columnvalue in (7788, 7839, 7876)
    

    (7788, 7839, 7876)is a list of expressions and the predicate is evaluated as a membership condition.

    In

    select * from table where columnvalue in :P1_X
    

    :P1_Xis a scalar string, unable to contain multiple values.

    In a report of type APEX, a source report of the body of the PL/SQL function returning a SQL query with lexical substitution can be used to produce a "variable list:

    return 'select * from table where columnvalue in (' || :P1_X || ')';
    

    where P1_X contains less than 1000 values, has been disinfected to code SQL injectionand string values are properly cited.

    Some people suggest the following approach, that will work also in interactive APEX reports:

    select * from table where instr(':' || :P1_X || ':', ':' || columnvalue || ':') > 0
    

    However, it is underperforming because it eliminates the possibility of using the index optimizer or the size of the partition in the execution plan.

    See various elements in the list to ask Tom and imitating the channel to the table using sql features for effective solutions.

  • JavaScript: to pass values to another page

    Hi all

    I HAV an interactive report. If I clik on a particular line, who has the rank of values must be sent to another page (via javascript)

    I found this forum https://forums.oracle.com/thread/2467579 in which they hav used to send mail.

    but I wanted to pass those values to another page throug javascript bz, I HAV installed a nd wrking her under right clik plugin.

    my javascript function is,

    function func (action, el, pos)

    {

    Window.Location ="http://apex.oracle.com/pls/apex/f?p=71510:2: & SESSION.: 2:P2_X, P2_X2:'+ $(el).children('td[headers="EMPNO"]').text () + ',' + $(el).children('td[headers="ENAME"]').text ()";

    }

    Here I HAV it redirected to page 2 and on the 2nd page I HAV 2 elements used to get these values.

    $(el).children('td[headers="EMPNO"]').text () + -> is to fetch the empno of that particular line and the same for the name.

    But if I click on the right button clik, no action that happens...

    but his work well, if I use the function as,

    function func (action, el, pos)

    {

    Window.Location ="http://apex.oracle.com/pls/apex/f?p=71510:2: & SESSION. » ;

    }

    so somewhere will not passing the values in the URL, I guess...

    and I HAV used al d above things in

    http://Apex.Oracle.com/pls/Apex/f?p=71510:1 (username: test / paswrd: pex14gm)

    pls help me...

    Thanks in advance

    Try like this.

    function func (action, el, pos) {}

    var empNum = $(el).children('td[headers="EMPNO"]').text ();

    eName var = $(el).children('td[headers="ENAME"]').text ();

    Window.Location = "http://apex.oracle.com/pls/apex/f?p=71510:2: & SESSION.: 2:P2_X, P2_X2:" + empNum + ','+ eName; "

    }

    It looks simple and neat.

    If you still get no view me details of the workspace.

  • Network - cannot access one system to another in Windows 7

    In the cable system in my office, we can not able to access one system to another? His error message "cannot find the path of the network".

    Hi Jothisivalingam,

    -You're on a domain network?

    There are a number of reasons why you can't connect to other computers on your home network, or you can't share files and printers with them. I suggest you to see Help links and check if it helps.

    Why can't I connect to other computers?

    http://Windows.Microsoft.com/en-CA/Windows7/why-can-t-i-connect-to-other-computers

    See also:

    Why can't I access my home group?

    http://Windows.Microsoft.com/en-CA/Windows7/why-cant-i-access-my-HomeGroup

    Let us know the status of the issue. If you need help, please after return. We will be happy to help you.

  • Cannot access the value of parameter task flow when type java.lang.string

    Hi all

    I use Jdev 11.1.1.6.0 version.

    Here's the scenario. I enclose the workspace.

    A taskflow (testScope1TF) simply have 2 obligatory parameters corresponding type is String and ArrayList.

    This stubborn taskflow placed as a region in a pop up (p1) in a fragment (testScope2Fragment.jsff).

    Have a command to link to testScope2Fragment.jsff and from there, I'll put the value of the parameter.

    Pop until I can access the value of the ArrayList, but for string, it is show null. However all these setting set the same bean. What is the reason for the string parameter showing null?

    Can anyone help to understand this strange behavior.

    Here is the link to sample workspace

    https://drive.Google.com/file/d/0b-8Suq_hutEhNE01blZFUnlQdzQ/view?USP=sharing

    To run the example - ScopeTestPage.jspx run-> click on commandLink 1 -> press the commandButton control pop up 1.

    In output integrated wls console like below.

    ------------------------------------------------------------------------

    Table list size: 2

    String value parameter: null

    Here's the code-testScope2Fragment.jsff.

    <? XML version = "1.0" encoding = "UTF - 8"? >

    " < = xmlns:jsp jsp:root ' http://Java.Sun.com/JSP/page "version ="2.1" "

    ' xmlns:af = ' http://xmlns.Oracle.com/ADF/faces/rich "" "

              xmlns:f=" http://Java.Sun.com/JSF/core ">

    < af:panelStretchLayout id = "PSL1" >

    < f: facet name = "center" >

    < af:panelGroupLayout layout = "scroll".

                               xmlns:af=" http://xmlns.Oracle.com/ADF/faces/rich "" "

    ID = "pgl1" >

    < af:commandLink text = ' commandLink 1 ' id = 'cl1' partialSubmit = 'true '.

    actionListener="#{viewScope.TestScope2Bean.tesctScope2Method}"/ >

    < af:popup id = binding = "#{"p1"viewScope.TestScope2Bean.viewScopePopUp}" >

    < af:dialog id = "d1".

    title = "Pop of the scope on the view upwards the Value: #{viewScope.TestScope2Bean.testScopeView String}" >

    < af:region value = "#{bindings.testScope1TF1.regionModel}" id = "r1" / > "

    < / af:dialog >

    < / af:popup >

    < / af:panelGroupLayout >

    <!-id = "af_one_column_stretched"->

    < / f: facet >

    < / af:panelStretchLayout >

    < / jsp:root >

    public class TestScope2Bean {}

    String testScopeView = null;

    ArrayList < String > testScopeViewList = new ArrayList < String > ();

    Private RichPopup viewScopePopUp;

    public TestScope2Bean() {}

    Super();

    }

    public void tesctScope2Method (ActionEvent actionEvent) {}

    Add the code in the event here...

    this.setTestScopeView (In ViewScope Test");

    testScopeViewList.add ("sjdjshdsj");

    testScopeViewList.add ("cdsfdsfsf");

    RichPopup.PopupHints applyHoldspopUpHints = new RichPopup.PopupHints ();

    this.getViewScopePopUp () .show (applyHoldspopUpHints);

    }

    {} public void setTestScopeView (String testScopeView)

    this.testScopeView = testScopeView;

    }

    public String getTestScopeView() {}

    Return testScopeView;

    }

    {} public void setViewScopePopUp (RichPopup viewScopePopUp)

    this.viewScopePopUp = viewScopePopUp;

    }

    public RichPopup getViewScopePopUp() {}

    Return viewScopePopUp;

    }

    {} public void setTestScopeViewList (ArrayList < String > testScopeViewList)

    this.testScopeViewList = testScopeViewList;

    }

    public ArrayList < String > getTestScopeViewList() {}

    Return testScopeViewList;

    }

    }

    Thanks in advance.

    I took as look at your code. The problem is that you use a popup in the region and regions have a bit different (refer to http://www.oracle.com/technetwork/developer-tools/adf/learnmore/67-queryform-in-popup-253861.pdf) in the regions. Must be addressed the refreshment of the ifNeeded region to make your sample (see image below):

    Timo

  • How to change the value from another page

    I'm filtering province in my application based on a province selected in the home page (P16), however the user can submit a form that has a province that and after that, all the content must be filtered according to the selected province 'new '. So I'm in the P7 and after submitting the form, I would need to change the P16_PROVINCE - which belong to another page (P16).

    but do not know how,
    Any help?

    Mehrdad says:
    Thanks, VC, but I need to have a trigger to change the P16_PROVINCE after submitting the form, so that one must be changed according to what the user does on a form...
    After he submit the form, I have my game P7_PROVINCE, which is fine, but AFTER the selection, I need to change the P16_PROVINCE (which is used as a global variable to filter my records...)

    Add a plsql page 7 page process and submit the game it runs - as below

    //assign the value of P7_PROVINCE into P16_PROVINCE
    :P16_PROVINCE := :P7_PROVINCE;
    

    See http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/concept_ses_val.htm#HTMDB03012

  • Cannot access a value stored in a text field

    I created a small test page to try to understand how a piece of javascript works, well in fact it does not. All I'm trying to do is display the value entered in a text field in a form, and it does not

    SCRIPT5007: Failed to get the value of the 'value' property: object is null or undefined

    temp.php, character 39 line 1

    The line that it is a failure is

    x = document.getElementById("otherChoice").value;

    The page can be seen here www.hollisterairshow.com/temp.php

    I don't understand why he thinks that the text field is not defined when it is clearly. I use DW CS4 and IE9.

    Thanks for the pointers, you may have.

    Tony

    You must add a tag to your input field.

    you have:

    Apples
    you need: Apples
  • How Textfield text on another page qml property access

    Hello

    I started 10 BB development recently and need help. I searched this forum but could not find some information exactly related to my problem (unlike only), or I missed something from basically. My main.qml, I want to access the text property of the textfield of the InputControl.qml to be used as a parameter in my SQLQuery (attached object). I tried to use the fieldname method alias property, but it does not work. I can't feature outside. Here is my code:

    hand. QML

    import bb.cascades 1.4
    import bb.cascades.datamanager 1.2
    import bb.system 1.0
    import bb.data 1.0
    
    Page {
    
        id: root 
    
        titleBar: UIControls {
        }
    
        //! [0]
       content: Container {
    
            leftPadding: ui.du(2)
            rightPadding: ui.du(2)
            topPadding: ui.du(2)
            bottomPadding: ui.du(2)
    
            InputControl {
            }
    
            // The ListView that's used to display the artist data
            //! [1]
            ListView {
                id: myListView
    
                //property variant dq: defaultDataQuery
                // Associate the list view with the data model that's defined in the
                // attachedObjects list
                layout: StackListLayout {
                    headerMode: ListHeaderMode.Sticky
                }
                layoutProperties: StackLayoutProperties {
                    spaceQuota: 1.0
                }
                horizontalAlignment: HorizontalAlignment.Fill
                verticalAlignment: VerticalAlignment.Fill
    
                listItemComponents: [
    
                    ListItemComponent {
                        type:  "item"
    
                        Container {
                            Label {
                                text: ListItemData.Japanisch
                                layoutProperties: StackLayoutProperties {
    
                                }
                                topMargin: 5.0
                                textStyle {
                                    base: SystemDefaults.TextStyles.TitleText
                                    fontWeight: FontWeight.Bold
                                    color: Color.create("#7a184a")
                                }
    
                            }
                            Label {
                                text: ListItemData.Lesung
                                textFit.maxFontSizeValue: 9.0
                                textStyle {
                                    base: SystemDefaults.TextStyles.TitleText
                                    fontWeight: FontWeight.Normal
                                    color: Color.create("#ff1818e9")
                                }
    
                            }
                            Label {
                                text: ListItemData.Deutsch
                                textStyle {
                                    base: SystemDefaults.TextStyles.TitleText
                                    fontWeight: FontWeight.Normal
                                }
    
                                multiline: true
                                textFit.maxFontSizeValue: 8.0
                            }
                            Divider {}
                        }// Container
                    }
                    // Use a standard list item to display the data in the model
                ]    
    
            } // end of ListView
    
        }//![1]
    
        attachedObjects: [
            //! [2]
            // One of the default provided DataModel's
    
            GroupDataModel {
                id: dataModel
                grouping: ItemGrouping.None
            },
            DataSource {
                id: dataSource
    
                // Load the data from an SQL database, based on a specific query
                source: "WadokuJT.db"
                //query: "select Japanisch, Deutsch, Lesung from WadokuJT where Deutsch like '%Wasser%'"
                query: "select Japanisch, Deutsch, Lesung from WadokuJT where Deutsch like '%" + stext + "%'";
    
                onDataLoaded: {
                    // After the data is loaded, insert it into the data model
                    dataModel.insertList(data);
    
                }
                type: DataSourceType.Sql
            } // end of DataSource      
    
        ]//! [2]  
    
        actions: [
            //! [8]
            ActionItem {
                title: qsTr("Search")
                imageSource: "asset:///images/ic_search.png"
                ActionBar.placement: ActionBarPlacement.Signature
                onTriggered: {
                    myListView.dataModel = null
                    dataSource.load()
                    //myListView.dq = defaultDataQuery
                    myListView.dataModel = dataModel 
    
                }
            },
    
            ActionItem {
                title: qsTr("Settings")
                imageSource: "asset:///images/ic_settings.png"
                onTriggered: {
    
                }
            },
    
            ActionItem {
                title: qsTr("Help")
                imageSource: "asset:///images/ic_help.png"
                onTriggered: {
    
                }
            }                           
    
        ]//![8]
    
    } // end of Page
    

    And here is my InputControl.qml

    import bb.cascades 1.4
    
     Container {
         property alias stext: txtSearchText.text
    
        Label {
            id: lblSearchText
            text: "Searchtext\r\n"
    
        }
    
        TextField {
            id: txtSearchText
            layoutProperties: FlowListLayoutProperties {
    
            }
            hintText: "Enter Searchtext"
        }
    }
    

    Any help is greatly appreciated. Thank you.

    Give InputControl an id (in main.qml), for example someId.

    Access the variable an alias like someId.stext

  • Cannot access the BEFSX41 router Config page Win 7

    Hi, I have a BEFSX41and am not able to access my router from any browser config page I have on my system. I use IE and FireFox and when I punch in the IP address for the router there is just there and about 30 seconds later, says that there is a mistake and that the connection has been reset. It is a 64-bit installation and I also have another computer that goes through the same router, is 32-bit and doesn't have this problem.

    I added a NEW driver for my Realtek NIC and it still happens. Another machine that I have on my network ALSO has a Realtek NIC but can still access the router config page.

    Someone at - it else here has the same problem?

    OK, problem solved. I used a different IP and the problem disappeared, thanks for the help.

  • I can receive my email but cannot access Internet to any web page

    I can receive incoming e-mail and I can send emails but I can't access the Internet for any web page. It is with another computer with Vista operating system not this one. Thank you

    Using Windows Live Mail or Outlook?

    For Windows Live Mail:

    The best place to ask your question of Windows Live is inside Windows Live help forums. The experts he specialize in all things, Windows Live and I would be happy to help you with your questions! Please choose a product below to be redirected to the appropriate community:

    Windows Live Mail

    Windows Live Hotmail

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums at www.windowslivehelp.com.

    For Outlook:

    http://answers.Microsoft.com/en-us/Office/Forum/Outlook

  • Disable the number of items based on the values of another page/table

    Hi people,

    I have a form with 15 fields such as:

    Form1

    id_plan = 1

    level 1 = 2

    level 2 = 2

    level 3 = null

    level 4 = null

    level 5 = null

    level 6 = null

    and so on...

    Later, in another form that I have:

    Form2

    ID

    id_plan (from 'form1')

    account: 10.01 (based on the number of decimal places defined on the level of 'form1')

    So, I need to disable page Form1 items if I had some values of Form2. But only the levels where the account is registered. In the example above, only level 3, level 4, level 5, level 6 and so on would be activated.

    Any suggestion?

    I could put a read only condition for any page in question, is it good? or there is another suggestion?

    Thank you

    bsalvador

    Hi people,

    To resolve my issue, I used the read only option. I chose the body of the PL/SQL function returning a Boolean and put

    Start

    If (CST_RETURN_LEVEL(:P7_ID_PAR_PLANO_GER) > = 2) then

    Returns true;

    end if;

    end;

    where CST_RETURN_LEVEL is a function that returns the last filled level. If the point of the page is at level 2, I test, if CST_RETURN_LEVEL(:P7_ID_PAR_PLANO_GER) > = 2 then I returned true for read only and so on for other page elements.

    Thank you

    bsalvador

  • Cannot access IP Web Browser Configuration Page OfficeJet 8600 Plus

    Win 7 64 bit

    HP OfficeJet Pro 8600 more

    Wireless connection

    Hello:

    Wireless network test page printing indicates the IP address for HP Officejet Pro 8600 more like: http://192.168.1.104 (The HP Home Watch Network Diagnostic Utility v4.3.0.002 also: 192.168.1.104)

    When I try to access http://192.168.1.104 with IE 9 or 10 of Firefox I get an error message: "Web site is impossible to view the Web page.

    But, on the same computer, I CAN access http://192.168.1.103 HP Officejet 6480 configuration page of the web browser with IE 9 or 10 of Firefox

    Why I can't access the configuration web page: http://192.168.1.104

    Thank you

    FYI: I set the router to various other modes of network, widths of channels, channel and ssid broadcast power and also removed power to the router and the printer reconnected power and rebooted the computer, these efforts did NOT have access to http://192.168.1.104

    Solved!

    It was a program of adblock blocking ONLY le.104 but not the adresse.103.  Closing the Officejet 8600 welcomed au.104 program

  • Cannot access the Microsoft Updates Web pages

    using XP Home Edition on a laptop. Victim of a crisis (virus/trojan/worm - don't know what) in the new year, she launched the system restore and all of the restored data.  Downloaded AVG to analyse the system, checked MS Security Center and I saw it worked not - says, he had been arrested.  Much research for corrections, tried several of them, including uninstall AVG and other scanners, antivirus, installation SP 3 and MS Security Essentials and all other MS security downloads I could find.  Still no access pages of MS update, always "THIS webpage IS NOT AVAILABLE".  Also downloaded mpam - fe.exe and MPAs - fe.exe but does not - get access denied when select current to run user.  How can I get updates MS if I can't access Web pages?  I don't know what updates I've missed.

    Mosty likely, the computer can be infected by ROOTKITS.

    Try TDSSKILLER to find rootkits.

    Download and run from here

    http://support.Kaspersky.com/downloads/utils/TDSSKiller.exe>

Maybe you are looking for

  • How do I reinstall my iPad 2 1st generation

    I want to reinstall my iPad2, 1st generation, all the news, without alle lose my apps, music, etc. Now there are a lot of problems. OBE of them, is that I can't do a backup in iCloud.

  • How to contact Microsoft to obtain a replacement?

    Hi all I noticed my USB broadband smoking and of course, my Microsoft Mobile Mouse 6000 USB receiver was having a meltdown! I noticed he was always hotter than any other USB receiver I've owned, but I love the 6000 MS, so I just plugged the receiver

  • Wireless-G print server will not print

    I just installed my print server Wireless G on my Windows XP Pro and it is connected to my router wireless, but when I try to print nothing happens. My wireless router is a Cisco WRT54G2 V1 and my print server is a WPSM54G V1.1. I can print from my l

  • Why run this program as administrator gray out on properties Compatibility tab?

    Hello This option seems to have dimmed recently... If I right click, properties, compatibility, run it as admin is now gray. I am the only account here, I'm logged on as administrator, I can right click and run as administrator, but not set the compa

  • Jelly bean for neo V

    Hello whether we will have jelly bean update for neo V output? We look forward to this. Thank you A. Peter Jerald.