Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #3K
~9K People Reached
Member Avatar for joshua_8

I neither test your code nor guessing what you want to do with the page... But I think if you want to add event handler for `#checkbox`, you have to add attribute `id="checkbox"` in `<input>` tag One more thing, perhaps you forgot to add `}` to the end of script

Member Avatar for mattster
0
232
Member Avatar for Tu Dinh

Hi Everyone, I know this such Exception is not strange while doing J2EE, but I cant figure out how my app going wrong at this step. My Code is quite long, so I will post only what I think is relevant. For the full source code, please go to: http://code.google.com/p/eagleit/ …

0
299
Member Avatar for sanzteoh

Hi sanzteoh, Not sure if this help but Construction website usually have the style like what you expected. Try taking a look on these: http://www.novastardesign.com/Construction-Websites.htm

Member Avatar for Tu Dinh
0
208
Member Avatar for mmartel25
Member Avatar for Tu Dinh
0
386
Member Avatar for Tu Dinh

Hi everyone, I'm having trouble that always failed to deploy the Project: **This is Deployment Descriptor (web.xml):** <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <display-name>Eagle</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/Beans.xml</param-value> </context-param> <servlet> <servlet-name>Processor</servlet-name> <servlet-class>EITServletPackage.EITProcessorServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>Processor</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <filter> <display-name>EITIssueProcessFilter</display-name> <filter-name>EITIssueProcessFilter</filter-name> …

0
273
Member Avatar for theGrinch

If you still don't understand @|-|x explanation. Just remember that Javascript is executed within Browser, Java code is executed from Server. I believe in your case, you have to send a request from Browser to Server, **which means using Javascript to send request to Server**

Member Avatar for Tu Dinh
0
4K
Member Avatar for Tu Dinh

Hi every body, I tried to search for my own problem, I would think this must be popular issue but unfortunately I found no solution in Google. I tried to use `(boolean) session.getAttribute("IsValidUser")` to get the attribute of Session, but that caused error: org.apache.jasper.JasperException: PWC6033: Error in Javac compilation for …

Member Avatar for Tu Dinh
0
473
Member Avatar for Tu Dinh

I have some problem with my HTML code but I cannot figure out why, hope you guys can help me. My website here http://caycanh.url.ph/ although **displayed fine**, I saw some problem when I use Firebug to detect the code. This is how it displayed in Firebug dock: <html lang="en-US"> <head> …

Member Avatar for Tu Dinh
0
232
Member Avatar for StephenopolousINC

Although your purposes made me think of an `interface` rather than a `class` for `Lootable`. I still try to help you in your own codes. I also think that there is something does not make sense when you define: public Trunk(String newContents) { this.contents = "gold coin, ruby, crown"; } …

Member Avatar for StephenopolousINC
0
926
Member Avatar for Tu Dinh

Please take a look in my code as below: Vector<Vector<String>> AllSubjects = new Vector<>() ; // PROBLEM IS HERE if ((AllSubjects = EMSSubjectDAO.SelectAllSubjectsByCourse(this.ActiveCourse.getCourseID())) != null) { SubjectTableModel = new DefaultTableModel(AllSubjects, SubjectTableHeader); SubjectTable.setModel(SubjectTableModel); //this.SubjectTable = new JTable(AllSubjects, SubjectTableHeader) ; } On the `// PROBLEM IS HERE` line, if I init `Vector<Vector<String>> …

Member Avatar for JamesCherrill
0
269
Member Avatar for Benjamin_4

I wonder if you still need help on this? Anyway, I will tell you some steps I have used to manipulate JTree Every node in `JTree` is a `DefaultMutableTreeNode` object. Use `DefaultMutableTreeNode.add(Object userObject)` function to add a node under a node hierachycally . To get `Object` under the `DefaultMutableTreeNode`, call …

Member Avatar for JamesCherrill
-1
1K
Member Avatar for Tu Dinh

First of all, I'm a newbie to this forum, so sorry if i'm posting the thread to incorrect place. I ve been trying to search for the usage of function **wpsc_category_image()** (WP e-commerce wordpress plug-in), there were some results but unfortunately I still cannot achieve what I expected. I want …

Member Avatar for diafol
0
167