Making a selection from a Choice Field and having Another Set of Selctions Avaiable to Select in a Form

Hello,
I am creating and food menu form and some of the selections have a 'combo' option.  I have created a Choice field Column with the menu items available and when say Veggie Melt is selected I'd like to have it then display the combo options for the
Veggie Melt item.  Is this possible?
Thank you!
Joan

Cascading Drop Down in a Lists is not possible out of the box, with my best knowledge.
Please refer - https://social.technet.microsoft.com/Forums/sharepoint/en-US/7c06adb6-08e9-4222-8f35-b662ca9fac5c/cascading-drop-down-lists?forum=sharepointgeneral
Custom product or javascript can help - https://spcd.codeplex.com/
Regards Sudip Misra [email protected] +1-412-237-5435 Pittsburgh, PA

Similar Messages

  • Retrieve SharePoint Choice Field and Bind to a Control Using REST API

    Hi,
    I need to retrieve SharePoint choice field values and insert them in a html drop down field on the fly using SharePoint REST API. I wonder if this would be possible - please provide some code/blogs that must have achieved this already.
    Thanks n advance.

    This post will help you
    Reference
    http://www.learningsharepoint.com/2010/07/24/get-choice-field-values-using-client-object-model-sharepoint-2010/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/00acd5e9-ad78-4933-a3d2-31e2261aff68/get-the-choices-from-a-choice-field-using-javascript-client-object-model
    Regards,
    Sairam Avacorp Technologies

  • What is the difference from the creative cloud and having the lightroom and Photoshop?

    what is the difference from the creative cloud and having the lightroom and Photoshop?   I thought i was purchasing the lightroom and photoshop, but now I'm not sure that i got the right product because it only says i have creative cloud. Is there a way to change products without penalty

    Hi Jessica,
    The creative cloud complete plan has all the applications including Lightroom and Photoshop and there is a Photography plan which only includes Photoshop and Lightroom.
    Creative Cloud pricing and membership plans | Adobe Creative Cloud
    For switching the plan, please contact the support through call/chat:
    Contact Customer Care
    Regards,
    Sheena

  • How can I get text from a text field and display it in an alert?

    Hello!  I am BRAND NEW to Objective-C and Xcode and iOS, so PLEASE be forgiving of what is going to be a stupid question.  I have a text field.  I want to enter some text, click "return", and see my text in an alert.  It doesn't serve any useful purpose, but this is how I learn.  So far, I am unsuccessful.  Here's my function from my HelloEarthViewController.m file:
    -(IBAction)showInputMessageUITextField *)textField
    if ([textField.text isEqualToString:@""])
        return;
    UIAlertView *helloEarthInputAlert = [[UIAlertView alloc]
                                         initWithTitle:@"Name!" message:[NSString stringWithFormat:@"Message: %@", textField.text]
                                         delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    // Display this message.
    [helloEarthInputAlert show];
    Then I go option+click the text field and drag it to File's Owner and connect it to "showInputMessage:"  Then I run it and the build succeeds, but nothing happens when I click my "return" button on the iPhone simulator.
    What have I missed?  Where have I gone wrong? 

    Okay, here's where I am.  I have this in my view controller .h file:
    @interface HelloEarthViewController : UIViewController <UITextFieldDelegate>
        IBOutlet UITextField *textFieldTest;
    @end
    And this in my view controller .m file:
    -(IBAction)showInputMessage
        if ([textFieldTest.text isEqualToString:@""])
            return;
        UIAlertView *helloEarthInputAlert = [[UIAlertView alloc]
                                             initWithTitle:@"Name!" message:[NSString stringWithFormat:@"Message: %@", textFieldTest.text]
                                             delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
        // Display this message.
        [helloEarthInputAlert show];
    And I have connected the text field to showInputMessage.  When I hit "return", however, I still get nothing.
    Is an "action button" a real button?  From my limited understanding, the alert should launch when I click "return" since showInputMessage is attached to Editing Did End on the text field.
    Thanks for the help.  The transition from writing C# for web applications to writing Objective-C for iOS applications is not going as smoothly as I'd anticipated.

  • How to create an array in one field and have another field display certain elements from that array?

    I am making a form in Acrobat XI pro.
    In one text field, I created an array of several elements. I want other text fields to display certain elements from that array. For instance, one field should display the 3rd element, another field should display the 13th element, etc.
    The Javascript for making the array is very long, and so I don't want to have to re-calculate the array every single time (in order to reduce rendering time when I open the form on an iPad). This is why I'd like to only have to create the array once, and simply refer to it throughout the form.

    What code are you using to update the array currently? Are you completely rebuiding it when an element changes, or just changing specific elements for certain fields? I'm still not sure what exactly you are trying to do, but something like this in a document level script will create your array:
    var myArray;
    // Call 'updateArray' to initialize array
    updateArray();
    function updateArray() {
         // Code here to create/update array
         myArray = new Array();
         myArray[0] = "Value 1";
         myArray[1] = "Value 2";
         myArray[2] = "Value 3";
    Then, for each field that needs to update this array, you can add a call to 'updateArray()' in the appropriate event. This will rebuild the array completely; if you just want to update specific elements, then you can access them directly.

  • How to select data from one nested table and into another nested table

    create or replace
    TYPE ctxt_code_rec as object
    ctxt_header varchar2(10),
    header_description varchar2(300),
    status varchar2(30),
    adjacent_code varchar2(300),
    adjacent_desc Varchar2(400),
    adjacent_flag varchar2(4000),
    adjacent_text_href varchar2(4000)
    create or replace
    type ctxt_code_table as table of CTXT_CODE_REC
    d_table ctxt_code_table ;
    v_tab ctxt_code_table ;
    Iam trying to select data from d_table to v_tab
    using and bulk collect into
    select m.*
    bulk collect into p_code_result
    from table(l_loop_diag_code_table1)m
    order by 1;
    Receiving error:
    ora 94007 : not enoughvalues
    Could you please let me know how to solve it?
    Thanks,
    in advance

    >
    create or replace
    TYPE ctxt_code_rec as object
    ctxt_header varchar2(10),
    header_description varchar2(300),
    status varchar2(30),
    adjacent_code varchar2(300),
    adjacent_desc Varchar2(400),
    adjacent_flag varchar2(4000),
    adjacent_text_href varchar2(4000)
    create or replace
    type ctxt_code_table as table of CTXT_CODE_REC
    d_table ctxt_code_table ;
    v_tab ctxt_code_table ;
    Iam trying to select data from d_table to v_tab
    using and bulk collect into
    select m.*
    bulk collect into p_code_result
    from table(l_loop_diag_code_table1)m
    order by 1;
    Receiving error:
    ora 94007 : not enoughvalues
    Could you please let me know how to solve it?
    >
    Not unless you provide the code you are actually using.
    There is no definition of 'p_code_result' in your post and you say you 'trying to select data from d_table' but there is no code that loads 'd_table' in what you posted.
    And the SELECT query you posted actuall selects from an object named 'l_loop_idag_code_table1' which isn't mentioned in your code.
    Post the actual code you are using and all of the structures being used.
    Also explain why you even need to use nested tables and PL/SQL for whatever it is you are really doing.

  • Is there a difference from the  class field and getClass()  ?

    To get the url of an image, I have developed the code below which works fine. In fact I, used a few examples that I got from this forum without understanding what I'm doing.
    public java.net.URL getURL(String name)
        String n = name.trim();
           if (n == null || n.equals(""))  return null;
        java.net.URL url=null;
        try
             return TestImage.class.getResource("/" + n);
       catch (Exception ex)
              System.out.println(ex.toString());
              return null;
    }However, now to really understand what all this means, I'd like to know what is the class field. For example when I'm writting :
          TestImage.class.getResource("/" + n);what "class" refers to ? Is it the same as
          TestImage.getClass().getResource("/" + n);I'm wondering what is the class field because by looking for the javadoc for Class, or Object, I haven't found any such field name. Where is it documented ? Instead could I have written :
           Class.getResource("/" + n);

    This expression is true :
    String.class.equals("A string".getClass())So basically it is the same, except that getClass() is not static.
    Hope this helps,
    --Marc (http://jnative.sf.net)                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Highlighting TEXT - not the field - and clearing the set value for a new one

    I have a form in which various text fields are set with a message to inform the user as to what kind of information I want typed in. My goals are:
    1. Have the text get highlighted so when the user starts typing, the "old" value gets replaced with the "new"
    2. Or, when the user tabs or clicks in the field all of the "old" value is deleted and they can start typing the "new" value from the beginning of the field.
    I am trying to eliminate having to manually highlight the field in order to type in the needed information. But each field needs to start with a value so the user knows what kind of information I am looking for.
    Does this make sense? By the way, I have no JavaScript experience...uh oh!

    Use the Media Manager (under the File menu bar item).
    Link:
    What Can You Do with the Media Manager?

  • Compare values of one field and populate another field

    Hi,
    I have a requirement something like this:
    Taking example of carrid and connid fields of table sflight.
    lets say carrid has values like AABB, CCDD etc in sflight table.
    Now i would like to read the first two characters of carrid's values(only AA of AABB or CC of CCDD) and based on this i want to populate connid. Any suggestions please?

    hi,
    if carrid + 0( 2 ) = 'AA'  ( first two letters..)
    try to use  offset function....
    rgds,
    raj

  • Transfer asset from one company code and to another company code

    Hi Guru
    we have one issue in transfering of asset from one company code to another company code by tocde ABT1N as we get the error transaction type cannot be used for activity retmet from interco.transfer w/o rev to affil.co message no aapo176
    any appropriate method to do transfer and what is the settings we should take care for this
    kind regards
    sunitha
    Edited by: sunitha reddy on Sep 1, 2010 2:22 PM

    Hi Sunitha,
    You should also check the following customizing settings in case of AAPO176 in ABT1N:
    It could be that your transaction type that is mentioned in your error code AAPO176 cannot be used for 'Acquisition from intercompany transfer'.
    In this case check the default transaction types your customizing in Asset Accounting - Transactions - Specify Default Transaction Types.        
    Check if the same default transaction type for 'Acquisition from INTERcompany transfer' is also used for 'Acquisition from INTRAcompany transfer'.
    If not, then this is possibly the reason for the error AAPO176.       
    The transaction types for 'Acquisition from intercompany transfer' AND 'Acquisition from intracompany transfer' should be same as the standard transaction type 158 (please also review SAP note 196012). Both transaction types must be customized the same if you use your own customized transaction types...if one is different than the other, that would also be a reason for AAPO176 to be triggered.                                                                               
    I hope this information helps in addition.
    Kind regards,
    Brigitte

  • Newbie from the Treo world - and I can set up to sync

    Ok I know this is a pretty elementary question but I can't get my BB set up to sync.  Says device cannot be found.  My laptop is only a year or two old and i have everything connected.  I used the same USB ports to sync my treo etc... but my Desktop Manager isn't connecting. 
    HELP!
    Solved!
    Go to Solution.

    My fault I wasn't specific!
    From the main menu of the Desktop Software, press the synchronization icon, in the upper right hand corner press synchronization configuration, To the right a grey boy will say set configuration options. If nor press the box that says reset configuration options, then press the grey button on top of that saying set configuration ,
    As far as Oulook and 4.3 you are good to go!
    Let me know if you have any other questions!
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • R12.1.3 Upgrade from 11.5.10 and having multiple Application Servers

    Hi,
    We are in the process of upgrading the 11.5.10 Instance to R12.1.3.
    The 12.1.3 Instance will have multiple application servers.
    I will be doing an R12.1.1 Installation with Upgrade Option.
    What should be the procedure to have multiple application servers?
    Finish the upgrade on one Application Node and then clone the other Application Tiers?
    Please advise.
    Regards,
    VN

    We are in the process of upgrading the 11.5.10 Instance to R12.1.3.
    The 12.1.3 Instance will have multiple application servers.What services are running on each server?
    Do you have shared APPL_TOP or shared application file system implemented?
    I will be doing an R12.1.1 Installation with Upgrade Option.
    What should be the procedure to have multiple application servers?
    Finish the upgrade on one Application Node and then clone the other Application Tiers?
    Please advise.Please see Chapter 3, Performing an Upgrade in the installation doc, there is an example.
    Oracle E-Business Suite Installation Guide: Using Rapid Install
    http://docs.oracle.com/cd/B53825_08/current/acrobat/121oaig.pdf
    Thanks,
    Hussein

  • Working from Several Hard Drives and having Export Issues

    Hi there,
    I'm doing some assistant editing work for a client, and he's been editing off of several hard drives: a 4Tb G-Drive, a 500gb USB drive, and his Macbook. Media is distributed across these three sources, and when he's tried to export his hour-long project, Premiere will get about ninety percent of the way there and then crash with a "serious error."
    My guess is that all of the clips will need to be media managed, and placed onto a single drive. He's also done something very strange, which you can view in the image below. When you open up the G-Drive, there's the icon for the second attached drive (the one called "drone projects/archival").
    Any thoughts?

    Drag the folder or drive into the open iTunes window; iTunes will then add everything it can use to the current iTunes library, and will copy them if that option is set in the preferences, which it is by default on a Mac.
    (34243)

  • HT5625 hi its navneet, i was having apple 4 before so i make apple id on i cloud, now i'm having apple 5s and having another id for this phone how do i manage my account on my laptop with new one

    how do i use same account on my pc to do back up of my old pictures now with new apple id

    Why did you need a new Apple ID for the new iPhone?

  • Php - get name from 'file field' and pass to database?

    Is it possible to extract the 'image' name from the 'file' field and insert it into a database using php?
    <input type="file" name="ImageName" id="ImageName">
    I can't have:
    $ImageName = trim($_FILE['ImageName']);
    So hows this handled?
    Cheers
    Os

    Murray *ACP* wrote:
    Should be pretty strightforward, Os.  You know where to ask the questions!
    Yeah.. but I keep coming up against brick walls
    I'm trying to manipulate David Powers PHP Solutions chapter 6 - Uploading Files.
    He's got some sort of complicated function going on which makes sure no two images which are uploaded to a folder have the same name. i.e., london.jpg becomes london_1.jpg. (the php even inserts underscores if there are gaps in the image name)
    If I just use $ImageName = $_FILES["ImageName"]["name"]; potentially I could end up with dozens of images with the same name in the database, which is NOT desirable.
    Of course I could simplyfy everything and use two forms - 1 for uploading the images to the upload folder and then one for inserting the images details into the database BUT that has the drawback of the client needing to type in the name of the image identically to match the name which has been generated in the upload folder and that aint gonna happen in a million years

Maybe you are looking for

  • Export many photos from MacBook to another MacBook?

    I have a new MacBook Air. When I purchased it, the Apple Store transferred all of my files, including thousands of photos on iPhoto from my 2005 era white MacBook to the new computer. Since then, I have given the computer to my parents, who also use

  • How do I delete apps on my ipod touch?

    How do I delete apps on my Ipod touch, it wont give me the little x option to delete them, could it be because my Ipod has restrictions?

  • Bug in Formula node under LabVIEW 2010

    appendix is my test project. there is a test.vi in the project.  The test.vi contains only a case structure with 5 SAME subdiagrams. Each subdiagram contains a formula mode. The formula code does some calculation with an 2d array of double. If i run

  • How to make small updates to a website

    Hi all, Let's say you make a website and then realize that you want to add or adjust just one of the photos in it. LR will need to remake the entire site from scratch (slow if you have a lot of photos in it). PS on the other hand has always been very

  • USB Connected Disk Not in Sidebar View

    I've attached a USB Drive to my Time Capsule, so that I can share it across my wireless network. I've set up file sharing and restarted the Time Capsule (as described in this forum) but the drive is not showing in my sidebar. I have all the Device an