Hi,
I am trying to set some value in request scope and fetch the same in HTL, it is not working, Not sure if this is doable in HTL without using Use API or backend changes.
product.jsp:
<%@include file="/libs/foundation/global.jsp" %>
<%
boolean isActive = false;
%>
<c:set var="productStatus" value="<%=isActive%>" scope="request" />
HTL:
<div data-sly-include="/apps/wknd/components/page/common/product.jsp" data-sly-unwrap></div>
<div>productStatus Flag - ${request.getAttribute("productStatus").toString}</div>
Thanks