AdvancedDatagrid and Grouped Columns scroller issue.

Dear Friends,
I have one issue. when use the AdvancedDataGridColumnGroup in AdvancedDataGrid.
Description:
In the AdvancedDataGridColumnGroup created renderer with (+/-) icon. when clicking the icon hide/show the columns in the group column. function code
* This function shows/hides the child columns
* @param event:MouseEvent
private function showHideColumn(event:MouseEvent):void
try
var index:int;
for (index=1; index < this._columnGroup.children.length; index++)
if (this._columnGroup.children[index])
this._columnGroup.children[index].visible=this._hideFlag;
imgShowHideColumn.source=this._hideFlag ? collapseColumn : expandColumn;
this._hideFlag=!this._hideFlag;
catch (err:Error)
Alert.show(err.message + "\n" + err.getStackTrace());
I have 25 columns, but only 8 columns visible, other hidden with the scrollbar. when click the (+/-) icon in the group column to hide/show the child columns then throws error in the AdvancedDataGridBaseEx.as:983.
I think this issue is because of invisible columns. if i removed invisible columns and click (+/-) then it work well. hide the sub columns and show.
can you give any suggestions for this issue.

any help ????????? I found OLAPDataGrid .....   I was thinking to send all the data into a bidimensional Array , then pass the data of my bidimensionalArray to  OLAPDataGrid ...  but I'n not sure if Flex is able to do it  .... 
the really serious problem is the special ROW I must use ...
regards
JS

Similar Messages

  • Person and Group column in Document Information Panel in Word

    Hi All,
    Environment: SharePoint 2010 and Claims based Authentication.
    We have a library with "Person and Group" column, "Choose from:" is set to "All Users" and in the "Document Information Panel" when I click on the Address Book (book symbol) it doesn't open the popup to select  the
    user nor it resolves the ids that I put in.
    But if I change the setting for "Choose from:" to "SharePoint Group:" and select any group (tested randomly with some existing groups in that site), now when I click on the Address Book in the DIP it gives me the popup and also resolves
    the ids.
    Any help would be appreciated.

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/868b7d59-06e7-437f-8a3e-5f49e51c7b8d/people-picker-render-error-in-document-information-panel
    Have you by chance looked at ULS logs or taken a network trace during the time the People Picker control is attempting to be rendered? 
    It seems to be a client-side issue. GPOs have been applied to "secure" Office2010.
    Have you ever heard of GPOs causing such issues? As far as I know the people picker is an ActiveX control. There are two settings in the GPO which have something to do with Active X:
    Active X Control Initialization
    Check Active X Objects
    Windows Internet Explorer Feature Control Opt-In
    Beaconing UI for forms opened in Infopath Filler Active X
    Bind to Object
    If this helped you resolve your issue, please mark it Answered

  • What is difference between distribution list and share point group? Can we add distribution list into person and group column of share point list?

    what is difference between distribution list and share point group? Can we add distribution list into person and group column of share point list?

    there is a workaround you can try, create audience and add DL to them and deal with the audience or convert DL to groups
    https://social.technet.microsoft.com/Forums/en-US/02f0d773-8188-4d94-a448-0c04d838b0cf/distribution-lists-in-sharepoint?forum=sharepointgenerallegacy
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • People and group column become empty on EDIT ITEM

    Hi,
    I have 3 people and group columns(Peopleonly type) in my custom content type and list definition from the content type. When I EDIT an item from the list , the values in the 3 people and group column dissappear(meaning the fields are shown empty). Has
    anybody come across this behaviour. Any solution/workaround ?

    Hi Vipul,
    Did this only happen to the EditForm.aspx page of that custom list ? 
    Is this EditForm.aspx page customized ?
    Please also check whether there are some related errors in 14\LOGS.
    Please re-create another new EditForm.aspx page using the SharePoint Designer 2010, then check result again.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Outline and Group columns like in Excel?

    I am trying to do an outline and group of columns like in Excel. I basically, want to hide away (roll up) certain columns in a spreadsheet. I know I can hide them, but I would prefer to group/outline them like I can in Excel so anyone can ungroup them. If I just hide them, they look like they are gone. Can Numbers '09 do this for columns?
    Thanks,
    jeff

    Numbers does not have that capability. It would be difficult to replicate it for columns because there are no filters for columns, just rows. It might be possible to do something for rows by using the filtering capabilities, an extra (hidden) column on which to filter, and checkboxes that you can check/uncheck to show/hide groups of rows.

  • Administration Portal user and group managent performace issue

    Hi
    I have implemented a custom IPlanet LDAP authentication provider which provides
    a realization for the needed authentication, group and user management interfaces
    (UserReader, UserEditor, GroupReader, GroupEditor).
    The authentication provider itself seems to work fine, but I think I found a possible
    performance problem in the WebLogic Administration Portal, when I studied the
    authentication framework by remote debugging. Response times (with just one simultaneous
    user) are quite long (over 8 seconds) with 40 groups on the same hierarchy level
    on the Users, Groups and Roles tree. I'm developing with P4 processor and 1 Gb
    ram (512 Mb allocated for WLS)
    After little debugging I found out that every time a node in the group tree is
    dlicked isMember() method of the authentication provider gets called n * (n -1)
    times, where n is the number of visible groups in the hierachy tree. '
    What happens is that for each group, the membership of all the other visible groups
    is checked by the isMember(group, member, recursive), method call. Even the usage
    of a membership cache in this point didn't speed up the rendering noticeably.
    By placing a break point in the isMember() method and studying the call stack,
    one can see that all the isMember() calls are made during the rendering performed
    by the ControlTreeWalker. For example if there is 40 groups visible in the tree,
    the isMember() method gets called 1600 times. This seems quite heavy. With a
    small number of groups per hierarchy level this problem might not be serious,
    but in case where there would be over 30 000 customer companies using the portal
    and each having their own user groups, it could be an issue.
    The problem does not occur with WebLogic console and browsing of groups and users
    (using the same authentication provider) is fast with it. When a user is selected
    from the user list and the Groups tab is checked, the Possible Groups and Current
    Groups list boxes will get populated. When debugging this sequence, one can see
    that only the listGroups() method of the authentication provider is called once
    per list box and the order of method calls is of order n (rather than n^2 which
    is the case with the Administrator Portal).
    Has anyone had similar problems with Administrator Portal's performance?
    Ville

    Ville,
    You're correct about the performance degradation issue. This is being
    addressed in SP2.
    Thanks,
    Phil
    "Ville" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi
    I have implemented a custom IPlanet LDAP authentication provider whichprovides
    a realization for the needed authentication, group and user managementinterfaces
    (UserReader, UserEditor, GroupReader, GroupEditor).
    The authentication provider itself seems to work fine, but I think I founda possible
    performance problem in the WebLogic Administration Portal, when I studiedthe
    authentication framework by remote debugging. Response times (with justone simultaneous
    user) are quite long (over 8 seconds) with 40 groups on the same hierarchylevel
    on the Users, Groups and Roles tree. I'm developing with P4 processor and1 Gb
    ram (512 Mb allocated for WLS)
    After little debugging I found out that every time a node in the grouptree is
    dlicked isMember() method of the authentication provider gets called n *(n -1)
    times, where n is the number of visible groups in the hierachy tree. '
    What happens is that for each group, the membership of all the othervisible groups
    is checked by the isMember(group, member, recursive), method call. Eventhe usage
    of a membership cache in this point didn't speed up the renderingnoticeably.
    >
    By placing a break point in the isMember() method and studying the callstack,
    one can see that all the isMember() calls are made during the renderingperformed
    by the ControlTreeWalker. For example if there is 40 groups visible inthe tree,
    the isMember() method gets called 1600 times. This seems quite heavy.With a
    small number of groups per hierarchy level this problem might not beserious,
    but in case where there would be over 30 000 customer companies using theportal
    and each having their own user groups, it could be an issue.
    The problem does not occur with WebLogic console and browsing of groupsand users
    (using the same authentication provider) is fast with it. When a user isselected
    from the user list and the Groups tab is checked, the Possible Groups andCurrent
    Groups list boxes will get populated. When debugging this sequence, onecan see
    that only the listGroups() method of the authentication provider is calledonce
    per list box and the order of method calls is of order n (rather than n^2which
    is the case with the Administrator Portal).
    Has anyone had similar problems with Administrator Portal's performance?
    Ville

  • Normal text and single column order issue

    I have a long document text for a textbook, some paragraph I need to use two column (single column), but  the order wrongly changes between text and footnote.
    Footnote should be in the end of the page.

    Check the scripts by Peter Kahrel and see if one of them applies to your case: http://www.kahrel.plus.com/indesign/footnotes.html

  • MAJOR Open Directory issue: Can't assign Users and Groups that DO exist!

    Just noticed the following today:
    When doing Get Info -> Permsissions on files/folders located on my File Server share, Owner and Group show as (unknown).
    When I go into WGM -> Sharing, and look at files/folders on File Server share this way, the Owner and Group fields are blank.
    When I attempt to (re)assign an Owner or Group by dragging them from Users and Groups section of WGM, error tells me User or Group no longer exists. These Users and Groups clearly do exist in WGM -> Accounts.
    When I look at files on File Server share via CLI, instead of actual names for Users and Groups, I see their uid and gid's. Chowning via CLI fails as well.
    I've noticed all Users and Groups with this issue are OD.
    Server is xServe G4 DP 1.0 GNz/1 GB RAM/Mac OS X Server 10.4.7 Unlimited. This servers been running fine as an OD Master for months now. ACL's are enabled on this File Server share point. I've always had weird permissions issues, but NEVER the inability to assign OD Users and Groups to files/folders.
    I'm at a loss here, not to mention my wits end.
    Did my OD become corrupted?
    Any and all help would greatly appreciated.
    PowerMac G4 733 MHz   Mac OS X (10.4.6)   512 MB RAM

    When doing Get Info -> Permsissions on files/folders located on my File Server share, Owner and Group show as (unknown).
    This means that the Finder can't find a match in the accounts/groups database for the numeric UID assigned to those files. Either the records associated to those accounts have been deleted, or the database is corrupt. In either case, you should restore a copy of it from backup.
    (15686)

  • SSRS Reportmanage scroll issues

    Hello,
    I have developed the SSRS report using BID's and have deployed it to report server and when I try to view the report in the report manager it does not show the entire report and horizontal scroll bar appears even though there is lot of space in the browser
    window.
    I want to get rid of that scroll bar and view the entire report on the screen as you can see there is lot of space to the right of the screen yet.
    Your help is much appreciated
    Thanks
    Adarsh

    Hi,
    I verified my report and I have not left any space to the right of my report item.
    Please find the attached screenshot of my report design and also the scroll issue I was referring. 
    I have marked the scroll bar in red in the image which I need to get rid off and show the entire report on the screen.
    Your help is greatly appreciated.

  • Can't find "people or group"-column in database

    Hi,
    Where can I find the people and group column in the database in SharePoint
    2010? I need this for a report...
    I have a list with multiple columns. In the Table "AllUserData" I can find all information of the columns exept the people picker column.
    I found this solution:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/1e786892-1386-4e67-8a12-77f9ba0c1f64/where-can-i-find-the-people-or-group-columns-in-alluserdata-table-?forum=sharepointdevelopmentlegacy
    But there they are talking about "tp_LeafName" and "tp_DirName" and I can't find these columns...
    Any idea?

    Found it, needed this tables:
    [AllDocs]
    [AllUserData]
    [AllUserDataJunctions]
    [UserInfo]

  • SSRS Report Freezing row and column while scrolling Issue

    Hello,
    I have created the report and i have freezed the row and column of the report while scrolling [To Freeze made the changes in tabulex property of the table "Keep Header visible while scrolling"] 
    meade the changes in the property [Advaned Mode]
    Fixed Data= true
    Keep Together=true
    Keep with group =After
    Report on new page=true
    When ever i will scroll down my report my all column headder will remains same. after that if i scroll to right my first freeded column headder will not display [group column or freezed row headder].
    COuld you please suggest me for the same issue.

    Hi Vinay,
    Based on my research, freezing row and column headers are different in table and matrix.
    In a table, if we want to freeze column header, we should make the changes in the first Static row group in Row Groups pane with Advanced Mode as you said. If we want to freeze row header, the table should have a group ahead, then we can enable “Repeat header
    rows on each page” and “Keep header visible while scrolling” options in Row Headers in Tablix Properties dialog box.
    In a matrix, if we want to freeze column header, we can enable “Repeat header columns on each page” and “Keep header visible while scrolling” options in Column Headers in Tablix Properties dialog box. If we want to freeze row header, we can enable “Repeat
    header rows on each page” and “Keep header visible while scrolling” options in Row Headers in Tablix Properties dialog box.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Group by Perfromance issue with Number and Varchar2

    Hi All,
    I got a question on performance on GROUP BY clause.
    Group by (Number) and Group by (Varchar2) --> In these 2 versions of Group by will oracle takes into consideration for the data types in the GROUP BY Clause as a performance issue.
    I.E. Select sum(sal) from emp group by deptno and Select sum(sal) from emp group by job.
    In the first group by we have number and second we got varchar2. So oracle will take the data types also into consideration for performance in the Group by clause.
    (Pls dont consider the amount of data in the tables ).
    Appreciate your response,
    Thanks,
    Madhu K.

    You are asking which way is more efficient?
    if someone ask to do a group by using a varchar column. oracle has no other way to do it but by the columns that the developer asks for...
    Amiel

  • Windows 7 DNS and Group Policy Issues

    Hi,
    We have several suites of Windows 7 domain connected PC's.
    In one of the suites I have been called into look at 3 different PC's where the users have not got mapped drives, desktop backgrounds, internet connectivity - because their group policies have not applied.
    When I look at the error logs I find DNS 1014 errors, and Group Policy 1054 errors.
    I have looked at the logs on the switches, and there is nothing on them - Could a pupil pulling the network cable out cause these errors?... Possibly they could have put it back in before I got back in the room.
    The user logs off of the PC and back on again and are fine, as are the users that logon after them.
    We have 2 DC's/DNS servers, which I would have thought would be able to cope with the load here.
    Please let me know what you think the likely cause could be.

    Hello John555444,
    What is your current situation?
    Is this issue resolved?
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • EA1 - SQL Formatter issues (JOINs and GROUPs and ORDER BY oh my ;)

    Great job with improving the SQL Formatter, but it still has some bugs that need to be worked out.
    The key words JOIN and it's modifiers INNER, LEFT, RIGHT and FULL OUTER are not recognized as master key words. As such they end up flush against the left margin Also when GROUP BY and/or ORDER BY key words are present in an outer most select statement the other key words are not indented far enough to be right aligned with the end of the word BY and are indented too far to be right aligned with the word GROUP or ORDER. In sub queries, GROUP and ORDER BY are correctly right aligned with their respective SELECT statements.

    We're picking up and collating the Formatter issues. I'll add these.
    Specific bug for these #7013462
    Sue

  • Hyperion FR Studio - Expansion of columns and grouping while expansion

    Hi,
    I have 3 columns A,B,C in my report with entity and scenario as dimensions in each column.
    In column A, Entity and Scenarios dimensions are current POV.
    Allow Expansion check box has been checked as True for Entity dimension
    The check box to display children before parent has been checked in Grid Position properties as well.
    In column B,Entity dimension is same as in Column A but a prompt is assigned to the Scenarios dimension. There is no expansion here for Entity dimension.
    In column C, Entity will be the same as in column A but without expansion. Scenario dimension value will be the variance and I am supposed to display the variance between the data in the columns A and B in column C.
    By default when I run the report and expand the columns, all the Entities in column A are expanded, followed by Column B and C.
    Is there a way such that for every column A displayed(even after expansion), Columns B and C are displayed, then the next entity in column A is displayed with it's associated B and C columns?
    Say,
    I have A,B,C Columns before expansion
    when i expand A which gives me A1 to A5,
    I need
    A1 B C A2 B C A3 B C A4 B C A5 B C A B C
    Currently it displays A1 A2 A3 A4 A5 B C.
    Any help is appreciated.
    Thanks.
    Edited by: user530299 on Jun 24, 2010 5:31 AM
    Edited by: user530299 on Jun 24, 2010 6:28 AM

    I have the same problem...
    Did anyone has solution for this issue?
    How can I build report with comparision of scenarios (with Var and VarPct) for parent and child Entities having Entity and Scenario dimensions on columns?
    Many thanks in advance!

Maybe you are looking for

  • When I sync my ipod classic with iTunes it deletes all the music on my ipod

    Hi everyone, I have an ipod classic 160GB and when I try to sync it with iTunes to put things like TV shows ect it deletes all the music off of my iPod (which is over 400 songs) so I have to put it all back on using another program and then when I tr

  • Daily Access Report

    We'd like a report of which portal groups had at least one member who logged in today. It'd also be nice to have subtotals by group. What's the best solution? Otherwise, what are the relevant tables, views, or prebuild modules to look at?

  • Call  sms utility with a message text

    I am trying to call sms utility of iPhone . I am passing the phone number as a parameter.It works fine. Alongwith phone number I am trying to pass a text message.The intention is to open the sms window alongwith a phone number and a message.I am not

  • Manual Check Deposit

    I have done with all settings of Bank Accounting; Created House Bank Created Check Deposit Account Crated Account Symbols and assigned GL accounts Created Keys and defined Posting Rules Created and Assigned Business Transactions Defined Variant for M

  • Call a java class when deleting a user

    Hi, I have identified the "Deprovision Form" as the form used when you want to delete a user. What I would to do is invoke a java class when you press on OK on the delete user page. thanks in advance.