Combo box not behaving like it should

I have a form in which I have 4 combo boxes that have more or less the same choices, however there is one that is common to all 4 (E078).
When "E078" is selected in any of the combo box, a new combo box will appear (and a white rectangle will be hidden so that the new combo box title can be seen). It works when I select that in one or more combo box, however to make it disappear I have to select some other choice in the same combo box twice!!! If I select anything only once, it will not make the new combo box hidden, but if re-select something (same or another choice) then the combo box will disappear!
I am at lost, and would be very thankful if someone could make it work seamlessly. I mean it works, nut it is just inconvenient and I cannot tell the user to make select something else twice if they want the field to disappear.
Here is my form:
https://workspaces.acrobat.com/?d=WjF6aV8IUuBX2w8iZN3k0g

When you use event.value in a combo box's Validate event it does not give you the export value, which is what you want. It is easier to use place the code in a custom Keystroke script where you can use the event.changeEx property to retrieve the export value of the selected item. See the documentation for more information: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.607.html

Similar Messages

  • My passbook on my iphone 5 works the same as it did for the iphone 4, its not working like it should. why?

    my pass book on my iphone 5 does not work like it should, it works just the same as it did on the iphone 4, i tryed the date an time trick like 5 times an still nothing. i tryed factory reset an nothing. i know it workds different on the iphone 5 then the 4. but i dont know what else to do.

    Can you be more specific about what isn't working?  Are you running iOS 6 or iOS 6.1?
    Did you read the support page on Passbook?  http://support.apple.com/kb/HT5483

  • Siri is not working like it should i ask it to play songs and it just says sorry i cant do that any ideas y

    siri is not working like it should i asked it to play songs and it just says sorry i cant do it any ideas y

    Debbie:
    deborahfromwindsor wrote:
    he advises restarting by inserting the OSX disc and pressing down the C button to reboot from there then selecting disk utility, hard disk and repair.... Does he mean me to hold down the C key on the alpha keyboard or the ctrl key?
    Should I just ask for my money back??? If it is a simple repair do I just literally push the disc in, push the power button and hold down the C button?
    That's where I would begin, too, with
    Repair Disk
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.TStatus of HDD at the bottom of right panel, and report if it saysanything but Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    If DU reports errors it cannot repair you will need touse autility like TechTool Pro,Drive Geniusor DiskWarrior
    First we need to determine if the issue you are experiencing with the computer is software or hardware based. Once we have gotten things sorted out there should be time enough to make you decision about keeping or returning it.
    cornelius

  • If you put iOS 7 on an iPod 4th generation would it just ruin it, of would it just not run like it should?

    If you put iOS 7 on an iPod 4th generation would it just ruin it, of would it just not run like it should?

    Same answers as your other post!!!

  • I have a canon printer with a mac computer. For some reason whenever I print something the ink on the page is all green not black like it should be. I put in a new black ink cartrridge but that didn't change anything.Does anyone know why this is happening

    I have a canon printer with a mac computer. For some reason whenever I print something the ink on the page is all green not black like it should be. I put in a new black ink cartrridge but that didn't change anything.Does anyone know why this is happening?

    You posted in the OS 9 & below forum. What OS X version are you using? What model Canon printer? Canon printers have a test print capability (open the Printer Utility). What happens when you do a test print? Are all the printer cartridges in their proper location? Sometimes when you print "black", the printer uses a mixture of the colors to get "black". In the Printer Utility, check the levels of the other cartridges. There may be one color that is clogged.
     Cheers, Tom

  • FF 3.6.3+Ubuntu 10.04: Combo boxes not opening

    FF 3.6.3+Ubuntu 10.04: Combo boxes not opening.
    When I click on combo boxes, they do not respond. They become active but a menu fails to appear. The combo box can sometimes be navigated with the arrow keys, but the actual menu doesn't appear.
    == This happened ==
    Every time Firefox opened
    == The very beginning

    Can be as problem with the Ubuntu/10.10 (maverick) in the user agent and a missing Firefox/3.6.12
    Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Ubuntu/10.10 (maverick) Mozilla/5.0
    You can try to set the pref general.useragent.override to:
    Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12
    See also :
    * [[Finding your Firefox version]]
    * [[Web sites or add-ons incorrectly report incompatible browser]]
    * http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • Delete datagridview row using right click context menu does not behave like the delete key

    I have a datagridview with editing enabled. If I click the row header and press the delete key, the row is removed no questions asked. I don't recall doing any coding to make this happen but I couldn't do copy and paste using keys so I created a context
    menu with copy, paste, & delete.  The delete option calls
    dgvVX130.Rows.RemoveAt(dgvVX130.SelectedRows[0].Index);
    The row is removed but the problem is this fires other events like RowValidating which fails.  I presume because the row is no longer there.
    The delete keypress is definitely a lot cleaner so my question is 3fold. 
    1) Why doesn't Rows.RemoveAt behave like the delete key? 
    2) Is it possible to issue a delete keypress to do the same thing?
    3)  Is it possible to suppress the RowValidating event or other events when Rows.RemoveAt is fired?

    Interesting.  My delete key does not fire the row validating event.  When I use the delete key I click on the row header which does fire the row validating event and then I press the delete key.  Row is deleted and no event fires.  Works
    just the way I want it to.  I wish my context menu delete worked that way.  I wouldn't know what chunk of code I can provide to show the Row Validating NOT firing when delete key is pressed but here is the context menu code that does fire Row Validating.
    private void cmsEditItemClick(object sender, ToolStripItemClickedEventArgs e)
    ToolStripItem item = e.ClickedItem;
    switch (item.Text)
    case "Copy":
    if (dgvVX130.GetCellCount(DataGridViewElementStates.Selected) > 0)
    try
    // Add the selection to the clipboard.
    Clipboard.SetDataObject(
    dgvVX130.GetClipboardContent());
    // Replace the text box contents with the clipboard text.
    catch (System.Runtime.InteropServices.ExternalException)
    MessageBox.Show("The Clipboard could not be accessed. Please try again.");
    break;
    case "Paste":
    if (Clipboard.GetDataObject().GetDataPresent(DataFormats.Text) == true)
    ClipboardUtils.PasteFromClipboard(dgvVX130);
    dgvVX130.NotifyCurrentCellDirty(true);
    dgvVX130.EndEdit();
    dgvVX130.NotifyCurrentCellDirty(false);
    bindingSource1_PositionChanged(this, e);
    break;
    case "Delete":
    dgvVX130.Rows.RemoveAt(dgvVX130.SelectedRows[0].Index);
    break;
    default:
    //code
    break;
    private void dgvVX130CellContentClick(object sender, DataGridViewCellEventArgs e)
    //dgvVX130.IsUserSelectionEnabled = true;
    dgvVX130.BeginEdit(false);
    ((TextBox)dgvVX130.EditingControl).SelectionStart = 0;
    //((TextBox)dgvVX130.EditingControl).SelectionLength = 3;
    public class ClipboardUtils
    public static void PasteFromClipboard(DataGridView grid)
    try
    char[] rowSplitter = { '\r', '\n' };
    char[] columnSplitter = { '\t' };
    // Get the text from Clipboard
    IDataObject dataInClipboard = Clipboard.GetDataObject();
    string stringInClipboard = (string)dataInClipboard.GetData(DataFormats.StringFormat);
    // split into rows
    string[] rowInClipboard = stringInClipboard.Split(rowSplitter, StringSplitOptions.RemoveEmptyEntries);
    // get current cell
    int currentRow = grid.SelectedCells[0].RowIndex;
    int currentColumn = grid.SelectedCells[0].ColumnIndex;
    // get 1st cell in selected area
    for (int i = 1; i < grid.SelectedCells.Count; i++)
    if (currentRow > grid.SelectedCells[i].RowIndex)
    currentRow = grid.SelectedCells[i].RowIndex;
    if (currentColumn > grid.SelectedCells[i].ColumnIndex)
    currentColumn = grid.SelectedCells[i].ColumnIndex;
    // add more rows if need to paste data
    /* if (grid.Rows.Count < rowInClipboard.Length + currentRow)
    grid.Rows.Add(rowInClipboard.Length + currentRow - grid.Rows.Count); */
    // paste
    for (int iRow = 0; iRow < rowInClipboard.Length; iRow++)
    if (iRow + currentRow < grid.Rows.Count)
    string[] cellsInRow = rowInClipboard[iRow].Split(columnSplitter);
    for (int iCol = 0; iCol < cellsInRow.Length; iCol++)
    if (grid.ColumnCount > currentColumn + iCol)
    DataGridViewCell currentCell = grid.Rows[currentRow + iRow].Cells[currentColumn + iCol];
    if (!currentCell.ReadOnly) // H.NH added to avoid Read only case.
    if (cellsInRow[iCol] == "")
    if (grid.Columns[iCol].ValueType.Name == "String")
    currentCell.Value = null;
    else
    currentCell.Value = DBNull.Value;
    else
    currentCell.Value = cellsInRow[iCol];
    switch (iCol)
    case 3:
    currentCell.Value += "_ChangeColumnName";
    break;
    case 2:
    currentCell.Value = grid.Rows[iRow].Cells[iCol].Value;
    break;
    else break;
    catch (Exception e)
    MessageBox.Show("Sorry, can not paste from the clipboard.\nError: " + e.Message, "Paste Error", MessageBoxButtons.OK, MessageBoxIcon.Error);

  • Is this a known problem - Panel text and combo boxes not repainting completely when scrolling in IE?

    Looking for any insight as to what might be going on.  Would appreciate any info if anyone knows about this or similar problems..
    I have a panel with 18 children - text and combo boxes - that does not repaing correctly in IE when scrolling vertically.  The 18 children do not fit in the panel, so a vertical scroll bar appears.  The scroll works perfectly when i run through FireFox.  But it does not work in IE in this case.  The child controls appear as painted over parts of other controls.
    thx.

    Wow ...  wow...  Magic.  Your last suggestion of removing the wmode attribute worked.  The page looks great.  The scroll works flawlessly where before it mangled the child controls on the page making it look like a hurricane scene.
    The html was originally set with wmode as "opaque".  I tried changing it to "transparent" after your first response, but this made no difference.  What fixed the problem was removing the wmode attribute altogether.
    We've built a rather large application.  Is there anything we need to be aware of, or anything we need to look out for by removing the wmode setting?
    Thanks much.

  • RegExp not working like it should

    Maybe I just need another pair of eyes looking at this, but I have a RegExp instance that should work according to multiple tools on the web but it's not matching when it should in my application.  The expression should match if there isn't any leading or trailing spaces.  Here's a code snippet:
    var regexp:RegExp = new RegExp("^\S.*\S$|^\S(?!.)", "s");
    if(regexp.exec("Hello World") == null)
         trace("NO MATCH");
    Using tools such as Grant Skinners RegExr (http://gskinner.com/RegExr/) it appears that the previous code should get a match.  Does anyone see an issue or know why it isn't working?

    Hi All,
    while assigning value to a RegEx in constructor itself, we can either specify pattern (for which we need not  escape already escaped character)
    like
    var regexp:RegExp = new RegExp(/^\S.*\S$|^\S(?!.)/s)
    or we can specify a string (for which we need to escape already escaped characters)
    like
    var regexp:RegExp = new RegExp("^\\S.*\\S$|^\S(?!.)","s")
    Regards,
    Abihshek Chaudhary

  • ITunes Wi-fi sync not working like it should.

    So I got a new ipod touch 4th generation because my other one broke. I'm trying to set up wifi sync so I don't have to connect the device to the computer incase it malfunctions. Half the time it doesn't work, and if it does work, I still have to connect it directly to the computer. Sometimes I use wifi sync the first time and it doesn't work, then I plug it into my computer and it detects it. Then I unplug it and use wifi sync and it works like it should. So it kind of defeats the purpose of using wifi sync if everytime I want to sync content through wifi, I'm forced to connect the ipod to the computer. Is there something I'm doing wrong? Please Help!
    Also, my Ipod is not even a month old and is working like new. It is refurbished.

    Have you looked here:
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing

  • Combo Box not working in Search Form After migrating to Jdev11.1.2.1

    Hi,
    I developed my application using Jdev11.1.1.3 and its works fine. I migrated my application to jdev11.1.2.1. After migration when i run my application, in search form combo box displaying ArrayIndexOutOfBound Exception while searching through it. This exception is only throwing for Combo box and choice list. When I changed combo box to InputListOfValues and ComboBox with ListOfValues its working. Please help.

    Try this on jdev 11.1.1.3 if possible. If not, try everything with 11.1.2.1.
    1. Select Model project and invoke "Clean Model.jpr" (Menu->Build->Clean XXX). Do the same for View project.
    2. Delete all /classes/ folders from model and view projects
    3. Visit view project dependencies (under project properties->Libraries and classpath) and see if JDev is reporting any error there. Delete the errored dependency if any.
    now, follow this on 11.1.2.1
    4. Migrate (i.e. open the app in 11.1.2.1)
    5. Rebuild all.

  • IMessage not working like it should!

    I have a problem that I'm sure other people have as well.
    The problem in a few words is that iMessage is not capable of fast switching between Wi-Fi and cellular network.
    Example 1:
    When I am texting with my girlfriend and I'm inside my house, but a bit too far from my router (but still connected to it, yet with a weak signal), the iPhone often fails to send the message (red dot error) or with a certain amount of delay (usually a minute or two).
    Example 2:
    When I am outside, on a location where I don't have a 3G connection and obviously no Wi-Fi either, I have the same issue as described in the example above. It also occurs when having a 3G connection, but this issue is much less occuring.
    In my opinion, Apple should seriously rethink the way iMessage works, cause it is quite annoying when you think that a message has been sent. When you check your iPhone 20 min/ 1 hour/ 2 hours... later, and you find out the message hasn't got out, you feel like smashing the phone against a wall. Especially when the message is urgent.
    I never have this problem with What's App, that's why I prefer to continue using this. Maybe Apple should buy them, so they have at least proper working software.
    Is there a way to fix this? The level of 'this annoys the crap out of me' on a scale from 1 to 10 is 11 right now.

    I notice the same issues with my iPhone and iPad.  I hope there will be a fix for it soon.  The same type of problem occurs when I am using Safari and am farther away from my router at home; my device continues to try using the wi-fi instead of switching to 3G to optimize the download speed.
    Another problem with iMessage: my sister has an iPhone without a data plan and has to turn off iMessage to send texts when she is outside of a wi-fi zone, otherwise it keeps try to send as an "iMessage" instead of a "Text Message" and displays the red dot error that it cannot send.  And when I try sending her an iMessage (my iPhone knows she has iOS 5 with iMessage) it shows as delivered, even though she has her iMessage turned off and does not receive it until she turns it back on.
    One more thing: The whole iMessage to email address and/or phone number is very lame...please make all iMessages (sent and received to either location) sync between registered devices.  It just makes more sense than having 2 conversations open with the same person becasue you iMessage from your iPhone using your phone number then switched to your iPad using your email address..
    There are a lot of things to fix/improve with iMessage to make it as good as WhatsApp or BBM...
    Get to work, Apple!

  • 500k Unique Limit not behaving as it should?

    Hoping to get an official "Adobe" answer here as results via Twitter were not too successful, plus this is just too detailed to be accurately articulated in 140 character chunks.  Anyways, the problem comes with an instance I am working on where unique page views for URLs that are well over 500K are not being bucketed in to the "low traffic" category as they should be per this adobe documentation:
    Uniques Exceeded (Low-Traffic) Logic
    I've attached a screenshot, these URLs all only have 1 view per the month, and are not previously recorded, so these should all be falling into the low bucket traffic, but they are not, and this number continues to grow.  Anyone experienced this before, and if you have, do you have insights on to why the software is behaving as such?
    Thanks!

    This forum section is for the analytics of Business Catalyst, One of Adobe's CMS's. IT is not the Adobe Marketing Cloud software forum.

  • ABUnknownPersonViewController will not behave like unknown, recent call

    I'm trying to take a recent call/phone number and give the user the option to "Create New Contact" or "Add to Existing Contact" (just like the view controller that is presented for recent calls that are not listed in your address book).
    Unfortunately, the SDK seems to force me to specify the phone number in advance as a mobile/home/work/etc. number.
    If you look at Apple's implementation, they put the number in bold at the top and then when you specify Create New Contact/Add to Existing Contact, you can choose to put it as mobile/home/work/etc.
    (And if you look closely, when you Add to Existing Contact they will try to first to assign it as a mobile number, then home number, then work number, etc.. down the hierarchy automatically.)
    My question to you is, how can I recreate Apple's implementation of assigning a phone number?
    This is what I'm having to do now..
    // Create the person with a phone number of a given type (mobile)
    ABRecordRef person = ABPersonCreate();
    CFErrorRef *error = NULL;
    ABMultiValueRef phoneNumbers = ABMultiValueCreateMutable(kABPersonPhoneProperty);
    BOOL addedNumber = ABMultiValueAddValueAndLabel(phoneNumbers, @"987-654-3210", kABPersonPhoneMobileLabel, NULL);
    if (addedNumber)
    ABRecordSetValue(person, kABPersonPhoneProperty, phoneNumbers, error);
    // Create the unknown view controller and add the person
    ABUnknownPersonViewController *personViewController = [[ABUnknownPersonViewController alloc] init];
    personViewController.displayedPerson = person;
    personViewController.allowsAddingToAddressBook = YES;
    personViewController.allowsActions = YES; // this doesn't seem to work?
    personViewController.unknownPersonViewDelegate = self;
    personViewController.alternateName = @"987-654-3210";
    personViewController.message = @"August 17, 2008 3:20 PM";
    // will eventually make this modal view controller
    [self.navigationController pushViewController:personViewController animated:YES];

    Hi there!
    First off, reboot your device:
    Anytime random strange behaviors creep in, the best thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, this one suffers from memory leaks and such...with a hard reboot being the best cure.
    As for the 1606 error, here are some KB articles that discuss it:
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB10933&slic...
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB11061&slic...
    Since your desktop app is no longer running, you should do a clean uninstall:
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB02206&slic...
    And then re-install:
    http://supportforums.blackberry.com/rim/board/message?board.id=BlackBerryDesktopSoftware&thread.id=3...
    Hopefully that'll get you started toward resolution.
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Brand new ipod touch not working like it should??

    I have a brand new ipod touch that i got last tuesday.and every downloaded app will stop working after i have had it for about a day..like it starts to load the app then just goes back to homescreen..all pre-installed apps work fine.
    but i have tryed restoring my ipod and it doesnt really fix it because all the apps stop working just like before..and i have also tryed deleting and re-installing the apps but is still doing the same thing.
    Is there a way to fix this or should i get it replaced??
    (i have a 2 year warrenty)

    Maybe your using too much Virtual Memory. Try holding the sleep/wake button and the home button until you see the silver apple.

Maybe you are looking for

  • Outlook 13 mail id is not saved in nk2 file

    Dear Team, I have recently upgraded outlook-7 to outlook-13, But after importing old NK2 file from outlook-7 to outlook-13, i can see all my old NK2 file contacts. But the problem is after importing old NK2 file, it is not adding  any new contacts to

  • 10g ports with redundancy

    Hi all. I hope this is the right section to post this kind of question. Basically I need to know which switch should I buy to achieve the customer's needs. Each floor will have 1 x 2960 with 2 10GB uplink to the core switch. The problem is I don't kn

  • FM that returns condition price,type and value when PO no.& PO item passed

    Dear All, I am in search of FM that returns all the condition types and its repective values,price for a given PO no. and PO item number. I used BBP_CONDITIONS_GETDETAIL FM which is not suiting my requirement because , i need only those conditions wh

  • JUnit - Regular Expressions and all that Jazz

    I can't help you with the JMeter-specific stuff, but your regex has a couple of regex metacharacters that need to be escaped. Also, the template should refer to group #1, becuase that's where the actual id number is matched.Reg Exp: <a href="appointm

  • 'This file type is not allowed...' error on uploading CX Archive file

    On uploading modified jar file to the exisiting CX archive path, it says 'This file type is not allowed. Please choose another file.'. This issue occurs only in the TEST environment while the error is not thrown in DEV. Any idea why this might be? Tr