Change Selected Property of a Checkbox

I'm trying to set the selected property of a checkbox
generated by the Repeater component. The checkbox has an ID of ccb.
I know I can access them using index notation ie. ccb[1].selected =
true; - that works fine. However, when I put in a for loop and set
the selected property to a value stored in a Array I get this
error. Any ideas? Anybody?? Please????
TypeError: Error #1009: Cannot access a property or method of
a null object reference.
at Filter/intFilterComp()
at Main/loginClickHandler()
at Main/___Login1_loginClick()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.core::UIComponent/dispatchEvent()
at Login/wsHandler()
at Login/___Operation2_result()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.rpc::AbstractOperation/
http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
at mx.rpc::AbstractInvoker/
http://www.adobe.com/2006/flex/mx/internal::resultHandler()
at mx.rpc::Responder/result()
at mx.rpc::AsyncRequest/acknowledge()
at DirectHTTPMessageResponder/completeHandler()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()

The error means what it says: you are trying to read or write
a value to a non-existing destination.
Debug this to find out which line is erroring, and thus which
reference is null.
Tracy

Similar Messages

  • Checkbox group selected property binding not working

    Hi,
    I've been through all the threads and tutorials relating to this problem and none of them help.
    The Situation
    I have a checkbox group which I have bound the items items property to a MySQL database (value field = int, display field = String). I have bound the Selected property to a sessionbean field which is an int[] array.
    I have a processValueChange event for my checkbox group which grabs the selected boxes values (ie the int value of the checkbox id). Based on these values it does some other processing.
    The Problem
    When the page loads everything is displayed ok. When I select a checkbox within the checkbox group the getSelected() method returns the int value of the selected checkbox and perform other processing as necessary... so far so good.
    However, when the page finishes processing and reloads the selected checkboxes are not ticked. I'm sure it has something to do with the Selected property of the checkboxgroup but I can't for the life of me work out why. For multiselect objects the Selected property must be bound to an array which I have done with my int[] array. I've tried preloading the array with default values (1, 2, etc) to mimic the int values from the database. I've tried changing the array to a boolean array but this throws exceptions. So basically i'm stuck.
    The Source
    Session Bean
        private int[] extras;
        public int[] getExtras() {
            return this.extras;
        public void setExtras(int[] extras) {
            this.extras = extras;
    Page JSP
    <ui:checkboxGroup binding="#{book_package.extras}"
                                                                                    converter="#{book_package.extrasConverter}" id="extras"
                                                                                    items="#{book_package.extrasDataProvider.options['extras.ExtrasID,extras.Name']}"
                                                                                    onClick="common_timeoutSubmitForm(this.form, 'table:tr:td:table:tr:td:table:tr:td:div:div:table:tr:td:extras');"
                                                                                    selected="#{SessionBean1.extras}" valueChangeListener="#{book_package.extras_processValueChange}"/>
    Page Java
        public void extras_processValueChange(ValueChangeEvent event) {
            // TODO: Replace with your code
            getSessionBean1().setExtrasTotal(0);
            try {
                int[] extra = (int[])extras.getSelected();
                int extrasId = 0;
                int extraPrice = 0;
                if (extra.length != 0) {
                    for (int i=0; i < extra.length; i++) {
                        extrasDataProvider.cursorFirst();
                        do {
                            extrasId = new Integer(extrasDataProvider.getValue("ExtrasId").toString()).intValue();
                            if (extrasId == extra) {
    extraPrice = getSessionBean1().getExtrasTotal() + new Integer(extrasDataProvider.getValue("Price").toString()).intValue();
    getSessionBean1().setExtrasTotal(extraPrice);
    break;
    } while (extrasDataProvider.cursorNext());
    } catch (Exception e) {
    log("Exception occurred!!", e);
    error("Error: "+e.getMessage());
    getSessionBean1().setTotalPrice(getSessionBean1().getPackagePrice() + getSessionBean1().getExtrasTotal());
    Any help appreciated.
    Thanks.

    ok, i found the problem. MySQL int value is treated as an Integer in Creator. I changed my SessionBean array from int[] to Integer[] and now it works properly... phew!!!

  • Selected property of checkbox gives property not writable exception

    hi,
    i am facing problem with checkbox!!
    in my page there is one table and in each row there is 12 checkbox
    and i want to set checkbox selected as per database,and i successfully
    completed it with below code <ui:tableRowGroup
    binding="#{Setrights1.right_rowgroup}" id="right_rowgroup" rows="10"
                                    sourceData="#{Setrights1.right_table_provider}" sourceVar="currentRow">
                                    <ui:tableColumn headerText="Module" id="tableColumn1" sort="column1" width="167">
                                        <ui:staticText id="staticText1" text="#{currentRow.value['module_name']}"/>
                                    </ui:tableColumn>
                                    <ui:tableColumn headerText="Rights" id="tableColumn2" sort="column2">
                                        <h:panelGrid columnClasses="" columns="4" id="rightspanel">
                                            <ui:checkbox
    binding="#{Setrights1.create_self}" id="create_self"  label="Create
    Self" selected="#{currentRow.value['create_self']==1}"
    onClick="common_timeoutSubmitForm(this.form,
    'right_table:right_rowgroup:tableColumn2:rightspanel:create_self');"
    rendered="#{currentRow.value['create_self']!= ''}"
    valueChangeListener="#{Setrights1.create_self_processValueChange}"/>
                                   <ui:checkbox
    binding="#{Setrights1.create_level}" id="create_level" immediate="true"
    label="Create Level"  selected="#{currentRow.value['create_level']==1}"
    onClick="common_timeoutSubmitForm(this.form,
    'right_table:right_rowgroup:tableColumn2:rightspanel:create_level');"
    rendered="#{currentRow.value['create_level']!= ''}"
    valueChangeListener="#{Setrights1.create_level_processValueChange}"/>
                                            <ui:checkbox binding="#{Setrights1.add_self}" id="add_self" label="Add Self"
    rendered="#{currentRow.value['add_self']!= ''}"
    selected="#{currentRow.value['add_self']==1}"/></h:panelGrid>
                                    </ui:tableColumn>
                                </ui:tableRowGroup>And in back bean code for dataprovider for populating table.
    it works fine table populated with listbox selected value
    but
    when i select or deselect any checkbox it's processvalue change
    executes and checkbox display error icon with property not writable
    exception i want to set in array rowkeys and changes values of checkbox
    for update operation.
    help me i am really stuck at this point

    The error means what it says: you are trying to read or write
    a value to a non-existing destination.
    Debug this to find out which line is erroring, and thus which
    reference is null.
    Tracy

  • Why is AE creating unwanted keyframes whenever i change a property?

    Hi all...
    Just hoping someone can maybe shed some light on this - every time i go to change a property of a layer, AE (CS5.5) creates a keyframe which i don't want, even though i haven't clicked the stopwatch button.  Any thoughts?  Is this happening to anyone else?
    Example: I have a comp containing a PNG sequence on a layer above some video footage.  I want to move the comp over to the right a ways, so i select the layer, and move it to the right.  Suddenly the stopwatch icon activates (without me clicking it) and a keyframe appears on the layer's timeline where the playhead is.  Very befuddling, and quite irritating - if i miss one, forget to delete the key and then later try to animate the layer, it messes up the animation and i have to go hunting for the rogue key.
    Anyways, hopefully someone out there has an idea of what's going wrong, and even more hopefully, how to fix it.  I have a horrible suspicion it's some setting that i've accidentally changed...
    Thanks all!
    p.

    Hi everyone. 
    Scratch the above - just spotted the massive big red "auto-keyframe properties when modified" button at the top of the timeline.  D'oh!
    Thanks all,
    p.

  • Can we change the property of each element of an array using property node or by other methods?

    Hello all,
    Can we change the property of the elements of an array. For example:
    I have an array of combo-boxes. Can i have such a scenario that different combo-boxes of the array will have different items to select an item.
    I am able to set the different "values" in different combo-boxes bu using "to be more specific class" property node.
    But i could not set the different item list in different combo-boxes.
    Please give me the solution.

    Thanks a million dave!!!!!
    I have learnt a very new and innovative thing...
    I just wanna ask you one more question in the above context.
    Can i have listbox or combo-box in a table just like in an excel sheet where we can have listbox by using "data validation" property for different cells having different list.Can i have this in labview. Because for this i have to super-impose the combo-boxes on the table and treat them separately.
    We have to take those combo-box values and put in table and then store it.I have attached one VI to show the scenario.
    And this is the alternative solution of the array problem which u have already given. So please suggest me between the two or any alternative solution.
    Thanks,
    Ankit Madaan
    Attachments:
    Recording _Table.vi ‏19 KB

  • Selecting more than one checkbox in selectManyListbox

    Hi,
    Please let me know how to select more than one checkbox by default.
    The below code just selects the checkbox with value being 2 as it matches with the attribute value=2 of the <af:selectManyListbox>
    <af:selectManyListbox value="2">
    <af:selectItem label="One" value="1"/>
    <af:selectItem label="Two" value="2"/>
    <af:selectItem label="Three" value="3"/>
    <af:selectItem label="Four" value="2"/>
    <af:selectItem label="Five" value="5"/>
    </af:selectManyListbox>
    Incase if more than one checkbox has to be selected, how should the code look like?
    Regards,
    Asha

    Hi,
    the value property should point to a managed bean with a variable defined that is exposed through getter and setter. The reference is through EL. Selecting the check boxes then will create a List of values returned (which means your variable in the managed bean is a list to)
    Frank

  • Select Next Keyframe (in selected property) script

    I find myself constantly crafting individual keyframes manually, so being able to automatically select the next/previous keyframe on a selected property with a shortcut (assigned to a script, since there's no such functionality in After Effects, being "Select Previous/Next Keyframes" the closest thing) instead of locating the keyframe and clicking on it, would save me, and everyone, hours of pointing and clicking.
    After some research I thought It was not possible but after some more (looking at scripts like this AE ENHANCERS • View topic - Exponential Scaling and Re: How can I access the layer keyframes?) , I've started to wonder if it is scriptable.
    Hope it is clear what I'm trying to achieve;
    Basically I'd like that pressing Shift+K would take me to the next keyframe in the selected property AND select it (Shift+J for the previous one) and
    pressing Ctrl+Shift+K would select the next keyframe in the selected property without actually moving the Current Time Indicator (Ctrl+Shift+J for the previous one).
    (I think it makes sense and it is consistent with the almighty J and K shortcuts but I didn't know how to write the code or ask for this functionality. Haven't been lucky asking to fellow animators either).
    Thanks,
    Oliver

    Here here!
    SelectJumpNextKey:
    In a selected keyframe/keyframes, will select the next one in time AND jump the CTI to the time of that keyframe or, if multiple selected, the last of the selected keyframes.
    (If you don't want the time jump but only the selection, just remove the second $.global.script_doJumpToLastSelectedKey script).
    $.global.script_doSelectNextKeys || (script_doSelectNextKeys = function script_doSelectNextKeys(){  
        var comp = app.project.activeItem, props, n, p, idx, max=-Infinity;  
        if (comp instanceof CompItem){  
            props = comp.selectedProperties;  
            for (n=0; n<props.length; n++){  
                p = props[n];
                if (p.numKeys && p.selectedKeys.length>0){
                    // get index of the last selected key
                    idx = p.selectedKeys[p.selectedKeys.length-1];
                    // change to next key
                    if (idx<p.numKeys) ++idx;
                    // select only that key
                    p.selected = false;
                    p.setSelectedAtKey(idx, true);
                    // update the time
                    max=Math.max(max, p.keyTime(idx));
             // this sets the composition time (CTI) to max
             if (-Infinity<max) comp.time = max;
        return
    script_doSelectNextKeys();
    $.global.script_doJumpToLastSelectedKey || (script_doJumpToLastSelectedKey = function script_doJumpToLastSelectedKey(){   
        var comp = app.project.activeItem, props, n, p, max=-Infinity;   
        if (comp instanceof CompItem){   
            props = comp.selectedProperties;   
            for (n=0; n<props.length; n++){   
                p = props[n]; 
                if (p.numKeys && p.selectedKeys.length>0) max=Math.max(max, p.keyTime(p.selectedKeys[p.selectedKeys.length-1])); 
            if (-Infinity<max) comp.time = max; 
        return;   
    script_doJumpToLastSelectedKey();
    And this (nevermind the more than possible coding aberrations on my part) is what I originally aimed for. I think that not only it is simply amazing ("It just works") but so intuitive (specially using Shift+J/K) that should be an After Effects default.
    Your version (select keyframes under current time in the selected properties) is super great too, but it serves a whole different purpose.
    Now, for the SelectJumpPrevKey, I just have to figure how to make this bit:
    $.global.script_doJumpToFirstSelectedKey || (script_doJumpToFirstSelectedKey = function script_doJumpToFirstSelectedKey(){   
        var comp = app.project.activeItem, props, n, p, max=-Infinity;   
        if (comp instanceof CompItem){   
            props = comp.selectedProperties;   
            for (n=0; n<props.length; n++){   
                p = props[n]; 
                if (p.numKeys && p.selectedKeys.length>0) max=Math.max(max, p.keyTime(p.selectedKeys[p.selectedKeys.length-1])); 
            if (-Infinity<max) comp.time = max; 
        return;   
    script_doJumpToFirstSelectedKey();
    actually go to the first keyframe selected and not the last (which, as simple as it may seem, to me is like watching the Matrix code and pushing random buttons in russian to see what happens).
    Sorry I couldn't make your last code work and insted just stitched to scripts together! for some reason, the CTI wasn't jumping.
    Mega thanks!!
    Oliver

  • Changing tabular form column to checkbox

    I have a tabular form in 3.2. There is a column that is a text field, but really should be a checkbox. I have tried changing the region source to something like, select a, b, APEX_ITEM.CHECKBOX(3, PRIMARY FLAG) "PRIMARY_FLAG", d
    from my_table
    WHERE a = :P52_XPROD, but the column still shows up as a text field, displaying a value like "<input type="checkbox" name="...etc.
    Is it possible to change a tabular form column to a checkbox in 3.2?

    edit your report attributes, then edit your column and change "display as" to "standard report column"
    Thanks
    Tauceef

  • Unable to change singleton property of context parent node.

    Hi
    I am having a view context node structure as follows.
    Root context Node
    |__Parent
    *****|__child 1
    *****|__child 2
    I have created a table view which is using above structure.
    Now I have selected "Selection Mode" property of my table to "Multi", as i intend to select multiple rows in this table.
    When i tried to run this application..I got following error :
    com.sap.tc.webdynpro.progmodel.context.ContextException: Node(TableView.Person): selection cardinality does not allow multiple selection
    What i traced from this problem is that i have set "singleton" property of my "Parent" context node to "true".
    But what if i wish to change it to "false"...
    I AM UNABLE TO DO THAT !!
    Please help me out.
    Thanks in anticipation.
    Edited by: Saurabh Agarwal on Jun 23, 2008 8:20 AM

    Yes....
    Now i changed my Selection property of my component context...
    and that change was automatically reflected to my view context...
    Actually what is happening..
    if mapping to component context is set in view context..
    then Properties could not be changed directly from view context.
    Thanks all....for your help..
    my problem is solved now....
    Thanks...

  • Flex 4 ToggleButton selected property not working

    I am trying to set a FlexToggle buttons selected property by state value and it does not work. It only works when I click on the button.
    <buttons:MaxRestoreToggleButton id="resizeWindowButton" selected="false" selected.maximized="true"/>
    any ideas?

    Well I am creating a ToggleButtonSkin and yes, I am calling the invalidateSkinState(); but it still doesnt seem to be working.
    <?xml version="1.0" encoding="utf-8"?>
    <s:ToggleButton xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      toolTip="Maximize"
      width="20" height="20"
      skinClass="tat.skins.buttons.MaxRestoreToggleButtonSkin" change="{trace('hi');}"
      >
    <s:states>
    <s:State name="up" enterState="{invalidateSkinState();}"/>
    <s:State name="over" stateGroups="overStates" enterState="{invalidateSkinState();}"/>
    <s:State name="down" stateGroups="downStates" enterState="{invalidateSkinState();}"/>
    <s:State name="disabled" stateGroups="disabledStates"/>
    <s:State name="upAndSelected" stateGroups="selectedStates, selectedUpStates" enterState="{invalidateSkinState();}"/>
    <s:State name="overAndSelected" stateGroups="overStates, selectedStates" enterState="{invalidateSkinState();}"/>
    <s:State name="downAndSelected" stateGroups="downStates, selectedStates" enterState="{invalidateSkinState();}"/>
    <s:State name="disabledAndSelected" stateGroups="selectedUpStates, disabledStates, selectedStates" />
    </s:states>
    <!-- Skin States -->
    <fx:Metadata>
    [SkinState('up')]
    [SkinState('over')]
    [SkinState('down')]
    [SkinState("disabled")]
    [SkinState('upAndSelected')]
    [SkinState('overAndSelected')]
    [SkinState('downAndSelected')]
    [SkinState("disabledAndSelected")]
    </fx:Metadata>
    <fx:Declarations>
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    ]]>
    </fx:Script>
    </s:ToggleButton>
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:fb="http://ns.adobe.com/flashbuilder/2009" minWidth="21" minHeight="21" alpha.disabledStates="0.5" >
        <!-- host component -->
        <fx:Metadata>
        <![CDATA[
            [HostComponent("tat.components.buttons.MaxRestoreToggleButton")]
        ]]>
        </fx:Metadata>
        <fx:Script fb:purpose="styling">
    [Bindable]public static var glowColor:uint = 0xFFFFFF;
    [Bindable]public static var backgroundColor:uint = 0xFFFFFF;
    /* Define the skin elements that should not be colorized.
               For toggle button, the graphics are colorized but the label is not. */
            static private const exclusions:Array = ["labelDisplay"];
             * @private
            override public function get colorizeExclusions():Array {return exclusions;}
             * @private
            override protected function initializationComplete():void
                useChromeColor = true;
                super.initializationComplete();
             * @private
            override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number) : void
                super.updateDisplayList(unscaledWidth, unscaledHeight);
            private var cornerRadius:Number = 2;
        </fx:Script>
        <!-- states -->
        <s:states>
            <s:State name="up" enterState="{this.hostComponent.toolTip='Maximize' }"/>
            <s:State name="over" stateGroups="overStates" enterState="{this.hostComponent.toolTip='Maximize'}"/>
            <s:State name="down" stateGroups="downStates" enterState="{this.hostComponent.toolTip='Maximize'}"/>
            <s:State name="disabled" stateGroups="disabledStates"/>
            <s:State name="upAndSelected" stateGroups="selectedStates, selectedUpStates" enterState="{this.hostComponent.toolTip='Restore'}" />
            <s:State name="overAndSelected" stateGroups="overStates, selectedStates" enterState="{this.hostComponent.toolTip='Restore'}"/>
            <s:State name="downAndSelected" stateGroups="downStates, selectedStates" enterState="{this.hostComponent.toolTip='Restore'}"/>
            <s:State name="disabledAndSelected" stateGroups="selectedUpStates, disabledStates, selectedStates" />
        </s:states>
        <!-- layer 1: shadow -->
    <s:Rect id="bg" left="0" right="0" top="0" bottom="0" radiusX="2">
    <s:fill>
    <s:SolidColor color="{backgroundColor}" alpha=".1"/>
    </s:fill>
    </s:Rect>
    <s:Rect id="glow" left="-1" right="-1" top="-1" bottom="-1" radiusX="2">
    <s:fill>
    <s:SolidColor color="{glowColor}" alpha.up="0" alpha.selectedUpStates="0" alpha.overStates=".5" alpha.downStates=".2" alpha.disabled="0"/>
    </s:fill>
    </s:Rect>
    <s:BitmapImage source.selectedStates="@Embed('../../../assets/images/windows_16.png')" source="@Embed('../../../assets/images/windows_window_16.png')"
       horizontalCenter="0" verticalCenter="0"/>
    </s:SparkSkin>

  • How can I change KM property createdBy?

    Hi all,
    I have to change the property createdby for all resources within the KM.
    Background: In the past the display name in the portal was like "jdrogi". But this has changed and now all users look like "jdrogi @foobaa.com".
    Now it is the case that for old resources (created by "jdrogi") the detailed view only shows the createdBy-person not as link anymore.
    To fix this problem, I have to change all properties....
    Therefore I wrote a short code, but the property is not changed:
    IMutablePropertyMap properties = rootResource.getProperties().getMutable();
    IPropertyName createdByPropertyName =   PropertyName("http://sapportals.com/xmlns/cm","createdby" );
    //IPropertyName createdByPropertyName = PropertyName.createCreatedBy();
    IMutableProperty createdBy = properties.get(createdByPropertyName).getMutable();
    String value = createdBy.getValueAsString();
         if (value.indexOf("@")==-1) {
              createdBy.setStringValue(value + "@foobar.com");
              rootResource.setProperty(createdBy);                    
    Unfortunately this is not working and I am getting:
    class com.sapportals.wcm.repository.PropertyReadOnlyException
    I also changed within the Property MetaData IView (ContentManagement->GlobalServices->PropertyMetadata)  the corresponding systemProperty cm_createdby. In particular I deselected the readonly-flag and selected the maintainable flag.
    This also didn't help......
    Can anybody help me out?????
    Thanks you very much
    Regards
    Jens

    Hi,
    I am a SAP Portal Developer who is trying to change de createdby km property.
    I can change other system properties, like descrition or displayname, but I can´t change createdby. How did yo di it?
    I do this:
    PropertyName propName = new PropertyName("http://sapportals.com/xmlns/cm", "createdby");
    try
         IProperty property = documento.getProperty(propName);
         if (property != null)
              IMutableProperty mutableProperty = property.getMutable();
              mutableProperty.setStringValue("username");
              documento.setProperty(mutableProperty);
         } else
              IProperty prop = new Property(propName, "username");
              documento.setProperty(prop);
    } catch (Exception e)
         throw new KMException("Error al crear la propiedad " + propName.getName(), e);
    Thanks,
    Regards.

  • How can I change element property.

    Hi experts,
    I have two tables and while I set the first table's property is visible , second table's property is invisible.When the screen is loaded, I want to make the first table visible and second table invisible. When I click any row in the table, I want to open q new table below first table.How can I do?How can I change the property of the table? Can anyone share with me the sample code for this.

    Hi Mehmet,
    Create 3 context attributes with type WDUI_VISIBILITY
    and in the Layout bind these with the Corresponding TABLE Controls
    VISIBLE property.
    and set these in WDDOINIT()
    wd_context->set_attribute( name = 'FIRST_TABLE_VISIBLE' value = if_wdl_core=>visibility_visible ).
    and table SELECT event.
    wd_context->set_attribute( name = 'FIRST_TABLE_VISIBLE' value = if_wdl_core=>visibility_visible ).
    Regards
    Abhimanyu L

  • Select property of a variable

    I have 50 different bool variables (indicator LEDs) & depending on
    the situation I want to change the property of one of the variables.
    Is there any way to select programmatically to select the which property of the variable I am going to change.
    I dont want to make 50 different property nodes for each variable.
    I want to have one property node and depending on the situation I want to assign that property node for one of the variables.
    I have to do this because, I have to change the property of the LEDs in
    so many  times in the program in different postitions.
    50 property nodes will make it hard to see the program.
    Pls help in this matter.
    Naushica

    I have a similar (somewhat similar) issue..  I did read what tst proposed... many times over...
    Here is the scenario. 
    I have many controls and indicators that I want to change properties from visible to invisible and back to visible.
    They start by being invisible.  Depending on operator selection some indicators / controls may become visible.  And again, based on certain selections, they may become invisible (again) and others become visible.  The controls & indicators are of different types, from boolean, text, numeric, image, etc...
    The main vi, which was relatively clean now has become cluttered with approx 60 (seventy) property nodes which make the control / indicator visible / invisible.
    There are other property nodes (approx 10) which modify values based on selections... We won't get into those at this time.
    Is there a way other than clusters to reduce the number of property nodes to something like 5... (maybe 10).  I do know about the references...  What I'd like to accomplish is using an array of element names (ctrl / indicators) and feeding a loop which would set the appropriate attribute; especially since the property is chnaged in groups of elements at a time.  
    How to explain this....  so that it makes sense...
    Take a look at the attached image.  The simplest form of the question would be:  "I want to have a single property node inside a loop which would make all seven (7) controls become invisible".
    -- now I need a coffee --
    JLV
    Attachments:
    property nodes.JPG ‏17 KB

  • How can I have multiple-selection list box "select at least one checkbox" option active only when the section it's in is visible?

    Hi, I'm using SP13 and InfoPath2013.
    I created a custom form and published it to SP13 document library.  This form has many MSLB.  Depending on the checkboxes selected in the 1st MSLB, the other MSLB will either hide or show.  Each MSLB is in its own section.  The requirement
    is to have each MSLB to have at least one checkbox selected.  Well, the problem is that when that MSLB isnot checked in the 1st MSLB it is not visible and shouldn't require any checkbox to be selected.  However, the form can't get submitted instead
    an error dialog would pop up and ask user to make a selection for MSLB that is not even displayed.  Is there any way to fix this besides unchecking all MSLB to be not required at least one selection?  Thank you.

    Eric, 
    I follow your reply post here and still doesn't work.  I also noticed your screen shot of selecting a field is not the same as what I see in InfoPath 2013.  
    Here is what I did, 
    1.Check At least one selection required for
    these Multiple-selection List Boxes
    as you want .
    2.Create a Formatting  rule for the 2nd
    Multiple-selection List Box.
    3.Add a  Condition as below:
    4.  I get a validation error if I don't
    select at least one checkbox in the hidden MSLB control when submitting.
    I think I'm following all the steps correctly
    but please let me know if I'm not.

  • In the old Numbers I could change the colour of a checkbox using rules - I cannot seem to do this in new Numbers 2013?

    In the old Numbers I could change the colour of a checkbox using rules - I cannot seem to do this in new Numbers 2013?
    I have an old Numbers sheet where I could make the checkbox Cell go Green when ticking "Equal to" TRUE. When I open the old sheet it into new iWork it functions correctly. But I am unable to copy or paste the rule - nor recreate it.
    Any suggestions on how to create a Conditional checkbox cell that goes green once ticked would be most apprecicated.
    Thanks - Steve

    Numbers 3.0 is missing the logic-based "equal to TRUE" or "equal to FALSE" conditions for conditional formatting.  The replacement is text based: "text is TRUE" or "text is FALSE".  You can apply these rules to cells formatted as checkboxes.

Maybe you are looking for

  • Autocomplete and linking issues with gchat on apple messages

    So I'm having a couple related(ish) problems with apple messages and gchat/hangouts/whatever it's called these days and imessage on my laptop: 1) Gchat contacts sometimes do and sometimes don't autocomplete when i cmd+n for a new message and then sta

  • Error Msg while trying to post GR

    An error occurred when I try to post  GOODS RECEIPT, which is " G/L account 300010 does not exist in chart of account CAUS" ,  I do not see the G/L account anywhere typed? How do I resolve this issue, so I can post the GR. Thanks. Steve.

  • Workbench - create new project error

    This is what I get if I try to create a new project. I am on Sun Solaris SunOS Release 5.8 Version Generic_108528-14. java.lang.NullPointerException      at oracle.toplink.workbench.persistence.BldrDatabasePlatformPersistenceTools.loadPlatformNamesFr

  • Flash MX 2004 issues

    We get this error message when attempting to save to a network drive or locally. "An error occurred while attempting to write to a file." Any advice?

  • Transport requests are modifiable after backtransport

    Hello , I am SAP BI consultant and working on BW implemantation project. Last week we have imported many transport request to quality system but because of some wrong transport from another team , Client has restored the backed of last week day 1. So