[SalesForce] jQuery hide row

I want to know how to hide a row using jQuery (I have jQuery set up in my code already). Let's say I have an object called Entry, and I have several records like E-0001, E-0002, E-0003 etc. I have a data table that lists those records as such:

Entries | Date

E-0001 | 12/1/2012

E-0002 | 5/2/2011

E-0003 | 7/2/2011

I would like to add a button next to each record that will hide the record and the row:

Entries | Date

(-) E-0001 | 12/1/2012

(-) E-0002 | 5/2/2011

(-) E-0003 | 7/2/2011

So if I pressed the (-) next to 'E-0001', it will hide that record so the result would be

Entries | Date

(-) E-0002 | 5/2/2011

(-) E-0003 | 7/2/2011

And even after a page reload, that row should still be appear to be gone (but the record itself not permanently deleted!). ALSO: it should only be hidden to the user, NOT globally. Thank you!

Edit:
Visualforce code

<apex:page showheader="true" standardController="Entry__c" recordsetVar="entries" sidebar="false" extensions="entryExtension" >
<head>
    <apex:includeScript value="{!URLFOR($Resource.jquery, 'jquery-ui-1.9.0.custom/js/jquery-1.8.2.min.js')}"/>
    <apex:includeScript value="{!URLFOR($Resource.jquery, 'jquery-ui-1.9.0.custom/js/jquery-ui-1.9.0.custom.min.js')}"/>
    <apex:stylesheet value="{!URLFOR($Resource.jquery, 'jquery-ui-1.9.0.custom/css/pepper-grinder/jquery-ui-1.9.0.custom.css')}"/>

<script>
   $j = jQuery.noConflict();
   function hideRow(){


   }
</script>
</head>    
<body>
              <apex:pageBlock title="View Recent Entries" mode="edit">  
                <apex:pageBlockSection title="Entry Information" columns="2">  
                    <apex:dataTable value="{!entries}" var="e" cellpadding="4" border="1" width="475">

                    <apex:column >
                    (-)
                    </apex:column>

                    <apex:column >
                    <apex:facet name="header"><b>Name</b></apex:facet>
                        {!e.name}
                    </apex:column>

                    <apex:column >
                        <apex:facet name="header"><b>Level One</b></apex:facet>
                        {!e.Join__r.Level_One__r.name}
                    </apex:column>

                    <apex:column >
                        <apex:facet name="header"><b>Level Two</b></apex:facet>
                        {!e.Join__r.Level_Two__r.name} 
                    </apex:column>

                    <apex:column >
                        <apex:facet name="header"><b>Date</b></apex:facet>
                        {!e.Date__c}
                    </apex:column>

                    <apex:column >
                        <apex:facet name="header"><b>Hours</b></apex:facet>
                        {!e.Hours__c}
                    </apex:column>

                    </apex:dataTable>
           </apex:pageblocksection>
           </apex:pageblock>

</body>
</apex:page>

Best Answer

There are two dimensions to this question, one is the hiding on the UI and the other persisting the hiding (even after a refresh)

To hide on the UI, you can use the jQuery.hide() function, which is trivial.

To persist the hiding, you will need to proxy it via an actionFunction (equally you could use JS-Remoting via Jquery, but I've chosen actionFunction for the purposes of this illustration) to the controller class, so it can process the Id and possibly, set a field on the Account to hide it in further loads. Now if you want a different behaviour per use (i.e. hidden only for the user who has hidden it, then you will possibly need to create another object, where you will store a user's 'hide' preferences, a user Id - hidden id mapping of sorts)

Here's my illustration using Accounts, where I've implemented the hide behaviour using both jQuery and proxying through actionFunction. You can bolt on the behaviour to persist the hiding in the controller action method which is invoked when Hide is clicked.

Visualforce Page :

<apex:page controller="AccountListController">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

<script>

jQuery.noConflict();

function proxyHideItem(accId){
//uncomment this to hide via jquery, currently hiding via actionFunction
//jquery selector using the class, which is accountId for each row
//jQuery("."+accId).hide();

hideItem(accId);

}
</script>

<apex:form> //action function proxies to controller,which sets visible false

<apex:actionFunction name="hideItem" action="{!hideAccount}" reRender="thePageBlock">
<apex:param id="paramId" name="accToHide" value="" />
</apex:actionFunction>

<apex:pageBlock id="thePageBlock">
<apex:pageMessages/>

<apex:pageBlockSection>
<apex:dataTable value="{!accountList}" var="acc">

//notice how the styleClass is the accountId, to select using Jquery
<apex:column   styleClass="{!acc.accId}"  rendered="{!acc.Visible}">
<apex:facet name="header"><b>Hide</b></apex:facet>
<apex:outputPanel onclick="proxyHideItem('{!acc.accId}');" >Hide</apex:outputPanel> 

</apex:column>

<apex:column   styleClass="{!acc.accId}"  rendered="{!acc.Visible}">
<apex:facet name="header"><b>Id</b></apex:facet>
{!acc.accId}
</apex:column>

<apex:column   styleClass="{!acc.accId}"  rendered="{!acc.Visible}">
<apex:facet name="header"><b>Name</b></apex:facet>
{!acc.accName}
</apex:column>

</apex:dataTable>

</apex:pageBlockSection>

</apex:pageBlock>
</apex:form>

</apex:page>

Controller :

public class AccountListController{

Map<Id, AccountWrapper> accMap = new Map<Id, AccountWrapper>();

public List<AccountWrapper> getAccountList(){
    if (accMap == null || accMap.isEmpty()){
        for(Account acc : [Select Id, Name from Account LIMIT 25]){
            accMap.put(acc.Id, new AccountWrapper(acc));
        } 
    }
    return accMap.Values();
}

//this method is invoked via the action function
public PageReference hideAccount(){

Id accToHide = (Id)ApexPages.currentPage().getParameters().get('accToHide');
System.debug('**************************** Hiding ' + accToHide);
if(accToHide != null)
accMap.get(accToHide).visible = false;

//here is where you can bolt on behaviour to store the account hide event
//either a field on account if hide is global for all users, or a dedicated
//hide object, if the hiding is user specific
return null;
}

//wrapper class to hold the Visible variable, which controls visibility
public class AccountWrapper{

public Account acct {get; set;}

public Id accId {get { return acct.Id ; }}

public String accName {get { return acct.Name ;} }

public boolean visible { get; set; }

public AccountWrapper(Account acc){

this.visible = true;
this.acct = acc;

}
}
}
Related Topic