Link to home
Start Free TrialLog in
Avatar of huzefaq
huzefaq

asked on

having problem with table in a jsp

Hi I need a table to look like this
-----------------------------------------------------------------------------------------------------------
Name / Title                                          Phone / Email        
(line)------------------------------------------------------------------------------------(line)
Steven-Stern test-ccim , CCIM             312-321-4512
  (no line here)                                 Send Email                         Image(spanned over 6 rows)
  Chief Snack Officer                                    
  430 N. Michigan Ave.
  Suite 800
  Chicago, IL 60611
-------------------------------------------------------------------------------------------------------------
but it comes out to be like this
-------------------------------------------------------------------------------------------------------------
Steven-Stern test-ccim , CCIM         312-321-4512
 (line)
  Chief Snack Officer                             Send Email       
  430 N. Michigan Ave.
  Suite 800
  Chicago, IL 60611                                                                  ( image over here)
-------------------------------------------------------------------------------------------------------------

Any help will be greatly appreciated
it also prints lnes between each person 's data. I need a line onle between all the data

here's my code
______________________________________________________________________________
 <tr>
            <td>
              <table width="508">
                    
                  <!-- To get rid of Null values -->        
                  <%!
                        public String checkNull(String theValue){
                        return ( theValue == null ) ? "" : theValue;
                  }
                  %>

                  <% if(message != null) { out.println("<br><span class='message_text'>" + message + "</span>"); } %>

                  <%
                        if(search_results.size() > 0) { %>
                              <tr height="25">
                                    <%-- <td bgcolor="#989898" nowrap>&nbsp;&nbsp;<a class="title_link" href="<%=chapter_name%>?action=search_members&first_name=<%= first_name %>&last_name=<%= last_name %>&city=<%=city%>&state=<%=state%>&ccim_status=<%=ccim_status%>&order_by=first_name">First Name</a>&nbsp;&nbsp;</td>
                                    <td bgcolor="#989898" nowrap>&nbsp;&nbsp;<a class="title_link" href="<%=chapter_name%>?action=search_members&member_id=<%= member_id %>&first_name=<%= first_name %>&last_name=
                                    <%= last_name %>&city=<%=city%>&state=<%=state%>&ccim_status=<%=ccim_status%>&order_by=last_name">Last Name</a>&nbsp;&nbsp;</td> --%>
                                    
                                    <th align = 'left'>Name / Title</th>
                                    <th align = 'left'>Phone / Email</th>
                                    <th></th>

                              </tr>
                              <%
                                    String bgcolor = "#F0F0F0";
                                    while(result_iterator.hasNext()) {
                                          ChapterMember next_record = (ChapterMember)result_iterator.next();
                              %>
                                    <tr>
                                          <td>
                                                <tr>
                                                      <td nowrap><a href="<%=chapter_name%>?action=show_memberDetail&eid=<%= next_record.getMember_ID() %>"><%=next_record.getFirst_name()%> <%=next_record.getLast_name()%>
                                                      <%if(next_record.getMember_class().equals("DESIGNEE")){%>, CCIM<%}%></a>
                                                      </td>
                                                      <td><%=next_record.getPhone1()%></td>
                                                      <td></td>

                                                </tr>
                                                <tr>
                                                      <td nowrap>&nbsp;&nbsp;<%=next_record.getTitle()%></td>
                                                      <td><a href="mailto:<%=next_record.getEmail()%>">Send Email</a></td>
                                                      <td></td>
                                                </tr>
                                          
                                                      <%
                                                            if(!checkNull(next_record.getAddress1()).equals("")) { %>
                                                            <tr><td>&nbsp;&nbsp;<%= next_record.getAddress1()%></td></tr>
                                                      <% } %>


                                                      <%
                                                            if(!checkNull(next_record.getAddress2()).equals("")) { %>
                                                            <tr><td>&nbsp;&nbsp;<%= next_record.getAddress2()%></td></tr>
                                                      <% } %>


                                                      <%
                                                            if(!checkNull(next_record.getCity()).equals("")) { %>
                                                            <tr><td>&nbsp;&nbsp;<%= next_record.getCity()%>, <%=next_record.getState()%> <%=next_record.getZip()%></td></tr>
                                                      <% } %>


                                                      <%
                                                            if(!checkNull(next_record.getCountry()).equals("") && !checkNull(next_record.getCountry()).equals("United States")) { %>
                                                            <tr><td>&nbsp;&nbsp;<%= next_record.getCountry()%> </td></tr>
                                                      <% } %>
                                          <tr><td></td><td></td>
                                          <td rowspan ='4'>
                                          <img src ="http://www.ccim.com/services/member/profile/pictures/<%=next_record.getMember_ID()%>.jpg" width="45" height="65">
                                          </td>
                                    </tr>
                                    <tr>
                                                      <td bgcolor=<%=bgcolor%> colspan ='4'></td>
                                    </tr>
                                                <%}%>

                                    <%}%>
                   </table>
               </td>
         </tr>

----------------------------------------------------------------------------------------------------------------------------------

Avatar of gops1
gops1
Flag of United States of America image

Similar post you see here:

https://www.experts-exchange.com/questions/21918855/having-problem-with-table.html

Let me know if what I have suggested is OK
ASKER CERTIFIED SOLUTION
Avatar of pankilmpatel
pankilmpatel

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial