%
/******************************************************************************
* 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.
******************************************************************************/
%><%@page session="true" import="com.edeal.frontline.*,java.util.*,java.text.*"%>
<%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %>
<%@ page import="com.edeal.frontline.navigation.FlRequest" %>
<%
final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass());
FlRequest flRequest = new FlRequest(request);
FlContext context = flRequest.getContext();
DataDictionary dico = context.getDataDictionary();
FlLocale locale = FlLocale.getInstance(session);
String id=null;
try {
id = FormQuestion.getID();
} catch (FieldNotInitializedException fnie) {
}
Vector listSelectedRef = null;
String selectedRefStr = null;
try{
listSelectedRef = (Vector)FormQuestion.getCustomProperty("FqtRefsDisp_");
selectedRefStr = Utils.implodeList(listSelectedRef, "|");
}catch(FieldNotInitializedException e){}
Vector listRef2Init = null;
String refToInitStr = null;
try{
listRef2Init = (Vector)FormQuestion.getCustomProperty("FqtRefsInit_");
refToInitStr = Utils.implodeList(listRef2Init, "|");
}catch(FieldNotInitializedException e){}
//Cette variable est utilisée pour le premier chargement de la page en création
//Au 1er chargement nous trouvons: type = text libre et le champs taille zone
String typeRefresh=null;
if (id==null){
typeRefresh = flRequest.getRequestParameterOrAttribute("typeRefresh");
}
String type=null;
String idType=null;
try{
idType = FormQuestion.getFqtType();
}catch(FieldNotInitializedException fnie){}
if (idType != null && idType.length()>0){
if (idType.equals(dico.getRefIdByCode("FqtType", "REF"))){
type = "REF";
}
else if (idType.equals(dico.getRefIdByCode("FqtType", "LST"))){
type = "LST";
}
//Text Libre
else if (idType.equals(dico.getRefIdByCode("FqtType", "FRE"))){
type = "FRE";
}
}
int seqNum = 0;
try {
seqNum = FormQuestion.getFqtSeqNum();
} catch (FieldNotInitializedException fnie) {
seqNum = CounterFactory.getCounter(context , "FormQuestionNum");
}
DecimalFormat df = FlLocale.getInstance(session).getDecimalFormat("0000");
//Type d'aafichage --> combo, checkbox
String typeDisp=null;
String idTypeDisp=null;
try{
idTypeDisp = FormQuestion.getFqtDispType(); //dico.getRefIdByCode("FqtDispType", )
}catch(FieldNotInitializedException fnie){}
if (idTypeDisp!=null && idTypeDisp.length()>0){
if (idTypeDisp.equals(dico.getRefIdByCode("FqtDispType", "RADIO"))){
typeDisp = "RADIO";
}else if (idTypeDisp.equals(dico.getRefIdByCode("FqtDispType", "CHECK"))){
typeDisp = "CHECK";
}else if (idTypeDisp.equals(dico.getRefIdByCode("FqtDispType", "COMBO"))){
typeDisp = "COMBO";
}
}
//Text Associé
int associatedText = 0;
try {
associatedText = FormQuestion.getFqtAssociatedText();
} catch (FieldNotInitializedException fnie) {}
int hasOther = 0;
try {
hasOther = FormQuestion.getFqtHasOther();
} catch (FieldNotInitializedException fnie) {}
String labelcode = null;
String msg = null;
try {
labelcode = (String)FormQuestion.getCustomProperty("FqtLabelCode_");
msg = Utils.getMessage(context,session, "fr_FR",labelcode, false, "");
msg = Utils.getMessage(session, labelcode, false, "");
} catch (FieldNotInitializedException fnie) {
}
%>
"/>
"/>
" ou="<%=\"/edit_formquestion.fl\"+ (id!=null ? \"?id=\"+id : \"\")%>">
">
<% if (("FRE".equals(type)||typeRefresh==null)&&!"LST".equals(type)&&!"REF".equals(type)){%>
<%}else if ("REF".equals(type)){%>
<%}%>
<%-- --%>
<% if ("REF".equals(type)||("LST".equals(type))){%>