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
50
Extra row is displayed in GridView.
posted

Hi,

We are evaluating the NetAdvantage for JSF 2008 Vol. 2 for the purpose to migrate the application from older version of Infragistics (NetAdvantage for JSF Vol1 2006). In one of the screens, we are using the grid to display the Alert Message for the end users, but the screen is displaying one extra empty row at end of the grid. It is working fine in older version of Infragistics (NetAdvantage for JSF Vol1 2006).

Code snippet is:

<h:form id="homepageform">
    <h:outputText id="warnmessage" value="#{HomePageBean.warningMessageOnLogin}" style="color: red;font-weight: bold;font-size:12.0pt"></h:outputText> 
<h:panelGroup styleClass="main"> 
<pre>
<FONT FACE="verdana " color="black" size="2">Some text</FONT> <a href="mailto:abc@xyz.com"><font face="verdana" color="blue" size="2">abc@xyz.com</font></a>
</pre>
<h:panelGroup styleClass="section" >
 <ig:gridView  dataSource="#{HomePageBean.fiveAlertMessageList}"  styleClass="igGrid myCssClass" style="width:100%" >
 <ig:column style="width:10%">
 <f:facet name="header">
   <h:outputLink value="dashboardallalertredirect.faces" target="_blank" rendered ="#{DATA_ROW.allAlertRender}">
   <h:outputText value="Show All" />
   </h:outputLink>
 </f:facet>
   <h:graphicImage value="../clarityweb/images/dashboard_alert_icon.gif" width='20px' height='20px'/>
 </ig:column>
 
 <ig:column style="width:80%">
 <f:facet name="header" >
         <h:outputText value="Alerts" style='font-size:10.0pt'/>
    </f:facet>
      <h:outputText value="#{DATA_ROW.messageWith150CharOnly}"  style="color: red;font-weight: bold;font:italic"/>
 </ig:column>
  
 <ig:column style="width:10%">
 <h:outputLink value="dashboardmorealertredirect.faces" target="_blank" rendered ="#{DATA_ROW.messageRender}">
   <f:param name="messageId" value="#{DATA_ROW.messageId}"/>
     <h:outputText  value="More"/>
  </h:outputLink>
 </ig:column>
 </ig:gridView>
</h:panelGroup>
</h:panelGroup>
</h:form>

 Please guide us on how to resolve the issue.

 Thanks!