Can summaryPlacement be changed dynamically

Hi,
I wanted to try to change where my summary row would appear
on the ADG so that when an item is closed it would appear on the
group line and when it is open it would appear as the last line.
This doesnt seem to work however, is there a way to change the row
placement?
private function handleItemOpen(event:AdvancedDataGridEvent
):void
Summary2.summaryPlacement = " last";
private function handleItemClose(event:AdvancedDataGridEvent
):void
Summary2.summaryPlacement = "group";
I would have thought that simply changing the string would do
it but alas it does not

Hi Sameer,
Thanks for taking a look at this. I changed the code as
follows:
private function handleItemOpen(event:AdvancedDataGridEvent
):void
Summary2.summaryPlacement = "last";
gc.refresh();
private function handleItemClose(event:AdvancedDataGridEvent
):void
Summary2.summaryPlacement = "group";
gc.refresh();
This causes the group to close immediately after it opens,
which makes it impossible to do anything with the data. You only
get to see it open for a split second. It does move the summary
placement though.
Thanks,
Santiago

Similar Messages

  • How can I make a label for my chart that changes dynamically when I drag selection of data to adjacent column?

    I have a custom budget using Numbers '08 and have labeled a chart in previous versions of my budget but when I tried to update it for the new year I can't figure out how to make the label change dynamically as I drag the selected area to the adjacent column. I have checked Numbers Help and Tutorial videos as wellas the manual and have not found anything that comes close to helping but as I said I had it on previous versions but obviously don't remember how I did it and unfortuanately it is not a very intuitive feature. Thanks in advance for any help on this.

    The linkage appears to be automatic, but when broken, does not reattach itself.
    Redoing the chart isn'r a long process, though, unless you've made extensive format changes to it. Here's my process, which started with a headerless table wiht the Month labels in Row 1 (and a Chart that had an "Untitled" label on the category axis, and ended with the table and chart shown below:
    Click on any cell in the table to activate it.
    Go Table > Add Header Row.
    Select the cells containing the month names. Copy.
    Select the cells in the same columns of the Header row. Paste.
    Select the table. If the Header for the current month is highlighted and the month label is on the table, Stop here.  If not (and it probably will not be), continue.
    Delete the existing Chart (or drag it aside to use as a colour and style reference)
    Unhide any hidden rows used in the Chart.
    Select the cells to be charted.
    Click the Series orientation control (¡¡¡) to change it. The control will turn 90° and move from the column highlight to the row highlight.
    Your table and chart should now resemble the one in the image above. Edit the style as needed and you're done.
    Regards,
    Barry

  • Which part of SGA can be changed dynamically

    Which part of SGA can be changed dynamically in Oracle 9i & 10g

    10g R2: [Managing the System Global Area|http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref376]
    9i R2: [Setting Initialization Parameters that Affect the Size of the SGA|http://download.oracle.com/docs/cd/B10501_01/server.920/a96521/create.htm#998095]
    As always the documentation is available at http://tahiti.oracle.com

  • Can I create a dynamic number of inputs during runtime?

    Can I create a dynamic number of inputs during runtime?
    Oracle 11g
    Application Express 4.0.2.00.06
    Here is my problem:
    We have a table that holds metadata about files (hardcopy or softcopy files).
    We expect we may need more columns in the table at some point and don't want to modify the table or the application.
    So in order to do this I would like to create:
    A table called TBL_FILE with the columns:
    TBL_FILE_ID               NUMBER                (This will be the primary key)
    TBL_FILE_NAME          VARCHAR2(1000) (This will be the name of the file)
    A second table will be called TBL_FILE_META with the columns:
    TBL_META_ID               NUMBER               (This will be the primary key)
    TBL_FILE_ID               NUMBER                (This will be the forign key to the file table)
    TBL_META_COLUMN     VARCHAR2(30)     (This is what the column name would be if it existed in TBL_FILE)
    TBL_META_VALUE          VARCHAR2(1000) (This is the value that record and the 'would be' column)
    So a person can have as much meta data on the file with out having to add columns to the table.
    The problem is how can I allow users to add as much data as they like with out having to re develop the page.
    Other things to note is that we would like this to be on a single page.
    I know how to add we can create multi-row inserts by using a SQL Query (updateable report),
    however the TBL_META_VALUE column in the TBL_FILE_META will sometimes be a select list and other times a text box or number field.
    So I don't see now a SQL Query (updateable report) would work for this and I can't create an array of page items at run time can I?
    Any idea's how I could accomplish this? Is there a better way of doing this?
    Also is there a term or a name for what I am doing by creating these 'virtual' columns in another table?
    I found this method when looking at Oracles Workflow tables.

    Welcome to the Oracle Forums !
    >
    Can I create a dynamic number of inputs during runtime?
    Oracle 11g
    Application Express 4.0.2.00.06
    Here is my problem:
    We have a table that holds metadata about files (hardcopy or softcopy files).
    We expect we may need more columns in the table at some point and don't want to modify the table or the application.
    So in order to do this I would like to create:
    A table called TBL_FILE with the columns:
    TBL_FILE_ID NUMBER (This will be the primary key)
    TBL_FILE_NAME VARCHAR2(1000) (This will be the name of the file)
    A second table will be called TBL_FILE_META with the columns:
    TBL_META_ID NUMBER (This will be the primary key)
    TBL_FILE_ID NUMBER (This will be the forign key to the file table)
    TBL_META_COLUMN VARCHAR2(30) (This is what the column name would be if it existed in TBL_FILE)
    TBL_META_VALUE VARCHAR2(1000) (This is the value that record and the 'would be' column)
    So a person can have as much meta data on the file with out having to add columns to the table.
    The problem is how can I allow users to add as much data as they like with out having to re develop the page.
    >
    Creating Page Items dynamically is not available. You will have to create excess items and hide/show , etc. But you cannot change the Item Type. All in all, too many limitations in this approach.
    >
    Other things to note is that we would like this to be on a single page.
    >
    The 100 item limit will hit you if you go with extra item on page. With Tabular Form that should not be a limitation, unless you are exceeding the 50 item limit of APEX_APPLICATION.G_Fnn items, and the 60 column limitation of Report region with "Use Generic Column Names (parse query at runtime only)" of Dynamic region.
    >
    I know how to add we can create multi-row inserts by using a SQL Query (updateable report),
    however the TBL_META_VALUE column in the TBL_FILE_META will sometimes be a select list and other times a text box or number field.
    >
    If the type if item is variable it only means you need a way to store the item type. Meta Data of the Meta Data.
    >
    So I don't see now a SQL Query (updateable report) would work for this and I can't create an array of page items at run time can I?
    >
    Yes, you can do it. Updatable report/ Tabular Form query can be constructed from the Meta Data using PL/SQL Function Returning SQL Query . It will be a bit of coding in PL/SQL where you use the Meta Data and the Meta Data of the Meta Data to piece together your SELECT with the right APEX_ITEMs. It might have a performance penalty associated with it, but will not be a serious degradation.
    >
    Any idea's how I could accomplish this? Is there a better way of doing this?
    Also is there a term or a name for what I am doing by creating these 'virtual' columns in another table?
    I found this method when looking at Oracles Workflow tables.
    >
    I guess that is just a good TNF. It is the Master-Detail Design Pattern, that sound more modern ? ;)
    Regards,

  • GOS - Generic Object Services - Change dynamically the title of attachments

    Dear Experts,
    how can I change dynamically the title of the single attachment in the attachment-list of cl_gos_manager?
    I hope you can help me.
    Thanks in advance.

    Thanks for reply.
    I solved the problem by the following way:
    - Function ARCHIV_GET_CONNECTIONS for getting all linked documents
    - Showing list in popup with ALV-Grid
    - SET HANDLER handle_double_click
    - Function ALINK_DOCUMETS_DISPLAY_MIX for viewing selected document on popup
    Marco

  • How to change dynamic text on mouse click of an object

    Here is my Project File.
    I'm wanting to change dynamic text when an object is clicked.
    I created 3 dynamic text boxes under "Selected Colors" and gave them instance names of selected_roof_color, selected_trim_color and selected_wall_color.
    When the user clicks a color (ie Arctic White) and then clicks say the roof, I want the "Selected Color" to display "Arctic White" to the right of "Roof:". 
    The colorable areas on the building have been given instances of roof, walls and trim.
    I used this tutorial to change in the textbox underneath the colors when you mouse over a color.
    Thank you for your assistance.

    My first button color is Arctic White and it has an instance of arcticwhite.
    The actionscript for the Arctic White Button is:
    on (release) {
        _root.fillColor = 0xf3f5f4;
        _root.brush.gotoAndStop(1);
    The roof button has an instance of selected_roof_color and my dynamic text field where I want "Arctic White" to appear is given an instance of selected_roof_text.
    Using your suggestion, my main Actionscript now has the following
    roof.addEventListener(MouseEvent.CLICK,roof);
    function roof(e:MouseEvent):void{
    selected_roof_text.text="roof";
    Looks like I've still got something incorrect as the selected_roof_text isn't changing when I click a color onto the roof.
    Can you explain what the F in "roofF" is?  Is that a typo?

  • Set/change dynamic header configuration from ABAP Proxies

    This question is with reference to Async ABAP Proxies.
    Is it possible to set or change dynamic configuration header of an outbound (client) proxy, from within an inbound (server) proxy ? If it is, how do I do it?
    Can someone please advise?
    Thanks,
    Badari

    I am sorry to have to say, that this is not possible.
    Regards
    Stefan

  • Can I create a dynamic report in the server without using a report template

    Hi,
    My company just bought a Crystal Report Server XI and it didn't have a report designer.
    I can't start creating report without the designer.
    The question is can  I generate a dynamic report at runtime (on the crystal report server ) without using report template?
    My project requirement is to use a crystal report server to manage the reports.
    Some client web application will just access this report server.
    I  hope the experts can provide me some guidance.
    regards,
    Rulix
    Edited by: Rulix Batistil on Nov 3, 2008 8:08 AM

    Hi Rulix,
    The latest version of CR Server is 2008. Therefore I'm assuming you are using CR Server 2008.
    New in CR 2008 is the .NET report modification software development kit (SDK). The report application server (RAS) SDK is now available for users of Crystal Reports .NET API without the use of a RAS server. Report modification such as changing, adding, or removing database providers, or adding, removing, or creating report objects, parameters, formulas, and sections can be achieved by accessing the RAS SDK through the Crystal Reports .NET SDK.
    Java developers however receive the JRC and Java SDK documentation through the free Crystal Reports for Eclipse download. This product will be updated on a separate schedule from Crystal Reports.
    Further Information and samples are available in our [Developer Library|https://www.sdn.sap.com/irj/sdn/businessobjects?rid=/webcontent/uuid/5001d5de-f867-2b10-00bf-8d27683c85a0]
    Kind regards,
    Tim

  • How to configure drop-down that change dynamically in Call Scripts

    Hi,
    Would like to know as how to configure drop-down choices that change dynamically based on customer response in Call Scripts / Assessment Scripts of type "Service Request - Survey".
    I've read the following from CRM OnDemand pdf but was not able to figure out how to do that.
    Call Scripting:
    • Reduces agent training time
    • Provides drop-down choices that change dynamically based on customer response
    • Supports personalized interactions based on existing record data
    • Facilitates up-selling and cross-selling
    • Does not require third-party software
    I don't have a concrete requirement as of now, but was trying to check as how it works. Please guide me if any one has implemented the same.
    Thanks in Advance,
    Cheers!!!
    Deepak Veeravalli.

    Arun,
    If you plan to implement the "Querying the Active Directory" based on my code snippet,
    and if you do not have permission [your account must be the part of domain admin] to do so,
    Then still you can do it in least effort through code,
    string usersInXml = SPContext.Current.Web.AllUsers.Xml;your xml string look like this.
    <Users><User ID="2" Sid="" Name="Administrator"
    LoginName="i:0#.w|murugesan\administrator" Email="" Notes="" IsSiteAdmin="True" IsDomainGroup="False" Flags="0" /><User ID="1" Sid="" Name="Murugesa Pandian" LoginName="i:0#.w|murugesan\murugesan" Email="" Notes="" IsSiteAdmin="True" IsDomainGroup="False" Flags="0" /><User ID="1073741823" Sid="S-1-0-0" Name="System Account" LoginName="SHAREPOINT\system" Email="" Notes="" IsSiteAdmin="False" IsDomainGroup="False" Flags="0" /></Users>
    You can user Linq to XML to filter the "LoginName,Name and Email and then populate your drop down list.
    * User must be logged into the site at least once.
    Murugesa Pandian.,MCTS|App.Devleopment|Configure

  • Changing dynamic profile-parameters in batch

    Hello,
    want to change dynamic profile parameters (rdisp/btctime) in batch.
    I know that i can change this in Transaction RZ11 - but i must change it, depending on our
    batchstrategy in the night.
    best way for me - is to change it via batchprogram - with variant 'parameter' - 'value'.
    thank you for help
    best regards
    L.Misof
    R&S

    Hi,
    why don't you use the operation modes for increasing batch work processes in night ?
    Thanks
    Sunny

  • JCO change dynamic in WD

    Hi to all
    We are have a WDApplication there are musst connect two different SAP R/3 systems
                 WD Application
    JCO1 -
    JCO 2-----
    SAP1                               SAP2
    How can i change dynamicly the JCO in the WDApplication?
    Where include the JavaCode?
    Best Regards
    Thomas

    Thomas,
    There are certain restrictions for possible combinations of meta- and data-connections in WebDynpro Adaptive RFC model.
    Please read this post by Bertram Ganz: Re: JCO connection to multiple R/3 Back end system
    Hope you got an idea how to implement your task with SAP Enterprise Connector instead of Adaptive RFC.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Change dynamic propertie with MBean

    Hello,
    I have implemented a MBean config instead of using properties file as It allows me to change the value during runtime, without restarting the server.
    For that, i used the org.springframework.jmx.export.MBeanExporter and register this bean into my spring config file.
    <bean id="ConfigJMX" class="xyz.mbean.ConfigImpl">
    <property name="fileName" value="/tmp/toto.txt"/>
    </bean>
    <bean id="exporter" class="org.springframework.jmx.export.MBeanExporter" lazy-init="false">
    <property name="beans">
    <map>
    <entry key="xyz:name=MyConfig" value-ref="ConfigJMX"/>
    </map>
    </property>
    </bean>
    I have added the following library In the MANIFEST under runtime classpath.
    I have added the following JARs to satisfy classpath issue (I don't know if it is the right way of doing with CEP ?)
    - lib/org.springframework.spring-context_2.5.6.jar
    - lib/org.springframework.spring-core_2.5.6.jar
    - lib/org.springframework.spring-aop_2.5.6.jar
    Compilation is fine, but during the deployment, i have the following exception:
    Caused By: org.springframework.beans.FatalBeanException: Could not create service reference; nested exception is java.lang.IllegalArgumentException: interface org.springframework.aop.IntroductionInfo is not visible from class loader
         at com.bea.wlevs.spring.support.ServiceInjectionBeanPostProcessor.postProcessPropertyValues(ServiceInjectionBeanPostProcessor.java:128)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:998)
    Seems that cep engine refuse to 'register' thoses libraries.
    Could you provide the right way of dealing with this issue ?
    Or
    Do we have a better mecanism to implement what i'm trying to do in CEP (loading and changing properties value during runtime without restarting the server)?
    Regards,
    chenda

    Hello,
    I managed to made it works.
    1/ Remove the jars in the lib folders
    *lib/org.springframework.spring-context_2.5.6.jar
    *lib/org.springframework.spring-core_2.5.6.jar
    *lib/org.springframework.spring-aop_2.5.6.jar
    Theses exist from CEP installation.
    2/ Open META-INF, dependencies tabs, and add the complaining missing package during deployment
    org.springframework.jmx.export;version="2.5.6"
    ... (more)
    3/ Reference the EPN.xml, as following
         <wlevs:adapter id="FileReaderAdapter"
              class="com.oracle.fr.ocs.cep.filereaderconfigdyn.adapter.FileReaderAdapter">
              <wlevs:instance-property name="configMBean" ref="configJMX"/>
              <wlevs:listener ref="inputFileReaderChannel" />          
         </wlevs:adapter>
    Then you are able to change dynamically through JConsole, the value define in your MBean and it works like a charm.
    We can probably use "ConfigurationPropertyPlaceholderConfigurer" class to achive the same goal and this is probably a better integration with CEP mecanism (if properties are writable at runtime).
    http://docs.oracle.com/cd/E23943_01/dev.1111/e14301/overview.htm#CEGGDFEI
    For the moment, i'm not able to made it work (yet) ;-)
    Regards,
    chenda

  • Change dynamic button label

    Hi,
    In apex 3.0 can I have a button which changes dynamic? e.g. if an item is null then the button label to be 'tes' else button label 'ok'?
    Thank you

    Hi,
    Maybe easiest way is create 2 buttons and set condition for those.
    Use condition when item in expression 1 value is / value is not in expression 2
    Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0

  • Gauge Min.Max - change dynamically

    Hi
    I have a gauge that is a dial. All I want to do is be able to scroll up and down the data and have the mins and maxs change.
    I have tried everything to do this - no luck. The fusion manual claims it can be done although I can work it out.
    "Minimum and maximum: Optional values that identify the lowest and highest points on the gauge value axis. These values can be provided as dynamic data from a data collection. They can also be specified as static data in the Gauge Data attributes category in the Property Inspector for the dvt:gauge tag. For more information, see Section 25.4.4, "Adding Thresholds to Gauges"."
    Any ideas? I have put the data in a grid and the metric changes but the min,max do not.
    Example - Fuel Tank - I want the gauge to have the min and max change to reflect the min.max column values.
    id min max fuel
    1 0 200 100
    2 0 500 233
    3 0 1000 130
    Cheers
    Darren

    My gauge looks as simple as this
    <dvt:gauge id="gauge1" value="#{bindings.EmpView1.gaugeModel}"
                             gaugeType="DIAL"
                             animationOnDataChange="ON" >
                    <dvt:gaugeBackground>
                      <dvt:specialEffects fillType="FT_GRADIENT">
                        <dvt:gradientStopStyle/>
                      </dvt:specialEffects>
                    </dvt:gaugeBackground>
                    <dvt:gaugeFrame/>
                    <dvt:indicator/>
                    <dvt:indicatorBase/>
                    <dvt:gaugePlotArea/>
                    <dvt:tickLabel/>
                    <dvt:tickMark/>
                    <dvt:topLabel/>
                    <dvt:bottomLabel/>
                    <dvt:metricLabel position="LP_WITH_BOTTOM_LABEL"/>
                    <dvt:thresholdSet/>
                  </dvt:gauge>

  • Can't view changed data in journal data

    Hi,
    I have implemented JKM Oracle 10g Consistent Logminer on Oracle 10g with the following option.
    - Asynchronous_mode : yes
    - Auto_configuration : yes
    1. Change Data Capture -> Add to CDC, 2.Subscriber->subscribe (sunopsis),
    3. Start Journal
    The journal has been started correctly wothout errors. The journalized table has always the symbol "green clock". All is gook working.
    And then i inserted 1 record in source table, but i can't view changed data in journal data. I can't understand why journal data was generated.
    There are no errors.
    Help me !!!

    Did your designer was on the good context ?
    Look the list box at the top right of the Designer interface.
    You must have the same as the one where you define your journalization.

Maybe you are looking for

  • Remote assistance from Mac to PC

    Hey, my mother occasionally has issues with her PC and asks for my assistance. Before, I just used the Remote Assistance feature in MSN Messenger and fixed the issue using my Dell laptop. Now that I have made the FANTASTIC move to a MacBook, I am loo

  • Number of Datafiles and best pactice for datafile

    Is there a recommended number of data files that should be created with each Oracle database installation? Or best practice?.. What is the typical number? What are the pros and cons of having a large number of data files vs a smaller number? we have

  • Adding existing SQL Server 2012 to a New SQL 2012 Cluster

    We currently have a SQL 20012 Server setup and running on our domain.  We would like to switch this to a clustered environment.  Is it possible to setup the new  SQL 2012 Cluster and add the existing SQL 2012 server as a node in the cluster without l

  • EDM Profile values

    Hi all, Could someone tell me what is the industry standard of profile values under Profile value Category "Quantity", whether it is readings or consumption. As of now when we compute the billed quantity it is calculated as sum of the profile values,

  • How to setup x2 sata W/D Raptor drives not using raid

    Hi all, I am new to this forum so please be kind. I have just got myself this NE02 board along with 2 W/D Raptor SATA Hard Drives. I have seem many instructions in these groups about how to configure sata drives using a raid configuration. What I am