Enable disable linkbar links in datagrid itemrenderer.

Hi All,
I have to show the linkbar in datagrid column as a renderer and enable and disable the links according to attached documents codes.
here are my sample code
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init();">
<mx:Script>
    <![CDATA[
        import mx.collections.ArrayCollection;
        [Bindable]
          public var arrColl:ArrayCollection = new ArrayCollection();
          public function init():void{
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
              arrColl.addItem(["1,2,3","1,2"]);
              arrColl.addItem(["1,2,3", "1,3"]);
    ]]>
</mx:Script>
    <mx:DataGrid id="dg" dataProvider="{arrColl}" width="200" height="500" x="510" y="168" >
        <mx:columns>
            <mx:DataGridColumn  itemRenderer="assets.components.linkbarItemRenderer"  />   
        </mx:columns>
    </mx:DataGrid>
</mx:Application>
My item renderer linkbarItemRenderer.mxml as
<?xml version="1.0" encoding="utf-8"?>
<mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="init();" >
<mx:Script>
    <![CDATA[
        import mx.controls.LinkButton;
        import mx.collections.ArrayCollection;
        import mx.controls.Alert;
        [Bindable] public var arrColl : ArrayCollection = new ArrayCollection();
        public var arrDocType : ArrayCollection = new ArrayCollection([{data:"1" , label:"AP"},{data:"2" , label:"AR"},{data:"3" , label:"BOL"}]);
        public var attDoccodes : Array;
        public function init():void
            try
                var requiredDoc :String = data[0];
                var attachDoc : String = data[1];
                var reqDocCodes :Array =  requiredDoc.split(",");
                attDoccodes = attachDoc.split(",");
                if(reqDocCodes != null)
                    //add the links of required documents.
                    for(var i:int = 0 ; i<reqDocCodes.length; i++ )
                        var obj:Object = new Object();
                        for(var j : int = 0; j < arrDocType.length; j++)
                            if(arrDocType.getItemAt(j).data == reqDocCodes[i])
                                obj.label = arrDocType.getItemAt(j).label;
                                obj.data  = reqDocCodes[i];
                        arrColl.addItem(obj);
                callLater(enableDisalbeLinks);
            catch(error:Error)
                Alert.show("error ::"+error.getStackTrace());
        public function enableDisalbeLinks():void
            try
                //disable all links first
                for(var q:int=0; q< arrColl.length; q++)
                    LinkButton(linkBarId.getChildAt(q)).enabled = false;   
                if(attDoccodes != null)
                    for(var k:int = 0; k<attDoccodes.length; k++)
                        for(var l:int = 0 ; l<arrColl.length; l++)
                            if(arrColl.getItemAt(l).data == attDoccodes[k])
                                LinkButton(linkBarId.getChildAt(l)).enabled = true;   
            catch(error:Error)
                Alert.show("error ::"+error.getStackTrace());
    ]]>
</mx:Script>
        <mx:LinkBar id="linkBarId" dataProvider="{arrColl}" />   
</mx:HBox>
It renderes the link in correct form in datagrid first time.when i scroll the datagrid the rows are miss up with each other and links are not shown propers in enable/disable format.
Thanks,
Amol.

Hi All,
It was my fault. Got it work now.
When I redirect to PR, it also calls my page initialization method and clear all data. I added a parameter and issue resolved.
Thanks & Regards,
KJ

Similar Messages

  • Enable / disable combo box in datagrid cell

    I have a datagrid with 8 columns 2 check boxes a text box and
    5 combo boxes. I am trying to disable the combo boxes if the first
    check box is not checked. So far I am able to disable the entire
    column with the combo box in it, but what i am trying to achieve is
    if the check box is false then the 5 combo boxes are to be
    disabled.
    So what I am asking in a nutshell is is there a way to enable
    or disable particular cells in a datagrid ?
    Example
    of what I have already done
    Any suggestions will be gratefully received.

    I put the following code in that I took from samples:
    Bindable]public var test:ArrayCollection;
    private  
    function init():void
    test =
    new ArrayCollection([{label:"High", data:"high"},{label:
    "Medium", data:"medium"},{label:
    "Low", data:"low"}]) 
    Then in the mxml:
    <mx:DataGridColumn 
    headerText="From Fiscal Period">
    <mx:itemRenderer>
    <mx:Component>
    <mx:ComboBox dataProvider="{test}">
    </mx:ComboBox>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    I still get the same error: 1120: Access of undefined property test.

  • Enable/Disable a link based on a column value

    Hi Team,
    I am Using Jdev 11.1.1.5.0.
    I have a link button named 'register'on first page by clicking on to which will navigate to next page where i will get the option of selecting for the courses through checkboxes.
    When all the checkboxes are checked by clicking on the submit button i am able to update the checkboxes value in the backend and able to navigate to the first page.
    I can count that all the checkboxes are checked.
    My requirement is if all the checkboxes are checked i wanted to disable the register button other wise keep it as enable.
    The data on the first page and second page are joined using a view link.
    the data on the first page contains employee records and the data on the second page contains record for the courses selected for the corresponding employee.
    Please let me know what is the correct approach for it.
    Kindly guide me in it.
    Thanks,
    Ajay

    Which scope is the bean defined in?
    You can put the bean in pageFlowScope. This way it can be accessed from both pages. Now you implement a method in the bean which returns the count or better a method which make the decision if all check boxes are checked and returns true if yes and false otherwise.
    The signature of the method looks like
        public boolean isAllChecked()
            // calculate if all marks are checked
            return true;
        }and in your page you access the method on the disabled property like
                  <af:commandButton text="commandButton 1" id="cb1"
                                    disabled="#{pageFlowScope.YUOT_BEAN.allChecked}"/>Timo

  • Design for enable/disable subtab links

    Hi All,
    I have 4 subtabs, after submit button clicked, then the second tab should be enabled and thrid, fourth should be still disabled.
    I have code to disable/enable subtab in PR (webBean only can be modified in PR) as following:
    OALinkBean pubSubTabLink =
    (OALinkBean) webBean.findChildRecursive("PubSubTabLink");
    if(pubSubTabLink != null)
    pubSubTabLink.setDisabled(brand);
    My issue is, when I capture submit button event in PFR, then I'm trying to redirect same page (setForwardURLToCurrentPage) PR to enable second subtab but all info on first tab are gone. I did retain AM when using setForwardURLToCurrentPage.
    Is there any way I can keep my first tab text info?
    If not, any suggestion to disable/enable subtabs?
    Thanks & Regards,
    KJ

    Hi All,
    It was my fault. Got it work now.
    When I redirect to PR, it also calls my page initialization method and clear all data. I added a parameter and issue resolved.
    Thanks & Regards,
    KJ

  • Hide/show or enable/disable report column

    Hi,
    I m using Oracle Apex4.0
    I m having an interactive report which has a cloumn with Link provided to it.
    I want to enable/disable the linked cloumn for certain records or else the link column can ba hidden/shown for certain records.
    How can it be done?

    Hi,
    Did you look at the Denes example ? It looks as good solution for you.
    Is your report in format like this ?
    col_1 col_2 col_link
    col_1 - column1
    col_2 - column2
    col_lnk - column with link
    in the link there is some redirection to detail page where you can provide update ?
    the link should contains record ID. correct ?
    The only possibility in your case is Denes or some other simple solution. (case solution)
    It should be good if you reproduce it on apex.oracle.com
    We can provide more help to you in there.
    Regards
    J :D

  • Links in emails are not opening.. Have tried rebooting, enabling/disabling restrictions in settings but all in vain! Any help or suggestions would be gladly welcomed.

    Anyone know anything about getting links to open in emails? It's as though links are just not responding.. Have tried settings/general/restrictions and enabling / disabling but to no avail.

    A few more things you could try:
    Settings->General->Reset->Reset All Settings...you will then have to log back into your wifi network
    If you have access to your router's settings you could try changing the channel your network is on.
    Try changing the password/key of your router...a bit of a pain since all other devices will have to login again but sometimes it can help with connectiviity issues.
    Also, this article may help to troubleshoot your home wifi setup:
    Recommended settings for Wi-Fi routers and access points - Apple Support

  • How can i disable a link/button after clicked while content active

    hello all
    i am building a website all on one page and am using the
    spry framework so that it displays when clicked fades in
    the issue is i dont want the link to work again after its been
    clicked ie when the link is active then
    when another link is clicked it is re activated and
    can be used again!?
    i am using the behaviours panel in dreamweaver?
    cant seem to find an option to
    toggle this function
    i am not great at js or html
    but any help would be appreciated!
    many thanks
    ]p

    Because we are not privy to your code I shall answer this in general.
    You can use the Spry Element Selector to target your link and to disable that link. When clicking another link you could cycle through your links and enable them before disabling the newly clicked link.
    More info on the Spry Element Selector can be found here http://labs.adobe.com/technologies/spry/articles/element_selector/index.html and here http://labs.adobe.com/technologies/spry/articles/element_selector/selector_examples.html

  • Disable a link...how?

    I am asking this question again, because I still haven't found an answer that works. I must be missing something simple.
    How do you disable a link so that you get the disabled link format color?
    Someone in a previous post indicated that you uncheck the enabled link in inspector, but that simply makes the link normal text and does not display the disabled link format color.
    What I am trying to do: If I can disable a link, then I can use the disabled link format color to indicate the current page in a customer text navigation bar.
    Any ideas?
    thanks
    bob

    If you want to completely waste your time you could email .....
    http://www.apple.com/feedback/iweb.html
    Try calling Mac support if you still have access to it under normal or extended warranty.

  • [svn:fx-trunk] 11810: Fixing up some logic around pauseWhenHidden ( there were some bugs) and also changing some logic around enabling/ disabling.

    Revision: 11810
    Revision: 11810
    Author:   [email protected]
    Date:     2009-11-13 17:07:56 -0800 (Fri, 13 Nov 2009)
    Log Message:
    Fixing up some logic around pauseWhenHidden (there were some bugs) and also changing some logic around enabling/disabling.  Also fixing a small documentation bug on VideoPlayer2.scaleMode.
    When a video component (or one of its ancestors) becomes disabled, the video pauses.  When it becomes re-enabled, we do not play the video.  This behavior is baked in to VideoDisplay and does not depend on the pauseWhenHidden flag.
    QE notes: -
    Doc notes: -
    Bugs: SDK-24182, SDK-24181, SDK-24193
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24182
        http://bugs.adobe.com/jira/browse/SDK-24181
        http://bugs.adobe.com/jira/browse/SDK-24193
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoDisplay.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as

    Thanks Erik,
    If nothing else, this huge list of updates and fixes, shows clearly that the Logic Dev team is working hard on fixing and improving LPX to a major degree.... and from the list of fixes done.. show they do read the bug reports submitted!
    As an aside....
    I recall how all the 'naysayers' prior to LPX (and in some cases, since...)  were proclaiming how Logic was dead, the team was being disbanded, we won't see any further development, the Dev team doesn't listen or care... and so on....... I wonder where those people are now?

  • Cl_wd_table - enable/disable certain cells

    Hello together,
    I'm looking for a good solution to enable/disable certain cells in a table.
    For example I have the following table (the real table is more complex - with buttons and so on...):
    User
    ToDo
    State
    A
    Todo1
    Done
    B
    Todo2
    In Process
    A
    Todo3
    In Process
    B
    Todo4
    Done
    I have different users which are working on this tabe:
    - Administrator: Can edit whole table (except State column)
    - Employee: Can only edit State Column where he is assigned
    I think it would be difficult to work with context attributs in this case?
    Is it possible to Loop over all table lines an set "enabled" Attribut in the coding?
    Best Regards

    Hi Uwe,
    Check this below links
    How to edit conditionally row of a ALV table in Web Dynpro for ABAP
    ABAP WebDynpro: Can edit a cell in a column?
    Thanks
    KH

  • DataGrid, itemRenderer, viewStacks

    I am using an inline itemRenderer for an image on a Datagrid
    which rests in a viewStack. However, if the Datagrid is not in the
    first index of the viewStack the itemRenderer will not load. I've
    tried changing the creationPolicy of the viewStack with no avail.
    Any ideas?
    Thanks
    Ruben

    In the following code (modified version of yours) if you
    remove enabled="false" from the milestoneGrid datagrid it seems to
    work:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    height="200">
    <mx:ArrayCollection id="statusData">
    <mx:Object>
    <mx:itemLabel>M1</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    <mx:Object>
    <mx:itemLabel>M2</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    <mx:Object>
    <mx:itemLabel>M3</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    <mx:Object>
    <mx:itemLabel>M4</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    <mx:Object>
    <mx:itemLabel>M5</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    <mx:Object>
    <mx:itemLabel>M6</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    <mx:Object>
    <mx:itemLabel>M7</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    <mx:Object>
    <mx:itemLabel>M8</mx:itemLabel>
    <mx:schedDate>01/01/2008</mx:schedDate>
    <mx:startDate>01/01/2008</mx:startDate>
    <mx:endDate>01/10/2008</mx:endDate>
    <mx:user>Bob Smith</mx:user>
    <mx:status>overdue</mx:status>
    </mx:Object>
    </mx:ArrayCollection>
    <mx:HBox borderStyle="solid">
    <mx:Button label="Datagrid One"
    click="gridVS.selectedChild=dg1;"/>
    <mx:Button label="Datagrid Two"
    click="gridVS.selectedChild=dg2;"/>
    </mx:HBox>
    <mx:ViewStack id="gridVS" width="100%" height="100%"
    creationPolicy="all">
    <mx:VBox id="dg1" width="100%" height="100%"
    verticalScrollPolicy="off" horizontalScrollPolicy="off">
    <mx:DataGrid id="milestoneGrid" height="100%"
    styleName="myDataGrid"
    width="100%" dataProvider="{statusData}" rowCount="8"
    variableRowHeight="true" enabled="false">
    <mx:columns>
    <mx:Array>
    <mx:DataGridColumn dataField="itemLabel"
    headerText="Milestone" width="120"/>
    <mx:DataGridColumn dataField="schedDate"
    headerText="Scheduled Start Date" width="120"/>
    <mx:DataGridColumn dataField="startDate"
    headerText="Started"/>
    <mx:DataGridColumn dataField="status"
    headerText="Status"/> <mx:DataGridColumn dataField="endDate"
    headerText="Completed"/>
    </mx:Array>
    </mx:columns>
    </mx:DataGrid>
    </mx:VBox>
    <mx:VBox id="dg2" width="100%" height="100%">
    <mx:DataGrid id="areaGrid" styleName="myDataGrid"
    width="100%" height="100%"
    selectable="true" rowCount="8" dataProvider="{statusData}"
    enabled="true"
    editable="false" variableRowHeight="true" >
    <mx:columns>
    <mx:Array>
    <mx:DataGridColumn dataField="itemLabel" headerText="Area"
    width="270" wordWrap="true"/>
    <mx:DataGridColumn dataField="startDate"
    headerText="Started"/>
    <mx:DataGridColumn dataField="endDate"
    headerText="Completed"/>
    <mx:DataGridColumn dataField="status"
    headerText="Status"/>
    <mx:DataGridColumn dataField="user" headerText="Run
    By"/>
    </mx:Array>
    </mx:columns>
    </mx:DataGrid>
    </mx:VBox>
    </mx:ViewStack>
    </mx:Application>

  • Toggle enabled/disabled on FloorPlan Manager step

    Hi Experts
    I am enhancing one of the standard ABAP WebDynpros for Travel Management.
    In the Overview screen I have added a checkbox which the user selects to indicate that he/she accepts the terms and conditions.
    The checkbox is linked to a WDYBOOLEAN in the controller context.
    I want this checkbox to control the enablement of the "Review" button as well as the "Review and Send" step in the FloorPlan Manager breadcrumb.
    Could somebody please explain to me how I can do this?
    Thanks
    Anton Kruse

    hi, you should process FPM Toolbar element programlly.
    For example, you can use "Process_Event" method, in which you can modify the enable/disable of the standard toolbar element in FPM header.
    1) You should know the Event-ID of the toolbar element
    2) You should  use the following example coding:
    method PROCESS_EVENT .
    *Check the incoming Event ID
      CASE IO_EVENT->MV_EVENT_ID.
        "Disable/Enable the Editable
        WHEN 'EDIT_NOT'.  "You desired Event ID
    3) in that method, you should modify the enable/disable according to the context attribute which you mentioned been bound to the Check box.
    For example, you can also bind one WDYBOOLEAN to the toolbar element "Review and Send""
    In addition, you should know that OIF and GAF are different for toolbar element, you should differentiate them.
    Hope it can help you a little.
    Best wishes~

  • How to Enable/Disable suppressUpload and suppressDownload

    my xml doesnt have this attribute
    how to enable /disable supressUpload and suppressDownload.
    <?xml version="1.0" encoding="utf-8" ?>
    - <MeRepApplication schemaVersion="1.1" id="ZAM_09" version="09">
      <Property name="CLIENT.BUILDNUMBER" />
      <Property name="C_APPLRESOLVE" />
      <Property name="DATA_VISIBLE_SHARED">X</Property>
      <Property name="E_APPLRESOLVE" />
      <Property name="FACADE_C_CLIENT">X</Property>
      <Property name="FACADE_E_CLIENT">X</Property>
      <Property name="HOMEPAGE.INVISIBLE" />
      <Property name="INITVALUE" />
      <Property name="RUNTIME">JSP</Property>
      <Property name="TYPE">APPLICATION</Property>
    - <SyncBO id="ZAM_09" version="2" type="twoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync="true" downloadOrder="1">
    - <TopStructure name="TOP">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="BUKRS" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="ANLN1" type="C" length="12" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="ANLN2" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <ChildStructure name="010">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="BUKRS" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="ANLN1" type="C" length="12" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="ANLN2" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="KOSTL" type="C" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="WERKS" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="STORT" type="C" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="TXT50" type="C" length="50" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="TXA50" type="C" length="50" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
      </ChildStructure>
      </TopStructure>
      </SyncBO>
      </MeRepApplication>

    Just adding on to Nameeta's post, there is a supress download checkbox in the advanced setting s link(Settings -> Advanced Settings) on the client, this will supress downloads for all syncbos and not just for any one syncbo. Also there are no tools in the middleware to add these settings, the only way to do this is to modify the xml manually.
    Best Regards,
    Karthik
    Message was edited by:
            Karthik V Setty

  • WLAN automatic enable/disable?

    Hello:
    I have a WCS 4400 system and run 3 seperate WLANs: 2 WPA secured networks and 1 open, using LDAP authentication.
    Is it possible to schedule, or script, one of these WLANs to automatically disable at 8am and enable at 2pm each day?
    I'm sorry if this has been asked and answered before, I tried searching the KB and google for quite some time, but to no avail. Thanks VERY much to anyone who is able to help in this!

    Thank you for your reply, I appreciate it! Unfortunately I'm not sure how to implement this.
    I see an option in WCS for Scheduling a start time for a WLAN, but no option for a stop time. Or is there a correcsponding CLI command that does this?
    As far as using active directory to implement the scheduled enable/disable I know WCS is linked to my AD through LDAP to allow user control, but I don't know how to use AD to control login times. Can you give me any pointers on how to do this, or point me in the direction of the appropriate manual.
    Thanks again for the help so far!

  • Anyway to selectivily enable/disable bluetooth function for selected apps like papago in iphone.

    Hi,
    Anyway to selectively enable/disable bluetooth function for selected apps like papago navigator in iphone.
    I want to maintain bluetooth connectivity to car headset for handsfree driving while papago navigator on ky iphone continuously guide me on the road using the  iphone speaker. So when someone called me on the phone, it will use the car headset. is there such as apps?
    Rgds,
    Kpk

    Hi,
    In pageflow definition, "Train Stop-->Skip" property controls the enable/disable state.
    If Skip value is true (it can be controlled with EL expression) than related link and button in train components are disabled.
    They are enabled other If Skip value is false (It is default).

Maybe you are looking for