Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1170
Customized Filter
posted

I have the following Grid.

There are four columns in the grid. 
1. ID
2. Account
3. Name
4. Department
I have grouped the records based on the ID. For each ID, there can be multiple Accounts. What I am trying to do is, if I apply the filter on the account, I want all of the rows with ID in that row, displayed. 
For Example:
I have Following records. 
                   ID |  Account | Name | Department
--------------------------------------------------------------------
1
--------------------------------------------------------------------
1                      | Main      |   Symbol1                 | F1
1                      | SubAcc1 |   Symbol1                 | F1
--------------------------------------------------------------------
2
--------------------------------------------------------------------
2                      | Main      |   Symbol1                 | F1
2                      | SubAcc1 |   Symbol1                 | F1
--------------------------------------------------------------------
3
--------------------------------------------------------------------
3                      | Chief     |   Symbol2                 | F1
3                      | SubAcc1 |   Symbol2                 | F1
--------------------------------------------------------------------
4
--------------------------------------------------------------------
4                      | Aux       |   Symbol3                 | F1
4                      | SubAcc2 |   Symbol3                 | F1
Now if I filter by sub account and search parameter is "Main". the result will be like:
--------------------------------------------------------------------
1
--------------------------------------------------------------------
1                      | Main      |   Symbol1                 | F1
--------------------------------------------------------------------
2
--------------------------------------------------------------------
2                      | Main      |   Symbol1                 | F1
--------------------------------------------------------------------
But I want the following result:
--------------------------------------------------------------------
1
--------------------------------------------------------------------
1                      | Main      |   Symbol1                 | F1
1                      | SubAcc1|   Symbol1                 | F1
--------------------------------------------------------------------
2
--------------------------------------------------------------------
2                      | Main      |   Symbol1                 | F1
2                      | SubAcc1|   Symbol1                 | F1
--------------------------------------------------------------------
Is there anything that I can do to achieve this.    
Parents Reply Children
No Data