How to rotate arrow icon 180 degrees onclick.

We can create rotating icon on dropdown list, that activate when click on icon. Extension: _.extend(FacetsFacetedNavigationItemCategoryView.prototype, {                    template: jj_subcategory_plpsubcategory_tpl, events: _.extend(FacetsFacetedNavigationItemCategoryView.prototype.events, {                         ‘click .subdiv2’: ‘hide’,                   … Continue reading How to rotate arrow icon 180 degrees onclick.

Solution for the issue”The item images is not available on PLP,PDP pages”

when you first configuring netsuite account, will see that there are currently no product images associated with the item in the Web Store subtab, Associated Images sublist. As a result, the default “Image not available” placeholder is being displayed in the web store.Then, Navigate to Documents > Files > File Cabinet and click on the… Continue reading Solution for the issue”The item images is not available on PLP,PDP pages”

Sending email from extension. Using ‘nlapiSendEmail()’.

Create emailbody in SuiteScript, after that add the emailbody in nlapiSendEmail(). This is the syntax ‘nlapiSendEmail ( from , to , subject , body , cc , bcc , records , files )’. After that send the mail, if mail is not received at recipient, we can set some permissions in user. First take extension… Continue reading Sending email from extension. Using ‘nlapiSendEmail()’.

How to create show more and show less functionality for hiding text using jQuery

We can add Read More/Read Less button next to a too long HTML element by using jQuery.The amount of content displayed can be changed by clicking on the buttons. Instead of showing a complete paragraph on a webpage, only some part of the text is shown initially and a button is added which shows more… Continue reading How to create show more and show less functionality for hiding text using jQuery