Query about the filterable tag in ADF Tables

Hi all,
We having an issue with the the implicit filtering feature provided by ADF. We have followed all the rules for filtering:
1. filterable="true" and sortable="true"
2. headertext is present
3. filterModel="#{bindings.InstanceDetailsVO11Query.queryDescriptor}"
   queryListener="#{bindings.InstanceDetailsVO11Query.processQuery}"
Now the filter is working fine. But after we reset the page the filter field still has the previous data entered by the user.
Is there any way we can refresh the field as well?
Any suggestions would be very helpfull1
Thanks.

Hi,
You can programmatically clear the filter fields and refresh the table by using the below snippet.
public void resetTableFilterListener(ActionEvent actionEvent) {
        FilterableQueryDescriptor queryDescriptor = (FilterableQueryDescriptor)getYourTable().getFilterModel();
        if (queryDescriptor != null && queryDescriptor.getFilterCriteria() != null) {
            queryDescriptor.getFilterCriteria().clear();
            getOrdTable().queueEvent(new QueryEvent(getYourTable(), queryDescriptor));
Try if this works for your requirement.
Thanks

Similar Messages

  • Focusing a field/column in the new row of adf table

    Hi all,
         I am using JDeveloper 11.1.2.4.0. and UI-Shell Template in Main application and sub applications are added to this master application as ADF library jar files. Application is working fine.
    I am trying to focus to make focus on a column in the newly created row in one of the sub application by referring the below link
    http://adfnbpel.wordpress.com/2013/08/14/focusing-a-fieldcolumn-in-the-new-row-of-adf-table/
    I created a single application and found that its working
    But in my application focus is not working.
    When i checked the java script by using FireBug console it is found that comp = AdfPage.PAGE.findComponent(‘”+inputId+”‘); is getting as "undefined" , where inputId = table.getClientId(facesCtx) + “:” + rowId + “:” + “it3″; I am getting the exact row id also. When i tried with by passing the table id as input id like inputId = table.getClientId(facesCtx) ; the fire bug console then showing the table id. So its sound strange.
    What may be the cause of not able to find the input text it3 by using findComponent ?
    Is any body can suggest a solution for this.
    Thanks in advance,
    Gijith

    Hi,
    read up about "findComponentByAbsoluteLocator" in http://www.oracle.com/technetwork/developer-tools/jdev/1-2011-javascript-302460.pdf
    or check ...
    AdfPage JS doc
    Frank

  • Query about the DR -Standby

    Hi Support,
    I have a query about the DR -Standby:
    1) Is FAL_CLIENT and FAL_SERVER parameter mandatory in both Primary and standy node?
    2) How many standy by we can create for primary node?
    Thanks

    Dear Prashanth,
    Quantity of 3 is rejected so you blocked it? why you want to bring it again to Quality? Use of putting in block is as follows:
    Since quantity of 3  is rejected  and need to be kept aside you are blocking the stock, the purchase person will send back this material to vendor directly from block stock (MBRL or MIGO). This is best practice.
    There can be other situation that your vendor came to your place and done rework om that 3 blocked items and you are satisfied with the quality then you can use respective movement for transferring from block to unrestricted, if you want lot to be generated then assign 08 insp type and do inspection.
    Hope this will help you better.
    Best Regards,
    Shekhar

  • Query about the "User Decision

    Hi,
    I have a query about the u201CUser Decisionu201D, Suppose I have received the 10 quantity and lot get created for 10. At time of UD (QA11) I put 7 quantities in unrestricted and 3 in blocked stock .what we generally use to do with that block stock? Whether we again transfer it to quality stock (Movement 349)? Or move directly to unrestricted (movement: 343).
    I tried to move the blocked stock in u201Cquality stocku201D in transaction MB1B with movement 349 but it had given error u201CChange the inspection stock of material 9112223334A in QM onlyu201D. In QM how to transfer the blocked stock in quality stock?
    Regards,
    PK

    Dear Prashanth,
    Quantity of 3 is rejected so you blocked it? why you want to bring it again to Quality? Use of putting in block is as follows:
    Since quantity of 3  is rejected  and need to be kept aside you are blocking the stock, the purchase person will send back this material to vendor directly from block stock (MBRL or MIGO). This is best practice.
    There can be other situation that your vendor came to your place and done rework om that 3 blocked items and you are satisfied with the quality then you can use respective movement for transferring from block to unrestricted, if you want lot to be generated then assign 08 insp type and do inspection.
    Hope this will help you better.
    Best Regards,
    Shekhar

  • Does any one have good idea about the backup and recovery georaster table?

    Does any one have good idea about the backup and recovery georaster table?
    Best Regards,
    Lin
    Edited by: ylin on 2009-10-10 上午2:07

    for backup and recovery, please follow the standard procedure of general database backup and recovery. you need to backup both the georaster table and all related RDT tables.

  • Refreshing only the single row of  ADF Table

    Hi All,
    I have a webcenter application where the ADF Applications has been deployed.Now the Data is coming onto the ADF Tables from a webservice.In that particular table i need to refresh only the single row(whichever selected by the user to edit ) or even a particular field with the updated values as well as need to validate and to create a message box saying about the errors if the validation goes wrong.
    Please suggest!!

    Hi,
    if "updated value" mean that the value got changed on the middle tier (not the browser client) then the update requires the table to be partially refreshed. If the user edits a row and in this row has dependent fields, then this can be achieved by partially refreshing the column. Note that ADF Faces tables don't refresh just one cell
    Frank

  • ADF 11g How to create the custom FilterableQueryDescriptor for adf table

    Can you please let me know on the following.
    1. I am dispalying the adf table using a List from the managed bean
    2. I wanted to filter the table using the filter model.
    3. i wanted to create the sub class of FilterableQueryDescriptor which i can specify. Not finding enough information on how to create and add the information in the setFilterCriteria
    Can you please provide some insight into this topci

    Hello there
    I have the same issue: chaging the background color of some column headers.
    My application is using a custom skinning and when i had headerClass property with a custom class defined in a separate css file, the page generated specified first the class from the skinning and then my new class definition. But my skinning is specifying a background color so the color is not overriden. Any idea?
    ADF code:
    <link type="text/css" rel="stylesheet" href="../../css/pivot.css" id="myStyles"/>
    <af:column headerText="#{level1.userObject.name}"
    headerClass="inputHeader"
    sortable="false" align="center" width="100"
    id="col_level1" >
    Generate HTML code:
    <th align="center" class="xuh inputHeader" afrroot="true" rowspan="2" afrleaf="true" dindex="6" id="pt1:tableId:col_level1" style="">
    <div class="x13t">AEKLF</div>
    </th>
    My CSS file:
    .inputHeader{
    background-color: Red;
    background-image: none;
    color: Black;
    font-weight: bold;
    Thanks for your help !

  • How to load a Query in the  bne_stored_sql in WEB ADI table.

    Hi folks ,
    I have a unique requirement as follow.
    I have created an VIEW , which is given in the Download WEB ADI integrator defintion.
    I am trying to query this view based in few search conditions thoughr a CO code. I am not used any time loading the Query in the bne_stored_sql table to achieve such funcaitonality.
    Please folks any inputs on this would be greatly appricaited.
    Thanks and Regards
    Raghu

    Hi,
    I am creating the layout for a sales order which will be send to a customer.
    In that order the customer can see the payment conditions.
    It should look like this:
    net price: 1000,00 EUR
    19,00% taxes: 190,00 EUR
    gross price: 1190,00 EUR                          
    payment conditions:
    payable within 30 days net: 1190,00 EUR
    payable within 14 days with discount of 2 %: 1166,20 EUR
    to get the bold marked digits I need to have access on the following tables:
    OCTG and CDC1
    In the OCTG table I get the days (in this example 30)
    In the CDC1 table I get the days of cash discount and the percentage (in this example 14 and 2)
    but in the sales order layout in PLD only the OCTG table is shown when I create a database field and the CDC1 table isn't.
    So what can I do to get this?

  • Unable to display the ClobDomain value in adf table

    Hi ,
    I have a database table whose column is Clob. Accordingly the Entity Attribute and VO attribute are of type. oracle.jbo.domain.ClobDomain
    Now this VO is wired as a ADF Table in jsff page. I am setting the value programmatically inside the AM by using the following.
    //Code inside AM
    String text="some xml";
    ClobDomain clobval=new ClobDomain(text.toString())
    vo.setAttribute("atrName",clobVal);
    Now at the UI level, I was able to print the value of the attribute inside a bean code. However, in the adf table, this cell is always empty. But if i try to set the value through UI then it works.
    If i make the inputText readonly then it displays the value.
    Am i missing something.
    Inside the af:column
    <af:inputText value="#{row.bindings.VariableValue.inputValue}"
    label="#{bindings.TestcaseInput.hints.VariableValue.label}"
    required="#{bindings.TestcaseInput.hints.VariableValue.mandatory}"
    columns="#{bindings.TestcaseInput.hints.VariableValue.displayWidth}"
    shortDesc="#{bindings.TestcaseInput.hints.VariableValue.tooltip}"
    id="it4" converter="oracle.genericDomain"
    rows="10">
    <f:validator binding="#{row.bindings.VariableValue.validator}"/>
    </af:inputText
    jdev version 11.1.1.6.0

    Try using SELECT_TEXT in place of READ_TEXT.
    Hope this helps.
    Regards
    vinayak

  • To display the columns in a adf table dynamically

    hi,
    i want to display 999 no of columns in a adf table. since it is not a better way to show all the columns in the adf table at a time, we want to show 10 columns at first and by using the next and previous links the user can see the according columns. i dont know how to do this. please help me.
    parameswaran

    repost

  • Question about the diff listeners in ADF

    Hi,
    I am using Jdev 11.1.2.3.0
    I am getting confused with the diff listeners in adf. Please suggest me some good books for the below mentioned listener.
    setPropertyLister()
    SetActionListener()
    setPropertyActionListener()
    clientListener() ( what are cclient side components)
    serverListener() ( what are server side compenents)
    ResetListener()
    etc
    Thanks in advance,
    Rakesh

    Some references.
    https://blogs.oracle.com/jdevotnharvest/entry/how_to_configure_an_adf_phase_listener_and_where_to_put_the_file
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/96-invoke-select-listener-1507924.pdf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/23-generic-table-selection-listener-169162.pdf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/11-client-listener-169135.pdf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/25-generic-tree-selection-listener-169164.pdf

  • Wondering about the "image" tag in the Tech Specs example

    I'll begin by admitting that what I don't know about coding would fill a bunch of bookshelves, but I've noticed that some people (including myself) have been having problems with their image files lately. I've also noticed that the coding for the image tag in the sample on the Technical Specifications page (http://www.apple.com/itunes/podcasts/techspecs.html) isn't formed like all the rest.
    It’s
    <itunes:image href="http://example.com/podcasts/everything/AllAboutEverything.jpg" />
    Shouldn’t it be
    <itunes:image> href="http://example.com/podcasts/everything/AllAboutEverything.jpg" </itunes:image>
    HP Pavilion zd8000   Windows XP  
    HP Pavilion zd8000   Windows XP  

    Hi DiscipleC--
    Andy is 100% correct (he makes some of the best podcast software around, so you're getting the advice of the pros here).
    What will happen now that your feed doesn't validate is that the image will likely stay there. But that's not because it's correct--it's because iTunes will see a broken feed when it checks, and it won't make any changes at all. So if you add episodes, those won't appear because the feed won't be updated until it works again.
    Follow the image art example exactly as listed in the example feed in the technical spec, make sure it validates over at feedvalidator.org, and you'll be fine.
    Good luck!
    -S
    PowerMac G5, 15" Powerbook, 12" Powerbook   Mac OS X (10.4.5)  

  • Query About the SAP ABAP Module

    Hello My name is Anuj Chaturvedi. I have doing a MCA Course(VITH semester). I want to do a SAP ABAP Module. So Please suggest me that ii is gud for me? Also tell me something more about the ABAP Module. Kindly reply me soon.
    Thanks
    Anuj Chaturvedi

    Hello My name is Anuj Chaturvedi. I have doing a MCA Course(VITH semester). I want to do a SAP ABAP Module. So Please suggest me that ii is gud for me? Also tell me something more about the ABAP Module. Kindly reply me soon.
    Thanks
    Anuj Chaturvedi

  • About the filtering feature

    Hi,
    The Filters section of the documentation says :
    "After the original resource is invoked, control is passed back to the
    filter at the bottom of the list in the chain. This filter can then
    examine and modify the response headers and data, block the request,
    throw an exception, or invoke the next filter up from the bottom of the
    chain. This process continues in reverse order up through the chain of
    filters."
    The Servlet 2.3 specification doesn't mention the fact that the filter
    chain is followed twice.
    Did I miss something in the spec ?
    Can anyone confirm the WLS behaviour ?
    Thanks in advance.

    In your filter, you invoke the doFilter method on the filter chain
    which in turn invokes the next filter in the chain or the service
    method of the servlet if there are no more filters. When the
    method invoked by doFilter returns, doFilter itself returns and
    control comes back to you. So we are not in fact traversing
    the chain again, rather, this is a natural result of unwinding
    the call stack.
    mark
    patrice thiebaud wrote:
    Hi,
    The Filters section of the documentation says :
    "After the original resource is invoked, control is passed back to the
    filter at the bottom of the list in the chain. This filter can then
    examine and modify the response headers and data, block the request,
    throw an exception, or invoke the next filter up from the bottom of the
    chain. This process continues in reverse order up through the chain of
    filters."
    The Servlet 2.3 specification doesn't mention the fact that the filter
    chain is followed twice.
    Did I miss something in the spec ?
    Can anyone confirm the WLS behaviour ?
    Thanks in advance.

  • Query about the feauture in labview

    HELLO SIR,
    While performing 2-D FFT method of steganography in labview we do use flat command in it.My query is where do we find that command in labview? And  Why do we use that?
                                                           Thanking you,

    What are you referring to? What 2D FFT method of steganography? Where did you get this reference the the "flat" command?
    You keep posting questions (this one, or this one, or this one) about steganography, but offer little information, and never follow up to the people trying to help you.

Maybe you are looking for