Filtering data grouped in Advanced DataGrid

I want to display hierarchical data (data groping) in advance DataGrid and at the same time I want so the filtering feature. The problem is that if I want grouped view then I provide GroupingCollection the dataprovider (which has no function filterFunction type functionality).
Is it possible to fix this?

I found the solution.

1. store the data collection ArrayCollection (say ac).

2 - ac.filterFunction = processFilter / / some filter function

3 assign this collection for GroupingCollection ArrayCollection (say gc) as a source.
GC.source = ac

4 assign gc as dataProvider of dataGrid

5 - when you want to apply the filter:
ECL Refresh();

Tags: Flex

Similar Questions

  • Table as columns grouped in Advanced Datagrid?

    Greetings,

    I have the following collection that I want to display in a datagrid advanced as hierarchical and grouped data. The year is a table inside each line that needs to be bundled with its label as HeaderText and columns under each group should be required and Completed.

    [Bindable]
    private var summary:ArrayCollection = new ArrayCollection([  
         {Value:"Survey ABCD", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}], categories: [
              {Value:"D-X13", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}],  categories:[
                {Value:"T-5432", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}], categories:[
                     {Value:"101", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}] },
                     {Value:"102", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}] },
                     {Value:"103", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}] },
                     {Value:"104", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}] }
                  ]} 
              ]}
         ]},
      
         {Value:"Survey Matrix", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}], categories: [
              {Value:"D-X312", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}], categories:[
                   {Value:"T-1235", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}], categories:[
                     {Value:"201",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]},
                     {Value:"202",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]},
                     {Value:"203",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]},
                     {Value:"204",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]}
                  ]},
              
             {Value:"T-7652", Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}], categories:[
               {Value:"211",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]},
               {Value:"212",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]},
               {Value:"213",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]},
               {Value:"214",Year:[{Label:2013, Requested:10, Completed:7}, {Label:2012, Requested:10, Completed:7}, {Label:2011, Requested:10, Completed:7}]}
            ]} 
           ]}
         ]} 
      
    ]);
    
    
    

    Here is my code that I have tried and it doesn't work, please help me fix. Thanks in advance.

    <mx:AdvancedDataGrid id="surveyGrid"
         sortExpertMode="true"
         width="100%" height="100%">
      
                               <mx:dataProvider> 
                                            <mx:HierarchicalData source="{summary}" childrenField="categories"/>
                                  </mx:dataProvider>
      
                                  <mx:groupedColumns>
                                            <mx:AdvancedDataGridColumn headerText="Surveys per Value" dataField="Value"/>
                                                   
                                                      <!-- this isn't as I want it -->
                                            <!--<mx:AdvancedDataGridColumnGroup headerText="2013" dataField="Year[0]">
                                                      <mx:AdvancedDataGridColumn headerText="Requested" dataField="Requested"/>
                                                      <mx:AdvancedDataGridColumn headerText="Completed" dataField="Completed"/>
                                            </mx:AdvancedDataGridColumnGroup>
      
                                            <mx:AdvancedDataGridColumnGroup headerText="2012" dataField="Year[1]">
                                                      <mx:AdvancedDataGridColumn headerText="Requested" dataField="Requested"/>
                                                      <mx:AdvancedDataGridColumn headerText="Completed" dataField="Completed"/>
                                            </mx:AdvancedDataGridColumnGroup>
      
                                            <mx:AdvancedDataGridColumnGroup headerText="2011" dataField="Year[2]">
                                                      <mx:AdvancedDataGridColumn headerText="Requested" dataField="Requested"/>
                                                      <mx:AdvancedDataGridColumn headerText="Completed" dataField="Completed"/>
                                            </mx:AdvancedDataGridColumnGroup>-->
      
                                  </mx:groupedColumns> 
      
                        </mx:AdvancedDataGrid>
    
    protected function creationCompleteHandler(event:FlexEvent):void {
      
      
                                            var columns:ArrayCollection = new ArrayCollection(surveyGrid.groupedColumns);
                                            var years:Array = summary.getItemAt(0).Year as Array;
      
                                            for each (var year:Object in years) {
      
                                                      var gridGroup:AdvancedDataGridColumnGroup = new AdvancedDataGridColumnGroup(year.Label);
      
                                                      var requested:AdvancedDataGridColumn = new AdvancedDataGridColumn("Requested");
                                                      var completed:AdvancedDataGridColumn = new AdvancedDataGridColumn("Completed"); 
      
                                                      gridGroup.children = [requested, completed]; 
                                                      columns.addItem(gridGroup); 
      
                                            }
      
                                            surveyGrid.groupedColumns = columns.toArray(); 
                                  }
    
    
    

    Best regards

    Ahmed.

    I am able to fix it a little weird.

    On the complete creation of my application, I'm calling the next method. Where requested.dataTipField = columnIndex.toString (); stores the index of the year.

    protected function creationCompleteHandler(event:FlexEvent):void {
    
                                            var columns:ArrayCollection = new ArrayCollection(surveyGrid.groupedColumns);                                        var years:Array = summary.getItemAt(0).Year as Array;
    
                                            for (var columnIndex:int = 0; columnIndex < years.length; columnIndex++) {
    
                                                      var year:Object = years[columnIndex];
    
                                                      var gridGroup:AdvancedDataGridColumnGroup = new AdvancedDataGridColumnGroup(year.Label);
    
                                                      var requested:AdvancedDataGridColumn = new AdvancedDataGridColumn("Requested");                                                  requested.dataTipField = columnIndex.toString();                                                  requested.itemRenderer = new ClassFactory(YearGridRenderer);
    
                                                      var completed:AdvancedDataGridColumn = new AdvancedDataGridColumn("Completed");                                                  completed.dataTipField = columnIndex.toString();                                                  completed.itemRenderer = new ClassFactory(YearGridRenderer);
    
                                                      gridGroup.children = [requested, completed];                                                   columns.addItem(gridGroup); 
    
                                            }
    
                                            surveyGrid.groupedColumns = columns.toArray();                               } 
    

    Then associate ItemRenderer did the trick.

    
    
    http://ns.adobe.com/mxml/2009" 
    
                                                                                      xmlns:s="library://ns.adobe.com/flex/spark" 
    
                                                                                      xmlns:mx="library://ns.adobe.com/flex/mx" 
    
                                                                                      focusEnabled="true" width="100%" 
    
                                                                                      clipAndEnableScrolling="true">
    
              
    
                        
    
              
    
              
    
                        
    
              
    
              
    
    
    
    
    

    Best regards

    Ahmed.

  • Advanced Datagrid grouping

    We have doubts about the grouped columns of the Advanced DataGrid.

    With the following XML as a data source for an advanced Datagrid component, we would like to know how to group the data taking into account the tag "Cgrpm". Just to explain, that we want to create a group header to level two, the first thing is to group the data by "Cgrpm" and show all left entries in the XML. It should look like this:

    000054 00000058
    00000034 ...
    EntryLeaveCalday...
    2009-08-112009-10-012009-10-01...

    I hope that someone could help us.

    Thanks in advance for your help.

    <Details>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-01</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-01</Calday>
                   <Real>0.0</Real>
                   <Total>0.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-02</Leave>
                   <Cgrpm>00000058</Cgrpm>
                   <Calday>2009-10-02</Calday>
                   <Real>1.0</Real>
                   <Total>0.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-02</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-02</Calday>
                   <Real>0.0</Real>
                   <Total>16.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-03</Leave>
                   <Cgrpm>00000034</Cgrpm>
                   <Calday>2009-10-03</Calday>
                   <Real>0.0</Real>
                   <Total>17.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-04</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-04</Calday>
                   <Real>0.0</Real>
                   <Total>21.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-05</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-05</Calday>
                   <Real>0.0</Real>
                   <Total>0.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-06</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-06</Calday>
                   <Real>0.0</Real>
                   <Total>0.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-07</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-07</Calday>
                   <Real>0.0</Real>
                   <Total>0.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-08</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-08</Calday>
                   <Real>0.0</Real>
                   <Total>0.0</Total>
                   <Period/>
                </item>
                <item>
                   <Hotel>ELC</Hotel>
                   <Entrance>2009-08-11</Entrance>
                   <Leave>2009-10-09</Leave>
                   <Cgrpm>00000054</Cgrpm>
                   <Calday>2009-10-09</Calday>
                   <Real>0.0</Real>
                   <Total>16.0</Total>
                   <Period/>
                </item>
    </Details>
                             for each (itemXML in arrayCabecera)
    
                     {
                         trace(itemXML);
                         cg = new AdvancedDataGridColumnGroup();
                         cg.headerText = itemXML.toString();
                         cga.push(cg);
                     }
    
                     for each (itemXML in arrayCampos)
                     {
                         trace(itemXML);
                         adgc = new AdvancedDataGridColumn();
                         adgc.editable = true;
                         adgc.sortable = true;
                         adgc.visible = true;
                         adgc.headerText = itemXML.toString();
                         adgc.dataField = itemXML.toString();
                         //Asignar a cada columna
                         cg.children.push(adgc);
                     }
    
    }
    

    In this way, you get all columns in all groups.

  • Structure of the tree in advanced datagrid

    Hello

    I use advanced datagrid to display mainly hierarchical data.

    There are five columns in my datagrid and column name is hierarchical a.

    Problem that I face is symbols of the tree will appear in some other columns. Help, please.

    Hi PAgrawal,

    Advanced DG has property treeColumn that you can assign to your name column

    This will display the tree on mandatory column icons

    Thank you and best regards,

    Abhishek

    ------------------------------------------------------------------

    Abhishek Chaudhary | [email protected]

    Stop: + 91 712 224 5867 Ext:8358, Mob: + 91 992 358 8703

    ------------------------------------------------------------------

  • iconfunction in Advanced Datagrid

    I am specifying a 'iconfunction' in my advanced datagrid - works but

    not quite as you want.

    I have two flavors of data in the grid: directory (a) and (b) database

    The directory icon, I can easily specify a folder icon. It don't

    not, seems to me to be a way to change this picture in an open folder

    vs file is closed with a click. The icon is what is specified in the

    the function of the icon.

    I tried without success itemclose, itemopen.

    Specification of a default icons game works except that empty

    Directory presents itself as a sheet and pick up the database icon.

    This is not what I want.

    Is it possible to have the best of both worlds?

    TIA, Chris

    Hello

    the only option for you is to use iconFunctions and itemOpen and itemClose eventListeners.

    ItemOpen and ItemClose eventListeners, you must change the property (for example _isOpened) in dataProvider to distinguish open and closed directories.

    IconFunction, you should check this property and the type of data to return the correct icon.

    Hope this helpful.

  • DateFormatter in advanced Datagrid

    Hi all

    I am trying to format a date field in the advanced datagrid control, but it displays the incorrect date. It displays either 100 or 2000.

    The data from a webservice and I convert data from the Web service in an arraycollection collection and each element of the arraycollection collection is of a custom type. One of the fields of custom type is a date.

    «The data show in the advanced datagrid correctly but a very long form for example"sea Mar 19 15:55:26 GMT + 0000 2008»

    I want to format the date so that it displays only the year, month and date so in DDD/MMM/YYYY format. For this I use a dateFormatter in the Datagrid column advanced in the following way:

    < mx:AdvancedDataGridColumn headerText = "PriceDate" width = "240" dataField = "priceDate" >
    < mx:formatter >
    < mx:DateFormatter formatString = "DD/MMM/YYYY" / >
    < / mx:formatter >
    < / mx:AdvancedDataGridColumn >


    I of course expect to see "March 19, 2008", but instead, I get "19 March 2000".»

    If you can solve it for me or suggest another way, it would be much appreciated.

    Best regards

    This was solved by using the labelfunction property instead. I don't know why, using a DateFormatter in the Advanceddatagridcolumn has failed - it looks like a bug.

    But the solution is to have the datagridcolumn as:

    and have a DateFormatter on its own in the mxml as in:


    labelFunction = "date_labelFunc" / >

    and the labelfunction should look like:

    private void date_labelFunc(item:Object,_column:AdvancedDataGridColumn):String {}
    Return dateFormatter.format (item.priceDate);
    }

  • Advanced DataGrid - you click columns to hide/show based on the level of the child

    I have a Flex application that displays an Advanced DataGrid with three levels in the tree. The default view displays a single column of data. When a child on the floor of the tree is opened, two additional columns are displayed. I want these columns to stay open as long as any kid on the floor is open. I can't find a way to make it work - I can get the columns to be displayed when the user clicks on the 2nd child of level, but I can't find a away from keep them visible until the last child at this level is closed (see my attached code). Is it possible to loop through all the items in the Collection of data to see which ones is open and access data associated to each?

    Attached code (a few pieces that are not connected have been omitted).

    Help, please.

    Thank you.

    Found my answer on my own. I basically loop in the table in the ADG openItems, save the reference that corresponds to the lowest level that is open, then set visibility of each column based on this criterion.

  • Advanced DataGrid question


    Hello world

    When the user clicks on the view cart"" button. Advanced DataGrid gets data from the database, and then display two columns (in Advanced DataGrid) as the product name and the quantity (TextInput). Now, the user can turn on the amount. And then click on the button update (at the bottom of the advanced data grid). Now in the service of update, how to loop through the quantity column? (and then update the database).

    Help, please. Thank you.

    May

    Quote:
    Posted by: ntsiii
    You do this too complicated. Use an editable DataGrid. Do not use a custom itemRenderer. Value editable = "true" on the data grid and any column you want to change.

    Loop by using the function I posted. Everything will work as desired.

    Tracy

    Sorry Tracy. I just got the data grid now works. Here's the datagird. Now I can continue working on my project.
    Thanks for your help again to Tracy.




    See you soon,.

    May

  • output of Get-store data in the table (datagrid)

    Hello

    I'm trying to get the output of get-store data in a table (datagrid).

    Code:

    Function Get-data warehouses
    {
    $array = new System.Collections.ArrayList object
    $Script: GetDatastore = Get-Datastore
    $array. AddRange ($GetDatastore)
    $dataGrid1.DataSource = $array
    $form1.refresh)
    }

    error:

    Das Argument '0' mit dem Wert "local_datastore01" as "AddRange' nicht den Typ"System.Collections.ICollection"konvertiert werden kann:" Der Wert "local_datastore01" vom Typ VMware.VimAutomation.Cl «»»
    ient20. DatastoreImpl' nicht den Typ "System.Collections.ICollection" konvertiert werden kann. »
    -snip-
    + $array. AddRange < < < < ($GetDatastore)
    + CategoryInfo: NotSpecified: (:)) [], MethodException)
    + FullyQualifiedErrorId: MethodArgumentConversionInvalidCastArgument

    Comment:

    If I replace the query data get store-get - VM the script works great!

    What's wrong? any suggestions?

    Many thanks and greetings

    Hello

    This particular Get-Datastore call returns a single object, which cannot be converted to the ICollection. But you can do something like this:

    If ($GetDatastore-[table]) {}

    $array. AddRange ($GetDatastore)

    } else {}

    $array. Add ($GetDatastore)

    }

    It will manage both situations - when you get the data object store or table of data warehouses.

    Vitali

    Team PowerCLI

  • Advanced DataGrid - converters - Possible to reference the columnIndex parameter?

    When you work with AdvancedDataGridRendererProvider in an advanced Datagrid - is - it is possible for the rendering code reference the AdvancedDataGridRendererProvider columnIndex parameter?

    Thank you.

    I have attached two examples that use the AdvancedDataGridListData properties so that they can be reused in different columns. The first is an example MXML which extends canvas and uses bindings to set the text and tooltip on a Label control. The second provides similar functionality in ActionScript by extending UIComponent. The ToolTip displays some of the information that is accessible through the AdvancedDataGridListData object.

    The AdvancedDataGrid will inject an AdvancedDataGridListData instance in any element converter that implements the IDropInListItemRenderer interface. To implement this interface that you use the 'implements' keyword when you declare the class and add getters and setters for the listData property. I did it for each converter in the example.

    Simpler example MXML, the ActionScript example should perform better.

  • ToolTip in advanced Datagrid

    Hai

    I need to display the text in the ToolTip in advanced datagrid

    The values will be dynamic, the string will have the space and values of next line...

    How display all this in a tool tip in flex.

    I have more than 4,000 characters.

    Can someone help me

    Thanks in advance

    You can define showDataTips = "true" on the AdvancedDataGridColumn for columns on which you want to display the DataTip.

    Also, he must put the dataTipField on the example of AdvancedDataGridfor:

    myAdvancedGrid.dataTipField = "app_desc";

    Thank you

    Gaurav Jain

    Flex SDK Team

    http://www.gauravj.com/blog

  • Develop a specific level of a multi level Advanced DataGrid

    I have an Advanced DataGrid (ADG) that displays three levels - we'll call it 'Parent', 'Child' and 'Child Detail' - using a HierarchicalData collection which is built from XML from a Web service (see attached code).

    The ADG is generated as I do, and I'm able to develop all levels, as well as reduce all levels using the expandAll() and collapseAll() methods.

    However, by default, I want the grid to display with the first level ("Parent") as the only open level. I can't find a way to do this, using existing properties and methods of the ADG class.

    Does anyone have any suggestions?

    Don't know not if anyone out there cares, but I found a better way to do it. I was forced to find a new way since FB3 Beta2 no longer supports the 'openItems' mx.controls.AdvancedDataGrid property. See code attached for the solution.

    Notes:

    'This' is the ADG as a Flex component
  • How can I get the filtered data from the first form

    How can I get the filtered data from the first form in a second form to make an update of the multi.
    Thank you very much

    William,

    I would use for this collections. A link is good if you need to pass a single value.

    1. create a collection
    2 fill the collection with your result set
    3. go in the page target and uses a method of a query in your link to this page
    4. your target page receives a request and allows you to edit documents.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • Consecutive date grouping and find the largest number of consecutive group

    Hi all

    I have given dates and I want to find the largest number of consecutive dates

    WIN_DATE_DATA

    2015-09-22

    2015-09-23

    2015-09-27

    2015-09-28

    2015-09-29

    2015-09-30

    2015-10-1


    In this example, there are 2 group of consecutive dates

    Group 1

    2015-09-22

    2015-09-23

    Group 2

    2015-09-27

    2015-09-28

    2015-09-29

    2015-09-30

    2015-10-1


    The OUTPUT should 5 which is the largest grouping of consecutive number.


    Thanks in advance for the help!




    Please take a look at the Community document: 101 PL/SQL: grouping sequence ranges (method Tabibitosan)

    will allow you to do.

  • average of k: how to find the data clustred; : or how to assign number t0 each data group

    Hi Member

    I have download the LabVIEW Machine https://decibel.ni.com/content/docs/DOC-19328 learning package

    I want to run the K average algorithm to group the image in a group of two or three or more

    the problem is how to find the result I mean the image of clustred', the image that contain 2 or three threatened value only

    or how aasign a 1 value for all the intesity who

    belong to the cluster a and 255 for data that belongs to group 2

    for the look of the image as binary image?

    a my vi below

    Best regards

    my post before shows how to set the threshold manually using the slider of the graph.

    Here is the version k-means automated help .vi box tools

    Alex

Maybe you are looking for

  • Unable to connect to iCloud

    Since today morning, I am unable to disconnect from iCloud. Although the network seems to work very well, I get "failed to verify. There was an error connecting to server Apple ID"error. My iPhone 6 more works very well. I've seen other people have r

  • Back ups in Time Machine visible yet unreachable

    Hello Question: Is there a way to access manually back ups that are visible in the timeline, but that Time Machine won't allow me to open? These files still exist somewhere in their own country? Context: Before the update to El Capitan, I deleted som

  • PpiEnableInterrupts returns error "Invalid Length specified"

    I work with IVI VISA PXI plug in modules OR (defined by IVI-6, 3). Almost all of its functionality works perfectly - like module list, attributes and access the memory space, etc... The only problem I got is interruptions. 'PpiEnableInterrupts (__in

  • HP 15-r029wm: Wireless driver for HP15

    I'm trying to find the Win 7 64 bit driver for HP 15-r029wm wireless. It does not appear in the list of drivers. If it comes with another driver. Thanks in advance!

  • Duplicate the user in the ACS 3.3 database

    I use ACS to authenticate the mac address. It's on a device. I created a user with the user name and password as the mac address and now it is listed twice! Can I delete a single entry, but not the other. What can I do to clear it out of the database