Problem in dataTable

I have a class FilterM tah has some attributes, one of them is filterType. In one JSp I have a dataTable in whilch the value is a List<FilterM>.
So if i do this
<h:dataTable id="tablaFiltros" value="#{Bean.filterMList}" var="filtro">
<h:column>
<h:outputText value="#{filtro.filterType}"/>
</h:column>
</h:dataTable>
that will put in the value of the outputText the filterType of each FilterM of my List.
So what i want to know is that if is there any way to make a validation if that filterType is equal to 1 so the value of the outputText will be "entry" for example.
Please help me,
Andres Qui�ones

try
<h:outputText value="#{filtro.filterType == 1 ? 'entry' : 'non entry'}"/>

Similar Messages

  • Problem displaying datatable colum value

    hi ,
    Below is my JSPcode
    <h:dataTable value ="#{DatabaseBean.table}" var= "row">
    <h:column><h:outputText value ="#{row.Description}"/></h:column>
    Here is bean code
    I am using ArrayList. I put objects of another Bean User in ArrayList name d 'Questions'
    returning Questions form getTable function in DatabaseBean.
    public ArrayList getTable()
         FacesContext facesContext = FacesContext.getCurrentInstance();
    String Category = (String)facesContext.getExternalContext().getRequestParameterMap().get("Login:Category");
    GetSelectedQuestions(Category);
         System.out.println("After GetSelectes function");
    return(Questions);
    public void GetSelectedQuestions(String Category)
    Questions = new ArrayList();
    String Query = "select Id,Description,Answers,Answer from Questions where Category like '" + Category +"'";
         System.out.println("...."+Query);
         try{
         open();
         resultset = statement.executeQuery(Query);
         while(resultset.next())
              String Id = resultset.getString(1);
              String Question = resultset.getString(2);
              String Answers = resultset.getString(3);
              String Answer = resultset.getString(4);
              System.out.println(".."+Id+"..."+Question);
              User QuesAnswer = new User(Id,Question,Answers,Answer);
              Questions.add(QuesAnswer);
         close();
         }catch(Exception e){System.out.println("Exception "+e);}
    I am getting error as below
    javax.servlet.ServletException: Error getting property 'ID' from bean of type EX1.User
    pleas help me out
    shil

    Hello
    In your User bean you have an attribute called as ID, which will have get & set method like getId() and setId().
    I will suggest rename this attribute such that it will have first minimum 3 letters in small case like intId or strId, then change the get/set method respectively like getStrId() or getIntId().
    This is a problem with java reflection that when you have attribute which will have 1 or 2 chars in the start of varialbe name, then some time reflection fails to call that methods get-set method.
    You change the varaible name and hopefully everything will work fine.
    -Dhanya

  • Geting row data problem from datatable

    I have 2 buttons on jsp page(OK button and Search button) and a datatable . under search_button_click ; filling datatable with personInfo also under ok_button_click
    i get all rows using iteration..code is below...first column of datatable is selectBoolean. i try to get row that was checked.
    for (MyBean row : listTable) {
    if (row.isCbteyit()) {
    System.out.println("...:" + row.getPO_KARNE_ADET());
    problem;i can get all rows but i can't get checkbox checked info..all rows return false...
    Balus i try to do like your source code.
    http://balusc.blogspot.com/2006/06/using-datatables.html(Select multiple rows)
    also jsp side binding code is
    <h:dataTable value="#{denemeTEYIT.listData}"

    Dear Jansi
    thanks for the link,
    in SMSY i SEE a difrent massage server in the java and abap? from where did he get the massage server?
    the data source in the java is SLD but in abap is tms/rfc whay?
    regards
    Naor

  • Problems with datatable and scroller

    I wonder, if this behavior is a mistake of mine or a bug in the myfaces implementation.
    sitution
    I have datatable and datascroller component. The table gets the data from bean which is in request scope. The table is dynamic. Each time we hit the page, we can expect a different resultset/rowcount for the table.
    problem
    When I change the page of datascroller and come back a second time with a rowcount, that is to small to reach that page, I get a empty table. Expected result, would be a page, that shows at least last elements of the resultset.
    You can see the mistake, by refreshing the page datascroller.jsp a couple of times, change the page in the scroller and refresh again a couple of times.
    You will get results like this:
    15 hits, hits 81 - 15. page 9 / 2
    23 hits, hits 41 - 23. page 5 / 3
    5 hits, hits 21 - 5. page 3 / 1
    Testcase
    datascroller.jsp
    This is almost like the openDatatable example.
    <%@include file="/inc/importPageParams.inc" %>
    <%@include file="/inc/importTaglibs.inc" %>
    <html>
    <%@include file="/inc/head.inc" %>
    <body>
    <f:view>
        <f:loadBundle basename="com.ebsecure.archiv.web.resource.messages.messages" var="messages"/>
    <x:panelLayout id="page" layout="#{globalOptions.pageLayout}"
                styleClass="pageLayout"
                headerClass="pageHeader"
                navigationClass="pageNavigation"
                bodyClass="pageBody"
                footerClass="pageFooter" >
              <f:facet name="body">     
        <h:panelGroup id="body">
              <h:form name="hitlistProcessionForm" styleClass="standardTable">
                             <x:dataTable       id="data"                                              
                                             styleClass="scrollerTable"
                                             headerClass="standardTable_Header"
                                             footerClass="standardTable_Header"
                                             rowClasses="standardTable_Row1,standardTable_Row2"
                                             columnClasses="standardTable_Column,standardTable_ColumnCentered,standardTable_Column"
                                        var="car"
                                        value="#{scrollerList.data}"                                     
                                        preserveDataModel="true"
                                        rows="10">
              <x:columns value="#{scrollerList.columnHeaders}" var="columnHeader">
                <f:facet name="header">
                    <x:commandSortHeader columnName="#{columnHeader}" arrow="false">
                        <f:facet name="ascending">
                            <h:graphicImage value="images/ascending-arrow.gif" rendered="true" border="0"/>
                        </f:facet>
                        <f:facet name="descending">
                            <h:graphicImage value="images/descending-arrow.gif" rendered="true" border="0"/>
                        </f:facet>
                        <h:outputText value="#{columnHeader}" />
                    </x:commandSortHeader>
                </f:facet>
                <!-- row is also available -->
                <h:outputText value="#{scrollerList.columnValue}" />
            </x:columns>
                </x:dataTable>
            <h:panelGrid columns="1" styleClass="scrollerTable2" columnClasses="standardTable_ColumnCentered" >
                <x:dataScroller id="scroll_1"
                        for="data"
                        fastStep="10"
                        pageCountVar="pageCount"
                        pageIndexVar="pageIndex"
                        styleClass="scroller"
                        paginator="true"
                        paginatorMaxPages="9"
                        paginatorTableClass="paginator"
                        paginatorActiveColumnStyle="font-weight:bold;"
                        >
                    <f:facet name="first" >
                        <h:graphicImage url="images/arrow-first.gif" border="1" />
                    </f:facet>
                    <f:facet name="last">
                        <h:graphicImage url="images/arrow-last.gif" border="1" />
                    </f:facet>
                    <f:facet name="previous">
                        <h:graphicImage url="images/arrow-previous.gif" border="1" />
                    </f:facet>
                    <f:facet name="next">
                        <h:graphicImage url="images/arrow-next.gif" border="1" />
                    </f:facet>
                    <f:facet name="fastforward">
                        <h:graphicImage url="images/arrow-ff.gif" border="1" />
                    </f:facet>
                    <f:facet name="fastrewind">
                        <h:graphicImage url="images/arrow-fr.gif" border="1" />
                    </f:facet>
                </x:dataScroller>   
                   <x:dataScroller id="scroll_2"
                                for="data"
                                rowsCountVar="rowsCount"
                                displayedRowsCountVar="displayedRowsCountVar"
                                firstRowIndexVar="firstRowIndex"
                                lastRowIndexVar="lastRowIndex"
                                pageCountVar="pageCount"
                                pageIndexVar="pageIndex"
                               >
                            <h:outputFormat value="{0} hits, hits  {2} - {3}. page {4} / {5}
                            " styleClass="standard" >
                                <f:param name="myRowsCount" value="#{rowsCount}" />
                                <f:param name="myDisplayedRowsCountVar" value="#{displayedRowsCountVar}" />
                                <f:param name="myFirstRowIndex" value="#{firstRowIndex}" />
                                <f:param name="myLastRowIndex" value="#{lastRowIndex}" />
                                <f:param name="myPageIndex" value="#{pageIndex}" />
                                <f:param name="myPageCount" value="#{pageCount}" />
                            </h:outputFormat>
                        </x:dataScroller>       
            </h:panelGrid>
              </h:form>
        </h:panelGroup>
         </f:facet>
         </x:panelLayout>
    </f:view>
    </body>
    </html>
    snippet of faces-config.xml
    <managed-bean>
            <managed-bean-name>scrollerList</managed-bean-name>
            <managed-bean-class>my.tests.DatatableTestBean</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
    and the bean
    package my.tests;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.model.DataModel;
    import javax.faces.model.ListDataModel;
    import org.apache.log4j.Logger;
    public class DatatableTestBean {
        private DataModel data;
        private DataModel columnHeaders;
        Logger logger;
        public DatatableTestBean() {
            List headerList = new ArrayList();
            headerList.add("Index");
            headerList.add("Type");
            headerList.add("Model");
            columnHeaders = new ListDataModel(headerList);
            List rowList = new ArrayList();
            for (int i = 0; i <= (double) ((double) Math.random() * (double) 1000); i++) {
                List colList = new ArrayList();
                colList.add(new Integer(i));
                colList.add("Car Type " + i);
                colList.add(i % 2 != 0 ? "green" : "blue");
                rowList.add(colList);
            data = new ListDataModel(rowList);
        public DataModel getData() {
            return data;
        public DataModel getColumnHeaders() {
            return columnHeaders;
        public Object getColumnValue() {
            Object columnValue = null;
            if (data.isRowAvailable() && columnHeaders.isRowAvailable())
                columnValue = ((List) data.getRowData()).get(columnHeaders.getRowIndex());
            return columnValue;
    }Does anyone know, if I'm totally wrong or can see the mistake I or the implementation do. Does anyone has any suggestions, how to get always a right result?
    Any help is very appreciated.
    thanks, Stephan

    the datascroller is based on the first attribute of the datatable to calculate the index.
    try to set the first attribute to '1' in your jsp. The goal is to reset this value when your data have changed.

  • Sorting Problem in DataTable

    Hi ,
    I don't know if we can do a workaround on this
    I am using Hibernate with ObjectListDataProvider bound to table
    The Scenario is as below
    1. let's say i have 4 fields in the database customer id , name ,address and email and all of them is sortable
    2. each row will have an edit button ( when u click on that , all those 4 fields will become textfield and allow user to save or cancel their changes with some validation )
    Here is the problem
    1. let's say user sort by customer name by clicking the customer name column .. thats fine . the table is sorted by customer name
    2. now he wants to edit some particular row at row N and enter his changes include changes on CUSTOMER NAME , when he clicks save
    he hits an error , so that particular row all still text field with some error messages
    But the particular row will be jumping around somewhere
    The Reason is because when the page refresh the table will resort the thing and in this case it will re sort based on Customer Name
    3. even he successfully updated ( made changes to Customer Name )
    the row also will still be jumping around
    How can we prevent this?
    How can we disable sorting/resorting at the run time progrmmatically?
    What i want is they can sort
    but as soon they edit / add new row
    the table will stay still and they can see the newly added row still stay in the last row
    or the row that they edit still stay at the Row N when they clicked the Button?
    Thanks

    Thanks Peluka.
    But even I don't enhance the vendor search help, I still found that the original standard version has this problem after sorting.
    Is that the program bug?
    Have anyone encountered this problem before?

  • Calendar problem in DataTable

    Hello,
    in a Calendar placed in a DataTable cell, after prompt for a Date, always set the selected date to the first row containing a Calendar.
    Thanks.

    Hello,
    in a Calendar placed in a DataTable cell, after
    prompt for a Date, always set the selected date to
    the first row containing a Calendar.This is a known bug. However, there is an alternative prototype popup calendar that you can try out. Check out http://blogs.sun.com/roller/page/edwingo?entry=sample_popup_calendar_now_works and http://blogs.sun.com/roller/page/edwingo?entry=component_authoring_for_creator for more info.
    -Edwin
    Creator team
    http://blogs.sun.com/edwingo/

  • Another problem about datatable

    Hi ,
    I found that default value of seletItem is not selected in dataTable.
    Here is a example:
    <h:dataTable value="#{users}" var="user1">
       <h:column>
            <h:selectOneListbox value="1"
               <f:selectItem itemValue="1" itemLabel="c1"/>
               <f:selectItem itemValue="2" itemLabel="c2"/>
               <f:selectItem itemValue="3" itemLabel="c3"/>
          </h:selectOneListbox>
      </h:column>
    </h:dataTable>
    The default value c1 should be selected, but it isn't .
    Could someone kindly tell me why and how should I do?
    Many thanks in advance.
    Michael

    try:
    <h:dataTable value="#{users}" var="user1">
       <h:column>
            <h:selectOneListbox value="c1"
               ><f:selectItem itemValue="1" itemLabel="c1"/>
               <f:selectItem itemValue="2" itemLabel="c2"/>
               <f:selectItem itemValue="3" itemLabel="c3"/>
          </h:selectOneListbox>
      </h:column>
    </h:dataTable>

  • Command Link as a row of a datatable in JSF

    Hi All,
    I am new to JSF. I have a Datatable with n number of rows.
    I would like to have a command Link in each of the rows, so that when i click the command link i should get the data of the entire row in my edit page.
    Can anyone suggest how can i achieve this.
    Regards
    SN

    Hi,
    Do following:
    1- add a datatable in your page and fill it with data comes from database(Assume u have no problem with datatable)
    2- add a column as commandLink in data table. e.g.
    <h:column>
    <f:facet name="header">
    <h:outputText value="name" />
    </f:facet>
    <t:commandLink action="editObject" immediate="true" >
    <h:outputText value="#{theobject.name}" />
    <t:updateActionListener property="#{objectForm.id}" value="#{objectDto.id}" />
    </t:commandLink>
    </h:column>
    in this code:
    "name" is header of column,
    "editObject" is defined in navigation rule to navigate to edit page, lets say object form.
    "theobject.name" the value that mouse gets finger over it!
    "objectForm.id" the pointer to an "id setter" of a managed bean (named objectForm) defined in faces-config.xml. In this setter you can load corresponding data from database
    "objectDto.id" the pointer to an "id getter" of a managed bean (named objectDto) defined in faces-config.xml. this getter return the id of the entity row you clicked on.
    3- Clearly, you need to defined all managed beans, and dont forget to have a customized setter for id of objectForm (setId) to load the entity from database and fill all editable properties(as you like) in this function (setId).
    4- you need a JSF page to redirect to it for editing properties and feed by objectForm
    5- Thats it :)

  • Ice:dataTable binding

    Hi
    I have got problem with dataTable. If I add binding attribute (binding="#{moodContainer.htmlDataTable}") to my view the table isn't displayed.
    import com.icesoft.faces.component.ext.HtmlDataTable;
    public class MoodContainer {
    private HtmlDataTable htmlDataTable;
    private int myRowIndex;     
    private List<MoodVO> moodContainer = new ArrayList<MoodVO>();
         moodContainer.add(new MoodVO(1,"01.04.2009", Grade.TWO, Weather.SUNNY, true, true, false, true, true, "1234"));
         moodContainer.add(new MoodVO(1,"01.04.2009", Grade.TWO, Weather.SUNNY, true, true, false, true, true, "1234"));
         moodContainer.add(new MoodVO(1,"01.04.2009", Grade.TWO,
         public List<MoodVO> getMoodContainer() {
              return moodContainer;
             public int getMyRowIndex() {
             return htmlDataTable.getRowIndex();
             public void setMyRowIndex(int myRowIndex) {
             this.myRowIndex = myRowIndex;
         public HtmlDataTable getHtmlDataTable() {
              return htmlDataTable;
         public void setHtmlDataTable(HtmlDataTable htmlDataTable) {
              this.htmlDataTable = htmlDataTable;
         }I also tried to use UIData instead of HtmlDataTable but it doesn't work for me.
    Do you know what I am doing wrong?
    Thanks in advance
    Mariusz
    P.S. I am using facelets and ICEfaces 1.8.0
    Edited by: syllepsa on Jun 24, 2009 11:49 PM
    Edited by: syllepsa on Jun 24, 2009 11:50 PM

    Hi syllepsa,
    Your coding part not display array list data assigning to htmlDataTable . Only creating moodContainer array list.
    kush

  • A peculiar problem using jsp:include conditionally

    Hi,
    This is regarding usage of jsp:include in Myfaces 1.1.4.
    lets say the page containing the jsp:include statements as PARENT PAGE
    I have a requirement to display some components in the PARENT PAGE which are continued from the same form using different JSPs since the components are different based on a condition.
    I used the following code:
    <h:panelGrid id="CandidateRequestorView" rendered="#{RgsViewRequirementBB.displayCandidateView}" columns="1">
         <jsp:include page="/RGSPages/requestorViewReq.jsp"/>
    </h:panelGrid>
    <h:panelGrid id="CandidateMatcView" rendered="#{!RgsViewRequirementBB.displayCandidateView}" columns="1">
         <jsp:include page="/RGSPages/matcViewReq.jsp"/>
    </h:panelGrid>Now if I use only 1 panel grid (any one out of the above 2) it works. I didnt even use <f:subview> any where( neither in the PARENT PAGE nor in the included jsps), but it works.... Also for your knowledge these jsps contain only JSF elements( no plain HTML code is used)
    But if I am using the above displayed code to have both the jsps (actually only one will be displayed bcoz the same condition is used)
    then its not displaying all the contents of included jsp. (YES I AM ABLE TO GET TO THE JSP...THERE IS NO ERROR) There is a datatable inside this jsp which is not rendered......
    I have used <f:subview> when i faced this problem.......
    I have tried every combination....writing <f:subview> in the PARENT PAGE ....writing in included jsps and removed it from PARENT PAGE.....also some of the articles in the forum mentioned that <f:subview> element should not be used inside <h:panelgrid> .....i even tried that....but final result is same as I was getting the first time...
    I am able to reach the jsp page (with or without <f:subview>) but i am not able to display all the contents....but if i use only one of the included jsps(by removing any one of the panel grids) I am able to view them. Since I am able to view all the contents when i view these pages inside the PARENT PAGE one at a time, that indicates there is no problem in datatable contained in these pages.....
    ( Also I have not used <f:view> inside my included jsps.)
    Please help to solve this problem...
    Thanks
    Avner

    Hi BalusC,
    The RgsViewRequirementBB is already in the session scope.
    Also I am using the setDisplayCandidateView(true) or setDisplayCandidateView(false ) explicitly as depicted below. The page is still under construction thats why the rendered attribute is explicitly set.
    public RgsViewRequirementBackingBean() {
    super();
    // TODO Auto-generated constructor stub
    try{
                setDisplayCandidateView(true);
                 // some more code goes in here
         catch(Exception){
               ResourceBundle bundle = null;
               bundle = ResourceBundle.getBundle("resources.ErrorMessages", FacesContext.getCurrentInstance().getViewRoot().getLocale());
                 //some more code goes in here
    }

  • Can I put two h:dataTable in one page?

    I find that if I put two dataTables in the same page, something goes wrong.
    Any solution to this?
    Thanks in advance.

    userManagement.jsp:
    <%@ page language="java" pageEncoding="GBK"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
         <title>My JSF 'userManagement.jsp' starting page</title>
         <meta http-equiv="pragma" content="no-cache">
         <meta http-equiv="cache-control" content="no-cache">
         <meta http-equiv="expires" content="0">   
         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
         <meta http-equiv="description" content="This is my page">
         <!--
         <link rel="stylesheet" type="text/css" href="styles.css">
         -->
    </head>
    <body>
         <f:view>
              <f:loadBundle basename="edu.fudan.glee.view.bundle.MessageBundle" var="bundle"/>
              <%@ include file="header.jsp" %>
              <%@ include file="demandHistory.jsp" %>
              <%@ include file="rootCatalogLink.jsp" %>     
                   <p>  </p>
                   <TABLE border="1" width="400px">
                        <TR>
                             <TD>
                                  <h:outputLink value="/Glee/userManagement_favorite.faces" rendered="true" id="favoriteLink">
                                       <h:outputText value="#{bundle.favoriteLink}"></h:outputText>
                                   </h:outputLink>
                             </TD>
                             <TD><h:outputLink value="/Glee/userManagement_personal.faces" rendered="true" id="personalLink">
                                       <h:outputText value="#{bundle.personalLink}"></h:outputText>
                                   </h:outputLink>
                             </TD>
                             <TD><h:outputLink value="/Glee/userManagement_comment.faces" rendered="true" id="commentLink">
                                       <h:outputText value="#{bundle.commentLink}"></h:outputText>
                                   </h:outputLink>
                             </TD>
                        </TR>
                   </TABLE>
                   <%@ include file="footer.jsp" %>
              </f:view>
    </body>
    </html>demandHistory.jsp:
    <%@ page language="java" pageEncoding="GBK"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
         <f:subview id="demandHistorySubView"> 
              <h:form id="demandHistoryForm" rendered="true">
                        <h:dataTable id="demandHistoryTable" var="video" value="#{UserBean.demandHistory}" border="1">
                         <h:column>
                              <f:facet name="header">Recent</f:facet>
                             <h:commandLink action="videoDetail">
                                            <h:outputText value="#{video.chineseName}"/>
                                            <f:param name="videoId" value="#{video.id}"/>
                             </h:commandLink>
                         </h:column>
                         </h:dataTable>
              </h:form>
         </f:subview>rootCatalogLink.jsp:
    <%@ page language="java" pageEncoding="GBK"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
         <f:subview id="rootCatalogLinkView">
              <h:form id="rootCatalogLinkForm">
                   <h:dataTable id="rootCatalogTable" var="videoType" value="#{VideoListBean.rootCatalog}" border="1">
                         <h:column>
                              <f:facet name="header">Video Catalog</f:facet>
                             <h:commandLink action="rootCatalog">
                                            <h:outputText value="#{videoType.name}"/>
                                            <f:param name="videoTypeId" value="#{videoType.id}"/>
                             </h:commandLink>
                         </h:column>
                   </h:dataTable>
              </h:form>
         </f:subview>The problem is dataTable in rootCatalogLink.jsp doesn't work.The commandLink in rootCatalogLink.jsp doesn't work. When I click the hyperLink, no action performed.
    If the change the include sequence to:
    <%@ include file="rootCatalogLink.jsp" %>
    <%@ include file="demandHistory.jsp" %>
    well, the commandLink in demandHistory.jsp doesn't.
    What's the problem?
    Thank you
    Message was edited by:
    zhlmmc
    Message was edited by:
    zhlmmc

  • Problem with data table and internal and external command button

    thanks for your time,
    i have this problem
    <t:dataTable binding="#{manejadorAsociarEvaluadoresProyecto.tablaPosiblesEvaluadores}"
    cellpadding = "6"
    cellspacing = "3"
    value = "#{manejadorAsociarEvaluadoresProyecto.listaPosiblesEvaluadores}"
    var = "posibleEvaluador"
    preserveDataModel="false">
    <h:inputTextarea value="#{posibleEvaluador.correoActualCuerpo}"
    cols="50"
    rows="50"
    rendered="#{posibleEvaluador.detalle}" />
    <h:commandLink immediate="false" action="#{posibleEvaluador.editar}" value="Editar Correo"/>
    </t:dataTable>
    <h:panelGroup id="panelBotonEvaluadores" rendered="#{!manejadorAsociarEvaluadoresProyecto.b_mostrarEvaluadores && manejadorAsociarEvaluadoresProyecto.tieneProyectos}">
    <h:commandButton action="#{manejadorAsociarEvaluadoresProyecto.mostrarEvaluadores}"
    value="Asociar evaluadores"/>
    </h:panelGroup>
    this is the method of posibleEvaluador
    public String editar()
    setDetalle(!getDetalle());
    return "";
    all run perfect, until y click in "asociar evaluadores" button, after of this the commandLink "editar Correo" not run, this commanlLink is for not show the inputTextArea, i don't know what happend.
    thanks for your help

    Hello,
    I have replicated and confirmed the problem with LabVIEW 2010, Report Generation Toolkit 2010 and Word 2010.  I have filed this to R&D under CAR ID #257414.  As a workaround you can manually set each cell using Word Edit Cell.vi.  I have attached a simplified representation of this unexpected behavior as well as the workaround.  Hopefully this helps everyone out!
    David_L | Certified LabVIEW Architect
    LabVIEW Tools Network | LabVIEW Tools Network Developer Center
    Attachments:
    Word 2010 Table CAR.vi ‏17 KB
    Word 2010 Table FIX.vi ‏22 KB

  • Kt133a and few problem

    hello
    i hav a kt7 turbo2
    - when i want to install new via driver i have a probleme with datat transfer betwen cdrom and hdd  the pc stop freeze or reboot . then i go to system panel and delete via pci ide master and reinstall it with old driver  and it works...
    - audio ac 97  . test with directx8 cant chek acceleration
    in hardware audio    and teste stop at 22KHz  and say that the chip cant handle hardware tampon?
    - i install win98se and hav probleme to reboot the pc it does not do itself  must do it myself i know that is a line in system.ini file but dunno wich one .. so i install a patch but works sometimes...
    thanks for help would be appreciated

    Hi,
    Did you try installing the newer 4.46 hyperion drivers?

  • Rowspan and h:datatable

    Hi,
    I've a little problem with datatable,
    I want to make table like this
    A |________
    |________
    |________
    ___|________
    B |________
    |________
    |________
    ___|________
    How to do this table using h:datatable.
    I think, that I must use h:datatable within h:datatable, but it's difficult.
    Is there any simple way, or better to wait for JSF2.0?
    Thanks

    I've tried to get correct working nested datatable
    with commandbutton in innertable.
    To view nested table are good, but events in don't
    work correctly.UICommand elements in datatables are tricky. Keep in mind that the data should be available all the time, during all JSF phases, so that JSF knows which row was involved in the ActionEvent. A simple prove: if the managed bean which takes care of the data is set in request scope, change it to session scope. Big chance that it should work.
    Does anybody know, how to get simple walkaround in
    this problem, or it's better to use 1 table, delete
    unnecessary data or/and try to make rowspan?
    Thanks for help:)Deleting unnecessary data so that you get empty cells in the right rows is easy to implement. Just compare with the former row in a loop. If you want to create rowspans, then go for another datatable component, like I mentioned earlier. Tomahawk or RISB.

  • Any hack to show usermulti fields with SPSiteDataQuery ?

    Hi,
    I had some code that worked perfectly to show data from different web in a site collection. It was done in code by traversing different spweb,i.e forloop. Recently, I was advised to change it to CAML and SPSiteDataQuery to improve performance. 
    Now the problem is DataTable wont show any data in multiuser column. I searched and find out that its a known bug and so far there is no solution to it. I would like to know what other options do i have, other than traversing. Or if there is any hack, kindly
    let me know.
    If its any worth, I am using Sharepoint foundation 2010. 
    Thanks
    Nomi

    Hi itsnomihere,
    SPSiteDataQuery returns no data when ViewFields property includes a multi-value field, when referencing multi-value fields in ViewFields property of SPSiteDataQuery object, include “Nullable” attribute and set it to “true”, however, the multi-value field
    value will be empty in the query result. please refer to the following link for more information:
    http://support.microsoft.com/kb/2703054
    In this situation, you may consider using the SPQuery or using FullTextSQLQuery object, here is a thread providing sample code snippet for it, you can check whether it works:
    http://social.msdn.microsoft.com/Forums/en/sharepointdevelopment/thread/059a597c-3aa9-4fc3-ac32-db5390cee784
    FullTextSqlQuery Class:
    http://msdn.microsoft.com/en-us/library/microsoft.office.server.search.query.fulltextsqlquery.aspx
    Thanks,
    Qiao
    Qiao Wei
    TechNet Community Support

Maybe you are looking for

  • PI 7.0 Hardware Requirements & Confirguration

    Hello, We are planning to install PI 7.0 on the AIX 5.3.x(64 bit) with database DB2 UDB 8.2.x.(64 bit) for a Sandbox environment. I am new to the XI area. I need some small/detailed information regarding following requirements( from PI BASIS point of

  • Mail doesn't download on snow leopard

    Mail won't download on my Snow Leopard Macbook Air.  Activity icon keeps spinning then it asks for my MobileMe password and keeps spinning.  What's the issue?  I have iCloud on my Lion Mac Mini and iPohne 4S and they work fine.  Is this the same old

  • HELP!! Ipod touch will not charge or turn on

    My ipod touch will not charge or turn on. I think the battery went dead, but now it won't even turn on or charge. My computer does not even recognize that it is plugged in. I have tried to charge it on other devices and get the same result. Can anyon

  • Publishing website in dreamweaver

    i'm using dreamweaver mx 2002 version 6.1. i want to publish my website from my localhost to the web server which is in Linux platform. I have set up the contribute connection to the web server and test successful. The problem is how i want to publis

  • CUP 5.3 - Registered users

    Good morning! I have two questions on the provisioning of users: - When the workflow ends, the user who is in the backend tables is the last approver on the workflow. Is there any possibility to change that user and include the communication user or