Edit C:\galaxie\Back\galaxie\common\list\custom\listAjax_faq_comments.jsp
<%@page import="com.edeal.frontline.grid.GridData.GridCellContent"%> <%@ page language="java" contentType="text/plain;charset=UTF-8"%> <% /****************************************************************************** * Copyright (c) 2000-2005 e-Deal * * e-Deal S.A. * 55 rue Brillat Savarin * 75013 Paris * France * T: +33 (0)1 53 80 80 30 * F: +33 (0)1 73 01 69 77 * http://www.e-deal.com * * La diffusion de ce code source sous quelque forme que ce soit sans * l'autorisation de E-DEAL est interdite. * * Vous êtes autorisés à modifier ce code source uniquement pour votre usage * propre et sous réserve que les mentions de copyright demeurent intactes. * * Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou * implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour * responsable des dommages pouvant résulter de l'utilisation de ce code * source. ******************************************************************************/ // Please note! If you change this file in any way, please make the same changes to any // JSP file containing the following string: //**listAjax.jsp**// %><%@ page import="com.edeal.frontline.navigation.FlRequest" %> <%@ page import="com.edeal.frontline.grid.*" %> <%@ page import="com.edeal.frontline.*" %> <%@ page import="com.edeal.frontline.grid.EdealGrid" %> <%@ page import="java.util.*" %> <%@ page import="com.edeal.frontline.FrontlineException" %> <%@ page import="com.edeal.frontline.navigation.EdealBigTabsNavigation" %> <%@ page import="com.edeal.frontline.navigation.EdealBigTabsNavigation.BigTabsParams" %> <%@page import="java.util.Enumeration"%> <%@page import="com.edeal.frontline.helper.ActorBaseHelper"%> <%@page import="com.edeal.frontline.helper.custom.ActorHelper"%> <%@page import="org.apache.commons.lang.StringUtils"%> <%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %><% final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass()); FlRequest flRequest = new FlRequest(request); String code = flRequest.getRequestParameterOrAttribute("gridName"); if (code == null) { String paramCode = flRequest.getRequestParameterOrAttribute("code"); String gn=((paramCode==null?"":paramCode) + "_gridname"); code = flRequest.getRequestParameterOrAttribute(gn); if (code == null) { code = paramCode; } } GridData grid = (GridData)flRequest.getAttribute(code); boolean isEmbedded = flRequest.getAttribute(code + "_Embedded") != null; boolean isEmbedded2 = grid.isEmbedded(); String type = (String)flRequest.getAttribute("objSql"); if (type==null) { type=(String)flRequest.getAttribute(code+"_objSql"); } boolean fIsListEmbedded=isEmbedded || isEmbedded2; FlContext context = flRequest.getContext(); EdealBigTabsNavigation bTabNav = new EdealBigTabsNavigation(flRequest); bTabNav.setBigTabsParameterValue(BigTabsParams.SelectedTab, "1"); DataDictionary dico = context.getDataDictionary(); String pEditMode=flRequest.getParameter("editmode"); boolean fUpdateMode=("true".equals(pEditMode)); String pAllowUserUpdate=flRequest.getParameter("allowupdate"); boolean fAllowUpdate=("true".equals(pAllowUserUpdate)); // is preview to be displayed ? String pDisplayPreview=flRequest.getSearchCriteria("$$preview"); boolean fDisplayPreview=("true".equals(pDisplayPreview)); String pGridHeight=flRequest.getParameter("gridheight"); EdealGrid edealGrid=new EdealGrid(); edealGrid.setName(code); edealGrid.buildColumns(session, context, grid); int totalNbOfRecs=grid.getTotalNbOfRecords(); boolean fDisplayCounter=(totalNbOfRecs!=0); int pageNumber=grid.getPageNumber()+1; fAllowUpdate=fAllowUpdate && grid.isUpdatable(); if (fAllowUpdate) { ActorBaseHelper actorHlpr=ActorBaseHelper.factory(ActorBaseHelper.getSessionActor(session)); fAllowUpdate=fAllowUpdate && actorHlpr.canUseObjectForOperation(type,AccessControlManager.EDIT); } String jsGridObject=bTabNav.getBigTabsParameterValue(BigTabsParams.NameSearchGridJs); String[] updColumnFields=grid.getColumnUpdFld(); boolean canUpdateList=((updColumnFields!=null) && (updColumnFields.length>0)); // can we mass select entries ? boolean isMassSelect=grid.isMassSelectable(); String previewToken=grid.getPreviewCacheToken(); ListPreviewCache.PreviewCache previewCache=null; if (previewToken!=null) { previewCache=ListPreviewCache.factory(flRequest.getSession()).getCache(previewToken); } if(grid.getNbRows()==0){ %> <fl:label code="L0001" label="Aucune entrée disponible"/> <%}else{ int totalNbOfPages=1; try { if(totalNbOfRecs > grid.getNbLines()){ if(totalNbOfRecs % grid.getNbLines()>0){ totalNbOfPages=(totalNbOfRecs/grid.getNbLines())+1; } else{ totalNbOfPages=(totalNbOfRecs/grid.getNbLines()); } } } catch (ArithmeticException e) { } %> <div id="grid-actions"> <table width="100%"> <tr> <td width="33%"></td> <td width="33%" style="text-align:center;"> <% if(!(grid.isFirstPage() && grid.isLastPage())){%> <span class="grid-action"> <%if(!grid.isFirstPage()){%> <a onclick="<%=jsGridObject%>.loadPage('0',$('input.btMassEdit:checked').length>0);return false;" href="#"> <img src="<fl:webapp/>/icons/ico/flecheGdouble.gif"/> </a> <a onclick="<%=jsGridObject%>.loadPage('<%=grid.getPageNumber()-1%>',$('input.btMassEdit:checked').length>0);return false;" href="#"> <img src="<fl:webapp/>/icons/ico/flecheG.gif"/> </a> <%} if (fDisplayCounter) {%> <%=Utils.getMessage(session, "F608C", "Page")%> <%=pageNumber+"/"+totalNbOfPages%><%= " - ("+totalNbOfRecs+")"%> <%} else { %> <%=Utils.getMessage(session, "F608C", "Page")%> <%=pageNumber %> <% } %> <%if(!grid.isLastPage()){ %> <a onclick="<%=jsGridObject%>.loadPage('<%=grid.getPageNumber()+1%>',$('input.btMassEdit:checked').length>0);return false;" href="#"> <img src="<fl:webapp/>/icons/ico/flecheD.gif"/> </a> <% if (totalNbOfPages>1) { %> <a onclick="<%=jsGridObject%>.loadPage('<%=totalNbOfPages-1%>',$('input.btMassEdit:checked').length>0);return false;" href="#"> <img src="<fl:webapp/>/icons/ico/flecheDdouble.gif"/> </a> <%}%> <%}%> </span> <%}%> </td> <td width="33%" style="text-align:right;"> <% if (fAllowUpdate && !fUpdateMode) { %> <span class="grid-action"> <a class="action-item" href="javascript:<%= jsGridObject+".reloadForEdition()"%>"><fl:getMessage code="A0008" alt="Modifier"/></a> </span> <% } %> <% if (fUpdateMode) { %> <span class="grid-action"> <a id="grid-save-button" class="action-item" href="javascript:<%=jsGridObject+".save()"%>"><fl:getMessage code="A0003" alt="Enregistrer"/></a> <a class="action-item" href="javascript:<%= jsGridObject+".reset()"%>"><fl:getMessage code="A2002" alt="Annuler"/></a> </span> <% } %> </td> </tr> </table> </div> <div id="grid-data" class="data"<%= (previewToken==null)?"":" ed:previewtoken=\""+previewToken+"\"" %> ed:embedded="<%= fIsListEmbedded %>" style="<%= (pGridHeight!=null)?"height:"+pGridHeight:""%>"> <% int formIndex=1; ArrayList<String> rowsId = grid.getRowsId(); boolean oddRow = false; ActorBean currentActor=ActorHelper.getSessionActor(session); BasicBean rowBean; int nbOfRows=grid.getData().length; int tabindex=0; int nbOfCols=0; for(int rowidx = 0; rowidx < nbOfRows; rowidx++) { String id = ""; oddRow = !oddRow ; String objectID=""; if (rowsId != null && rowsId.size()>0 && rowsId.get(rowidx) != null) { objectID=rowsId.get(rowidx); } Object[] row = grid.getData()[rowidx]; nbOfCols=row.length; String cmtTitle = row[0].toString(); String cmtContent = row[1].toString(); String actor = row[2].toString(); String cmtCrDt = row[3].toString(); Date cmtCrDtDate = new Date(cmtCrDt); String cmtStatus = null; String cmtFahID = null; boolean allowedToEdit=fUpdateMode && canUpdateList && updColumnFields[4]!=null; try { cmtStatus = row[4].toString(); EdealGridColumn eGCol = edealGrid.getColumn(4); if (allowedToEdit) { try { rowBean= dico.getTable("sql",type).getBasicBean(objectID,session); allowedToEdit=rowBean.enforceAccess(AccessControlManager.EDIT,currentActor); if (allowedToEdit) { request.setAttribute(type,rowBean); } } catch (FrontlineException e) { logger.error("listAjax.jsp: cannot load bean ["+type+"]["+objectID+"]",e); } } } catch (Exception e) { } try { cmtFahID = (String)row[6]; System.out.println("cmtFahID != null : " + cmtFahID); } catch (Exception e) { System.out.println("cmtFahID null : " + cmtFahID); } %> <p><b><%=cmtTitle%></b> <% if (cmtStatus != null) { if (allowedToEdit) { String fieldsToBeUpdated=updColumnFields[4]; Vector<String> vFieldsToBeUpdated=(Vector<String>)Utils.explodeList(fieldsToBeUpdated,";"); Enumeration<String> enumFieldsToBeUpdated=vFieldsToBeUpdated.elements(); while (enumFieldsToBeUpdated.hasMoreElements()) { String fieldName=enumFieldsToBeUpdated.nextElement(); String eraseJs="eraseField('"+fieldName+"-"+objectID+"')"; %> <span style="display:block;width:21%"><fl:input property="<%=fieldName%>" id="<%=fieldName+\"-\"+objectID%>" ondelete="<%=eraseJs%>" nodiv="true" /></span> <% formIndex++; } }else{%> <span class="dataLabel"> (<%= cmtStatus %>)</span> <%} }%> <% if (cmtFahID != null) { %> <a href="<fl:link url="<%= \"/read_faqheader.fl?id=\" + cmtFahID %>"/>"> <fl:getMessage code="L306F" alt="Voir la fiche"/> </a> <% } %> </p> <p><%=Utils.formatToWeb(cmtContent, false)%></p> <div class="footerText" style="position:static"> <% if(Utils.isEmpty(actor)){ actor = "System"; } %> <p class="dataLabel" style="width:100%"><fl:getMessage code="L70F7" alt="Ecrit par"/> <%=actor %> <fl:getMessage code="L0043" alt="le"/> <%=Utils.formatToWebDate(cmtCrDtDate, false) %> <fl:getMessage code="L7087" alt="à"/> <%=Utils.formatToWebTime(cmtCrDtDate, false) %></p> <hr/> </div> <% } if (type!=null && request.getAttribute(type)!=null) { request.removeAttribute(type); } %> </div> <% } %>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de