Label and textview in disabled mode

Hi,
i have a scenario where i have to disable the label and textview for a business logic but they appear to be differenti n appearance ( textview doesnt seems to be disabled)
its urgent
thanks

Hello Rajeev,
Textview is already a read-only field, wht exactly do you mean by disabling it ?
if you intend to hide these fields then you can do so by setting "visible" property of the ui-elements.
Regards,
Shweta

Similar Messages

  • +, - button and inherited tick box is in disabled mode for account assignme

    In the attribute tab of org structure (PPOMA_BBP), we are not getting +, - button and inherited tick box is in disabled mode for account assignment category (attribute is KNT).
    We want to enter two values for the account assignment category with inherited tick box (ticked).
    Please suggest me how to get the +, - and inherited tick box (ticked) for the account assignment.
    Regards.

    Hi Imam,
    Unde attributes
    You will find one Application Toolbar...
    Overview, Select Attribute, Check Entries,Insert line,Delete line..
    So under All values you will find AcctAssigCat, Exculded, Default, Inheried
    Select the row and click on Insert Line, now you should be able to insert the new acct Assignment category
    rg
    sam

  • Firefox 8 and 9beta. Back and Forward buttons greyed out. Right click menu also has forward and back greyed out. Updated all plugins, then disabled all plugins and extensions and started in safe mode. No change.

    My forward and back buttons are greyed out after update to Firefox 8. Tried to move to 9 beta, but same behavior. Back and Forward also greyed out in right click menu.
    Attempted to fix by updating all plugins and extensions, then disabled all plugins and extensions, and then tried to start in safe mode. Nothing worked.

    You could have backed up your profile folder. If you did, [[Recovering important data from an old profile]] can help :)

  • ITouch stuck in "iPod is Disabled" mode and I can not enter password, How do I correct this?

    Hello and good day,
    To who ever can assist me...
    My little sister recently experienced the feeling of having her iTouch stolen from her @ school. Since the incident occured, two of her best friends located her iTouch and returned it back to my sister. When my sister attempted to turn the device on, she noticed that the screen that appeared showed her wallpaper, (which was a picture of herself) and the red box message at the top of the screen that indicated "iPod is Disabled"(below that statement states) "connect to iTunes"
    So in seeing this message she connected the device to the family laptop. She proceed to open the iTunes program. Once the program was opened, she waited for the iTunes to read her iTouch. Once iTunes attempted to read the device the following error message appeared within iTunes stating:
    "iTunes could not connect to the iPod "Delilah's iPod"because it is locked with a password. You must enteryour passcodeon the iPod before it can be used with iTunes."
    With that error message coming up, the question then came to be, how do I enter my password if the Touch does not provide me that option to do so? The Touch is stuck in this "Disabled" mode and the screen that appears does not present option of entering password or anythihng for that matter.
    With this issue, is there anyone out there that has experience this touble? Is there a solution, and if yes, could you please guide and advise us on what action to take? Unfortunatley, my sisters warrenty has expired. So i know that if the issue requires for us to take it in for repair that we may have to pay for the repairs services, but it would be worth it if I can see that there is or is not an answer for this problem.
    Thank you very much for you time! =)
    Sincerely,
    Jefferson K. Tover
    (big brother)

    Place the iPod in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • HT1212 My ipod is disabled and the message requests to try again in 223004 minutes.  I think it might have something to do with the date being set wrong before it went into disabled mode.  Can you assist in enabling.

    My ipod is disabled and the message requests to try again in 223004 minutes.  I think it might have something to do with the date being set wrong before it went into disabled mode.  Can you assist in enabling.

    You'll need to connect it to the iTunes library you normally sync it with and restore it.  If iTunes asks you for this passcode before it will let you proceed, connect the iPod to iTunes in recovery mode instead using the instructions in this Apple support document.
    iOS: Unable to update or restore
    B-rock

  • I restored my old iPhone 4 - it asked for a password, none of my usual codes worked, and now it's in "disabled" mode.

    I bought the new iPhone 5 awhile back and just placed my iPhone 4 in a drawer. In trying to set it up to give to my Mom, the restored iPhone 4 wanted a password. I used all the passwords I usually use and nada. I can't connect to iTunes because my new phone is setup and I still need to unlock the phone to do anything.
    How do I get the phone out of disabled mode? I took out the sim card and have the Find my iPhone app set to my new phone.

    I didn't have it synced to any computer since I got a new phone. I ended up restoring it by turning it off, holding the home button until the apple came back up, while still holding - connected to iTunes - and restored. It wiped everything which I didn't mind. Now, no lock password. Yippeeee!!

  • DCache Misses and Line Replacements in disabled mode

    The Dcache is write through which i believe operate in following modes
    1.What are the situations that need the Dcache to operate in Disabled mode?
    2.In the disabled mode all the data is fetched from L2 regardless of a cache hit or miss?
    3.In normal mode does only TSO compliant stores that miss the data cache bring the line back to Dcache or missed stores dont allocate a line in Dcache?
    4.So in RMO stores misses the line is never brought to cache from L2?

    The Dcache is write-through, and stores are non-allocating.
    1. By "disabled mode", I assume you mean D-cache disabled. D-cache is disabled when the processor is reset. Part of the reset process is to zero out all the valid bits for all ways and indexes before the D-cache can be enabled. The system would only run with D-cache disabled if there were some defect that prevented the D-cache from operating correctly.
    2. In disabled mode, all loads go to the miss buffer, which forwards them to L2. When data comes back, D-cache is not updated. Stores are handled pretty much the same, because they are non-allocating, and write-through. L2 will never indicate a store hit in D-cache, so the D-cache will never be updated by the store.
    3. As discussed before, stores that miss the D-cache are non allocating. Stores that hit the D-cache are updated only after L2 responds with store-ack, indicating D-cache hit.
    4. RMO stores (RMO stands for Relaxed Memory Ordering). With RMO stores, there is no requirement that loads occurring after a store should see the stored value. It's a don't care. RMO stores are de-queued from the store queue immediately after they are sent to L2. RMO stores never update the D-cache. If L2 returns a store ack indicating D-cache hit, the line is invalidated. What does this mean? If a load follows an RMO store to the same address, it may see either the old value or the new stored value, depending on the timing. If the load occurs before the store buffer sends the store to L2, it may hit in the store buffer (It's an implementation detail. I don't know whether loads are allowed to hit on RMO stores or not). After the RMO store is sent to L2, it is de-allocated from the store queue. the load might hit in D-cache, which would supply the old value of that location. After the store ack is received, the D-cache line is invalidated, so a load request must be sent to L2, which will supply the new value.
    formalGuy

  • HT201263 I have done restore and ipod keeps going back to disabled mode.  What do I do next?

    I have done restore and ipod keeps going back to disabled mode.  What do I do next?

    Do a manual install as specified here:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch
    After you download the firmware file as specified in the article, place the iPod in recovery mode and then do the restore/update using the instructions in the article

  • My Ipad went into disable mode after my grandchild entered the wrong passcode several times.  I have never synced this IPad, and I have so many photos on the Ipad that I do not want to lose.  I have the correct password, is there anyway to enable the IPad

    My Ipad went into disable mode after my grandchild entered the wrong passcode several times.  I have the correct passcode, but I have never synced the IPad.  It says Connect to Itunes Diable Ipad.  I have many pictures I do not want to lose and I have never backed up.  Is there a way to open the Ipad without losing all of my pictures or data.

    You should be able to recover any pictures you have taken on your iPad (in Camera Roll), but not application data etc, by connecting, via USB not wifi , to your computer.
    If you are using a mac, connect your iPad, if iTunes automatically launches close it, run iPhoto and wait till your iPad is shown under Devices, you can then import all or selected photos.
    If you are using Windows, again connect and close iTunes if it starts. Then browse the device using explorer, your photos will be shown on the device in My Computer held in a folders under DCIM (or something similar), you can copy and paste them into which ever folder you want on the PC.
    The rest I'm afraid is gone unless you can remember the passcode, sorry.
    Hope all goes well.
    Cheers
    AF

  • Kid locked restrections then i try 10 passwords to try to erase it then now its in ipad is disable mode wont do nothing and i del. from itunes to need it restored back to itunes

    i try dele. everything kid resrtick it i went to icloud try to erase and i eraes it from itunes now in realy scwred cause now its off my itunes and now its in ipad disable mode and wont do nothing no internet no lock code screen just the disable words and i know the passcode to unlock screeen but not resrtection code

    Hi Johnson6801,
    Welcome to the Apple Support Communities! I understand that your device is now disabled becasue of a restrictions passcode. According to the following article, you will need to restore your device with iTunes:
    Turn on restrictions.
    http://support.apple.com/kb/TI166
    Note: If you forget this passcode, you'll need to restore the iPhone software to change restrictions.
    Please use the following article as a refrence if you need assistance restoring the device with iTunes.
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    I hopes this helps you,
    -Joe

  • After disabling and starting in safe mode, the connection time is still extremely slow.

    My cache empties on closing the browser and I delete history every day. Still most times, the connection time is horrible, sometimes up to 80 seconds. I run Malwarebytes and Super Anti Spyware every night. Kaspersky anti-virus runs constantly so it's up to the minute protection. This only started about 7 weeks ago and I've tried all the suggestions I could find on the web, without results.
    My server is Comcast, with 50mbps and I've been very happy with them for the past 3 years. I'm at my wits end and don't know where to turn. Can anybody give me help?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • HT1212 I did the setting update and my IPad went to Disabled mode and wants a pass code which I have forgotten.  Please help am very frustrated

    I did a settings update when prompted and my IPad went to disabled mode.  Cannot remember my pass code and am very frustrated

    Follow the instructions here to restore a disabled iPad:
    http://support.apple.com/kb/HT1212
    Good luck,
    Franz

  • Howto disable TopLink localized labels and messages?

    Hi,
    my windows regional settings are configured with Portuguese (Brazilian) as language and Brazil as location (since I am a Brazilian Portuguese speaking person who lives in Brazil).
    But the TopLink translations are POOR (almost stupid), it seems that the english text were translated with Google translation tool and this makes difficult to understand certain messages and labels.
    I would like to know how to change this labels and texts to english language without changing my windows regional settings ?
    PS.: It is better to have no translation than to have a translation that confuse you!
    Message was edited by:
    henrique.viecili

    Hi Luisa and Gilberto,
    I'll show you here some examples that I found... I know there are others, but I don't remember how to find them:
    English (type): Portuguese (Alternative)
    Access Modifiers (lablel) - Acessar Modificadores (Modificadores de acesso)
    Generate Methods (button) - Métodos de Geração (Gerar Métodos)
    Query Timeout (label) - Consultar Timeout (Timeout de consulta)
    Refreshing Cache Options (label) - Opções de Cache de Renovação (Opções de atualização de cache)
    These translations are not critical but some bad error message translations are. If you look at the error messages out of its context it seems OK, but when they are shown in context the meaning of the message is different from the translated value. This confuses the user.
    The other problem is that all OTN resources such as tutorials, manuals, API are written in english, so I guess that some TopLink specific terms and concepts should not be translated, e.g. Unit Of Work, API Class Names, API Method Names.
    Sorry if I caused some problem to you, but that kind of translation seems to be done by an non-technical translator, the guy who translates some tool should be familiarized with all technologies related and mainly the tool itself. In the case of TopLink, the translator should know at least about Java, DBMS and TopLink API.
    You can reach me by email at henrique.viecili (at) eds (dot) com

  • When I try to print labels I get no preview of the labels and then it just prints blank pages. Help please

    When I try to print labels I get no preview of the labels and then it just prints blank pages. Help please

    I post the same instructions almost every day...
    Change the Adobe Reader Preferences
    Documents: set 'View documents in PDF/A mode' to Never
    Security (Enhanced): disable Protected Mode at Startup

  • How to retain VBox color(Skin) on disabled mode.

    Hi friends
                   i need help for simple task.i m using vbox container and i need to disable that container sometimes now what i need i dont want to change its color or skin on disabled mode.is it possible?it looks dummy and i required that on disabled mode it look exactly as it is in endbled mode.pls help me out how to to do that.
    Thanks and Regards
        Vineet Osho

    Hi Vineet Osho,
    You can try this...just set disabledOverlayAlpha="0"
    <mx:VBox id="vBoxContainer" disabledOverlayAlpha="0">
      <mx:TextInput width="250" />
      <mx:Button label="Disable Container" click="vBoxContainer.enabled = false;" />
    </mx:VBox>
    Thanks,
    Bhasker

Maybe you are looking for

  • How to tell if a movie is a reference after the fact and components issue..

    Hello, I am unsure if a quicktime movie I made is self-contained or a reference movie. It is not playing and I was told I need components to play it (though I am not sure which ones) .... but what got me thinking is I looked at the data size in the i

  • Sams Club Business MC - I just don't get it

    Partner and I went to store yesterday so he could apply for the Business MC and PG it... after 45 minutes (yes 45 minutes at the counter!) 30 of which the rep was on the phone with credit... they came back a few times but would not talk to us, and al

  • Help cant open recent version of lightroom, wont open

    Hi, I have imported a number of images from a shoot yesterday and edited at least half, then on closing it backed up...however (this has occurred before) it has now opened in a previous state, ie- there are approximately 10 files missing, it has open

  • Due analysis reports

    I have  a Posting date ,0calday,doctype,amount field in the ARcube. During runtime User can enter the 0calday-current date no ofdays based on that current date -posting date I have to caluclate no of days Report format is posting date docutype amount

  • Editing a few seconds of 'black'

    Okay... new problem today... LOL I'm working on an 11 minute clip, and I have to make 2 cuts in it. I just want to add in a few seconds of 'black' in between those two cuts, but I can't figure out how. I'm still used to HD06 (which I still prefer) I