Collected Tooltip does not display in SSRS 2008 or SSRS 2008 R2 on a pie chart

I've tried everything I can think of, but setting the Custom Property "Collected Tooltip" for a pie chart where there is data that will be "collected" into an "Other" slice doesn't appear to work.  I am using SQL Server 2008 and SQL Server 2008 R2,
and neither one seems to display the collected tooltip.   I have no difficulty getting a tooltip to appear for all the other slices in the pie, using the series tooltip property.    I've searched this forum as well as Google, and the
only things I managed to find with any reference was one page that shows you where all those custom attributes are and how to use them.    Is there a bug here, or am I doing something wrong?
Steve

Hi Steve,
I have reflected the issue to the product team, and confirmed this known issue possibly would be fixed in the next release.
If the issue is urgent to your business, it is recommended that you contact Microsoft Customer Support Services (CSS) via telephone so that a dedicated Support Professional can
assist you in a more efficient manner. Please be advised
that contacting phone support will be a charged call. However, it will be free if this is a product issue.
To obtain the phone numbers for specific technology request please take a look at the web site listed below.
http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS
If you are outside the US please see
http://support.microsoft.com for regional support phone numbers.
Regards,
Tony Chain
Tony Chain [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Similar Messages

  • Groupwise 7 Rule Name does not display Windows 2008 R2

    Under tools and rules on a windows 2008 R2 server the rule name does not display. Any ideas on how to resolve this would be greatly appreciated.

    kdavisb wrote:
    > 2008 R2 server
    I'm pretty sure that the GW7 client is not supported on Windows 2008 R2.
    Danita
    Novell Knowledge Partner
    Upgrading to GroupWise 2012? http://www.caledonia.net/blog/?p=514
    http://www.caledonia.net/gw12upg.html

  • Win 7 IE 11 ToolTips are not displayed on Charting object

    In Win 7 IE 11 the DataVisulation Charting object does not display tooltips on hover.
    This functions properly in WinXP IE8, Win 8.1 IE 11,  Firefox, and Chrome. I've seen similar issues reported, but have not seen a resolution.
    Has anyone out there encountered this issue?
    Thanks,
    Carl

    I am running into the exact same issue. It does not matter if the tool tip is called in code behind or withing the series tag itself. Win7 running IE11 does not show the tool tip on hover/mouse-over. Tested on multiple systems with the same results.
    This can be reproduced using the "Samples Environment for Microsoft Chart Controls".
    Running Microsoft Visual Web Developer 2010 open the project and run in browser to launch the development server. Go to any sample that uses the "tooltip".
    Windows 8.1 or Server 2008 R2 both show the tool tips in IE11. Only seems to affect Win7 running IE11. Safari, Chrome and Firefox all display the tool tip without issue running on the same Win7 system.
    I also tested on two actual server platforms. 2003 R2 fully updates to get the latest .Net browser definitions and on a 2008 R2 server fully updates with .NET 4.5. The results are the same. Win7 running IE11 does not show the tool tips on a simple bar chart.
    Is there a solutions for this or workaround?
    Thanks
    Chuck

  • DataGrid does not display XML data

    Hello, and thanks for reading this...
    I am having a problem displaying XMLList data in a DataGrid.
    The data is coming from a Tree control, which is receiving it
    from a database using HTTPService.
    The data is a list of "Job Orders" from a MySQL database,
    being formatted as XML by a PHP page.
    If it would be helpful to see the actual XML, a sample is
    here:
    http://www.anaheimwib.com/_login/get_all_orders_test2.php
    All is going well until I get to the DataGrid, which doesn't
    display the data, although I know it is there as I can see it in
    debug mode. I've checked the dataField property of the appropriate
    DataGrid column, and it appears correct.
    Following is a summary of the relevant code.
    ...An HTTPService named "get_all_job_orders" retrieves
    records from a MySQL database via PHP...
    ...Results are formatted as E4X:
    HTTPService resultFormat="e4x"
    ...An XMLListCollection's source property is set to the
    returned E4X XML results:
    ...The "order" node is what is being used as the top-level of
    the XML data.
    <mx:XMLListCollection id="jobOrdersReviewXMLList"
    source="{get_all_job_orders.lastResult.order}"/>
    ...The "jobOrdersReviewXMLList" collection is assigned to be
    the dataProvider property of a Tree list, using the @name syntax to
    display the nodes correctly, and a change event function is defined
    to add the records to a DataGrid on a separate Component for
    viewing the XML records:
    <mx:Tree dataProvider="{jobOrdersReviewXMLList}"
    labelField="@name"
    change="jobPosForm.addTreePositionsToDG(event)"/>
    ...Here is the relevant "jobPosForm" code (the Job Positions
    Form, a separate Component based on a Form) :
    ...A variable is declared:
    [Bindable]
    public var positionsArray:XMLList;
    ...The variable is initialized on CreationComplete event of
    the Form:
    positionsArray = new XMLList;
    ...The Tree's change event function is defined within the
    "jobPosForm" Component.
    ...Clicking on a Tree node fires the Change event.
    ...This passes an event object to the function.
    ...This event object contains the XML from the selected Tree
    node.
    ...The Tree node's XML data is passed into the positionsArray
    XMLList.
    ...This array is the dataProvider for the DataGrid, as you
    will see in the following block.
    public function addTreePositionsToDG(event:Event):void{
    this.positionsArray = selectedNode.positions.position;
    ...A datagrid has its dataProvider is bound to
    positionsArray.
    ...(I will only show one column defined here for brevity.)
    ...This column has its dataField property set to "POS_TITLE",
    a field in the returned XML record:
    <mx:DataGrid width="100%" variableRowHeight="true"
    height="75%" id="dgPositions"
    dataProvider="{positionsArray}" editable="false">
    <mx:columns>
    <mx:DataGridColumn width="25" headerText="Position Title"
    dataField="POS_TITLE"/>
    </mx:columns>
    </mx:DataGrid>
    In debug mode, I can examine the datagrid's dataProvider
    property, and see that the correct XML data from the Tree control
    is present. However, The datagrid does not display the data in any
    of its 6 columns.
    Does anyone have any advice?
    Thanks for your time.

    Hello again,
    I came up with a method of populating the DataGrid from the
    selected Item of a Tree Control which displays complex XML data and
    XML attributes. After the user clicks on a Tree branch, I call this
    function:
    public function addTreePositionsToDG(event:Event):void{
    //Retrieve all "position" nodes from tree.
    //Loop thru each Position.
    //Add Position data to the positionsArray Array Collection.
    //The DataGrid dataprovider is bound to this array, and will
    be updated.
    positionsArray = new ArrayCollection();
    var selectedNode:Object=event.target.selectedItem;//Contains
    entire branch.
    for each (var position:XML in
    selectedNode.positions.position){
    var posArray:Array = new Array();
    posArray.PK_POSITIONID = position.@PK_POSITIONID;
    posArray.FK_ORDERID = position.@FK_ORDERID;
    posArray.POS_TITLE = position.@POS_TITLE;
    posArray.NUM_YOUTH = position.@NUM_YOUTH;
    posArray.AGE_1617 = position.@AGE_1617;
    posArray.AGE_1821 = position.@AGE_1821;
    posArray.HOURS_WK = position.@HOURS_WK;
    posArray.WAGE_RANGE_FROM = position.@WAGE_RANGE_FROM;
    posArray.WAGE_RANGE_TO = position.@WAGE_RANGE_TO;
    posArray.JOB_DESCR = position.@JOB_DESCR;
    posArray.DES_SKILLS = position.@DES_SKILLS;
    positionsArray.addItem(posArray);
    So, I just had to manually go through the selected Tree node,
    copy each XML attribute into a simple Array, then ADD this Array to
    an ArrayCollection being used as the DataProvider for the DataGrid.
    It's not elegant, but it works and I don't have to use a Label
    Function, which was getting way too complicated. I still think that
    Flex should have an easier way of doing this. There probably is an
    easier way, but the Flex documentation doesn't provide an easy path
    to it.
    I want to thank you, Tracy, for the all the help. I checked
    out the examples you have at www.cflex.net and they are very
    helpful. I bookmarked the site and will be using it as a resource
    from now on.

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • User-Defined Type does not display values in Table Data grid

    I have a User defined Type that is a collection of one character VARCHAR2 values. In the Table Data grid it does not display the character values. I know on all our other Oracle development applications these values display. Is this a bug or is there a snippet to display these values?

    Version: 1.0.0.15
    DB: 10.2.0
    Workstation OS: Windows XP

  • Xcelsius Present - Pie Chart Does Not Display

    I am evaluating a trial copy of Xcelsius Present and I am having trouble with creating a Pie Chart. I have imported my spreadsheet and have made my data selection, but the pie chart does not display. I have used Crystal Reports in the past and have never run across the problem.  I have tried to create and import a new spreadsheet with the data needed for the pie chart, but I have the same problem with the chart not loading. This problem does not occur with other charts that I am creating.
    Can anyone make a recommendation on what to do?
    Thanks.
    Anita

    I'm having the same problem with the Xcelsius Present 2008 evaluation copy (5.3.0.0).
    No matter how pie chart data is formatted, there is nothing displaying.
    I'd like to know whether this is a known bug or whether this is only in the eval copy. This would prevent me from buying the product.

  • TDS Enteries  does not display AP Invoice in  Outgoing Payments

    Hi All,
    I am Using SAP 2007 B PL 08.
    I am Using TDS Addon Ver. 4.8
    I have Create the one Vendor . In this Vendor I have Select the WTax Codes Allowed is  Contractor
    Now i have create Service AP Invoice.
    Journal Entry is
    Vendor  is Credit - 98
    TDS Payable Contractor is Credit - 2
    Security Charges is Debit - 100
    Now i have Create the OutGoing Payments.that time i have select the Type is Account.
    We take account is TDS Payable Contractor Account after i Click on Select TDS Entries button
    So  TDS Entries Windows Open. but dose not display the AP invoice.
    My Issue is TDS Enteries  does not display AP Invoice in  Outgoing Payments
    So Please any one can know the Solution?????
    Dixit Patel
    Edited by: Dixit Patel on Nov 28, 2008 1:14 PM

    hi Dixit Patel,
    You can contact Harish or Sushanth of Citixsys at the following email Id:
    harish.kumar(at)citixsys.com
    sushant.mohanthy(at)citixsys.com or
    if required contact Harish Kumar (Citixsys) on 01142696666
    Regards,
    Abhishek

  • [svn:fx-trunk] 13128: Fix for ASDoc tooltips does not show ASDoc for some functions

    Revision: 13128
    Revision: 13128
    Author:   [email protected]
    Date:     2009-12-21 13:46:32 -0800 (Mon, 21 Dec 2009)
    Log Message:
    Fix for ASDoc tooltips does not show ASDoc for some functions
    QE notes: None.
    Doc notes: None
    Bugs: SDK-24751
    Reviewed By:Paul
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24751
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java

    Welcome guy -
    Unless you are using Spry menus as a learning experience, you should move forward to a menus system that will display properly on the millions of portable devices that won't work with Spry which was deprecated 2 years ago.
    Many are using JQuery menus or pure HTML/CSS menus.
    If you wish to continue your Spry for learning experience, we'll be glad to assist; please let us know.
    By the way, your submenus are not showing because you need to add the red value to this rule in your vertical CSS
    ul.MenuBarVertical ul.MenuBarSubmenuVisible{
        width: 220px;
        left: 180px;

  • Adobe Bridge CS3 - does not display thumbnails for Canon 40D or 50D RAW files

    I wanted to use Bridge to view my Canon EOS 50D RAW files and it does not display the thumbnails, just icons. I checked my 40D cr2 files and saw same thing.
    I have purged the cache and rest the cache preferences and it has not helped. I would like to be abl eto view the thumbnails of the RAW files via Bridge if possible. Jpg files and Tif files can be viewed without any issues.
    Am using Bridge version 2.1.1.9 and Pshop CS3 10.0.1

    I have the exact same problem. I can view my RAW file thumbnails (which are .ARW files from my Sony A200 camera) in the Finder and in other applications, such as Preview, but not in Adobe Bridge CS3. I know that I did try purging the cache at one point to see if that would fix it, but then I didn't know what to do after that. Before I purged the cache, I was able to view RAW thumbnails in Bridge, but then they would not increase in size when I tried using the slider (at the bottom right of the Bridge window)

  • Aperture 3 project does not display any images in one Project

    This is a strange situation.  The bullets below outline the situation:
    The project does not display any images
    When I place the pointer over the project it shows there are 500+ images
    I have located the RAW images stored in my aperture library
    I can pull up the images using a smart folder and searching for photos taken on the event day
    This is happening only to one of my projects that I know of (weird!!)
    I have tried to 're-add' the image by both importing and dragging and dropping into the project, neither works
    I tried the following basics:
    Fixed permissions
    Rebuilt the database
    Tried to re-import the data, but when I have the 'don't import duplicates' these are not an option
    Found the images in my Aperture library
    I created another project and drug all of the images into that project
    Any idea how I can fix this?
    My fear is that if I delete the original project, the original master images will be deleted.

    The most common cause of this is some sort of stuff in the search box at the top of the browser that you don't expect to be there. Just clear it and all your images should show up.
    RB
    One note - if you drug your images from one project to another it moves them vs copies them unless you hold down the option key.

  • MENU item selection does not display drop down in ITS enabled transaction

    Hello,
    We are experiencing a strange behavior between two portal env.
    1. DEV.
    For example we have transaction MM01 display in the Portal via ITS (integrated). The end user can select the Menu Tab and the System Tab and the drop downs appear as expected.
    2. Prod
    Same  scenario as above. Only this time, end user is unable to select the button. The Menu and System Tab dont appear greyed out but selecting it does not display the drop down.
    Material, Edit GoTo Defaults are some of the links under the Menu tab for MM01.
    Very confusing. And this is the behavior in Prod for all transactions. Any ideas on why this is happening would be greatly appreciated.
    The architectural difference is that DEV has no Web Dispatcher versus Prod has the Web Dispatcher.
    We are on EP 7.0
    Many thanks.
    Regards,
    Sunil

    Thanks. Now, I realise this may cause dismay to some, but I have now solved the problem, and just wanted to share my experience with those even less savvy than myself. In Dreamweaver, the Spry css styles are arranged with little or no hint as to which style controls what. I found that there is a rule in the sub-menu styles that controls the little graphic arrows which indicate that there are dropdown subs under the tabs. I had removed these arrows to make way for my background images. However, the rules that control their positioning by percentage were still there, causing my images to display incorrectly. Of course, there was no way anyone could have spotted this and helped me as the fault was in the external spry css file, not the page code. So many thanks to vw2ureg for looking anyway. Regarding the page code, which you have flagged up, would you mind elaborating on what you see wrong here? I'm none the wiser. Many thanks again.

  • Product Revenue Bookings and Backlog Dashboard does not display any data

    Product Revenue Bookings and Backlog Dashboard does not display any data even though the load completed successfully.
    They are able to see just the parameters.
    Not sure if the upgrade of the database from 9.2.0.6 to 10.2.0.3 is a factor.
    What can I check?
    Is there some table to verify that the data exists for display in the Product Revenue Bookings and Backlog Dashboard?
    Screenshot is at:
    https://gtcr.oracle.com/gtcr-dir/gtcr_5637/6415786.993/Product_Revenue_Bookings_Backlog_Dashboard.doc
    Support suggested to create a new request set and run the initial load with load all summaries option; but there was no change in the Product Revenue Bookings and Backlog Dashboard.
    Any ideas?

    hi
    We have faced the similar problem after the upgrade to 10G
    What we did was
    Ran the initial load of time dimension, Item setup request set, and the request set of all the dash board in the clear and initial load mode..
    we were able to get the data once the clear and load is completed successfully
    Regards
    Ramesh Kumar S

  • REMOTE app on iPhone does not display Cover Art

    I use the Apple REMOTE App on my iPhone to control my iTunes music library on a Mac. The REMOTE App controls the iTunes playback properly. However, the Cover Art for each song does not display on the "song" screen - showing the song currently playing. Across my iPhone screen (where the Cover Art should appear) are the words containing album of the song). The name of the song and album correctly appear at the top of the screen.
    What is interesting is that when I hit the back arrow (left side top on song screen), all of the Cover Art appears in small thumbnails. The Cover Art also appears in other displays (for example, the currently-playing Album) using REMOTE on my iPhone. This means that the cover art is being transmitted to my iPhone - HOWEVER IT DOES NOT DISPLAY ON THE SONG SCREEN.
    Can anyone kindly help me resolve this - because I would really like the Cover Art to display properly on the song screen.  Thank you.  Dale

    Nezmo, This is really unbelievable.  I have suffered from the issue I described for SEVERAL YEARS.  Today, for some reason I decided to make this post on the Apple discussion board.  And, today the issue was fixed by Apple.  I just downloaded the update to the REMOTE app and the cover art now shows beautifully on my iPhone 6 plus.  Thanks.  Dale

  • CM14 BI Publisher - modifying an existing Data Model, the Graphic View in Query Builder does not display

    I am trying to edit the default forms/reports that come with CM14, trying to edit the data model, data set, (to get to the old Infomaker style graphic view) , the Query model does not display (error the list of tables is too long..) Oracle tell me the limit is 60,  there are not 60 tables referenced in any CM report.
    Does this Query builder view work at all on any report?
    (bigger question, we are moving from CM12, should we move to CM13 which works with infomaker?)
    Thanks,
    Paul L

    Kurt, thanks for your replies.
    A couple of notes/clarifications.
    1.     You are correct that BI works better in Firefox--I have observed issues with the BI display when using IE.  I would recommend using Firefox too.
    2.     You are correct about the way to get to the Query Builder to see a graphical view of data tables.  There are basically two issues with this that I mentioned, but will re-iterate:
    a.  If you have an EXISTING query in the data set, then click the "Query Builder" button, this will remove the existing query that's there, it will NOT display the existing query in the query builder.  Query Builder works only to create a NEW query from scratch.
    b.  Query builder is limited to selecting 60 fields max in your query.  If you are creating a large report with many tables, you may find that 60 fields is not enough.  For that you will have to work in the SQL edit screen rather than using the query builder.
    I would impress on anyone developing CM14 reports that they become familiar with the database schema and relationships to avoid problems when developing your BI reports.  You should be able to find the tables and joins documentation in the knowledgebase.

Maybe you are looking for

  • Error while running J2ME  program in KtoolKit

    hi, i am doing my project in j2me as i m developing a Jabber client .where my Client application has to connect jabber server through GPRS... so while running the project in KToolKt it ask that client application wants to send the information this re

  • How do I connect to a database on a different machine(URGENT PLEASE)

    Hello all I have a Web server which is on a Linux box but the database I wish to connect to is on Windows NT. How can I connect to the data source. Both Linux and Windows machines are on the same network at the moment but will change later on. Please

  • Creating a mirror image page

    I have a twoColElsLtHdr page that suits a number of languages but I now need to create a twoColElsRtHdr version to accommodate the Arabic and Farsi languages which read from right to left. Do I need to start from scratch or is there a fast way to do

  • What is the syntax for searching Firefox History?

    I remember reading an article about war a few days ago. When I search my extensive Firefox history for "war" (without the quotes) I get results for "warm", "warning", etc. I have searched Firefox/Mozilla support to no avail. Except for similar reques

  • Switching panels in diffrent states

    Hi all, I have a lot of panels which I'm switch between them using card layout. My problem is that the switching between the panels isn't constant and it is depent of the application current state. For example: STATE1: Screen1 (next -->) Screen2 (nex