Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. snitin78

    Variables visible in console.log(VAR), but not in accessible script.

    Can you provide your Javascript code? Without that it will be difficult to help. Nitin
  2. snitin78

    How do I anchor within a hidden div in a javascript toggle?

    It sure does :-). Here is one way of doing it - might not be the most elegant way, but would work. On your first page, have the link as follows (just an example page): <html> <head> </head> <body> <a href="test2.html?anchor=dsp" target="_blank">Click here to see dsp</a> <a...
  3. snitin78

    How do I anchor within a hidden div in a javascript toggle?

    Just for clarity - Do you want to have a page with links to land on class (listing) page with a particular div already opened? Or do you want to have links to another page in the class page? Nitin
  4. snitin78

    CSS Menu... with images, NO WRAP?

    Avoid using pixel widths in your styles. Fixed pixel widths may or may not work depending on the screen resolution, browser/client width etc. It's better to use %age widths. That way, the browser can readjust the content based on the available client width. For example, try this in your styles...
  5. snitin78

    Left Nav Menu Problem

    If it's possible take a look at some Javascript framework like EXT-JS (http://www.sencha.com/products/js/). Such kind of expandable/collapsible things are child's play using frameworks like these. My suggestion would be to integrate such a framework in your code rather than re-inventing the...
  6. snitin78

    mail spool re-spooling

    If you have not already succeeded, then take a look at SpoolMail (http://spoolmail.riaforge.org/). This is a very handy plug-in that you can add to all your servers and at bulk move your emails to spool and/or re-send them. I do not know of any better, unfortunately, but hope that helps. Nitin
  7. snitin78

    Error reported by IE 8

    Move your document.addressForm.submit() statement into the showAddress() function. Like this: function showAddress(address) { if (geocoder) { geocoder.getLatLng( address, function(point) { if (!point) { alert(address + " not found")...
  8. snitin78

    Truncate text

    Here is an example: declare @tempCourses table (course_name varchar(55)) insert into @tempCourses values ('Physic One - SS retake - Oct') insert into @tempCourses values ('Physic One - SS retake - Nov') insert into @tempCourses values ('Physic One - SS retake - Dec') insert into @tempCourses...
  9. snitin78

    Multiple records one column separated by comma (,)

    What kind of database are you using? Microsoft, Oracle..?? There might be easy solutions depending on the database you are using. Nitin
  10. snitin78

    How to correct the update statement

    You should provide your JSP code for us to be able to help you. Nitin
  11. snitin78

    Deploying/running an application under a domain

    Hi everyone, I need some advice on the following scenario. On one of our machines, we have Apache listening to requests on port 80 and then forwarding them to JBoss for some of our web applications. As of now the redirects are performed using the IP address of the machine, something like below...
  12. snitin78

    java inconsistance run experience

    I would also suggest you to take a look at Java Paths and Java Packages Nitin
  13. snitin78

    Find Max number in a table

    Take a look here: http://stackoverflow.com/questions/71022/sql-max-of-multiple-columns Nitin
  14. snitin78

    classpath issue

    Sorry, did not notice this earlier...try putting a semicolon after each of your classpath entries java -verbose -classpath D:\D_ProgramFiles\JavaHelp\MyStuff; D:\D_ProgramFiles\JavaHelp\jh2_0\javahelp\lib\jhall.jar; JavaHelpTest > runlog.txt 2>&1 Nitin
  15. snitin78

    classpath issue

    I believe that your java command should be like this (classpath before the class): java -classpath D:\D_ProgramFiles\JavaHelp\jh2.0\javahelp\lib\jhall.jar JavaHelpTest Alternatively you can remove the classpath option from the java command and add this in your batch file before the JAVA...
  16. snitin78

    onblur event, focus last focus.

    Pass the reference of the textbox that you are validating to the formValidation() function. With this reference, you can shift the focus to textbox that you faced the error with. Here is an example: <html> <head> <script type="text\javascript"> function...
  17. snitin78

    Swapping content of 2 vars

    I think you should probably have a look at the java.util.Collections class, specifically the sort() and swap() methods provided by this class. Nitin
  18. snitin78

    Need help with loop, variable and insert

    See if this meets your purpose: declare @sourcetable table (frrom int) declare @desttable table (frrom int, too int) insert into @sourcetable values (120015) insert into @sourcetable values (120020) insert into @sourcetable values (180040) insert into @sourcetable values (200030) declare...
  19. snitin78

    Union vs. Union All

    RiverGuy, I agree with you on that this is indeed a pretty busy and somewhat poorly designed system...but different behavior of the same query on different instances of the same DB is still a bit puzzling. While using NOLOCK is a directive from our DBA, I provided the index hint(s) with the...
  20. snitin78

    Union vs. Union All

    Hi Guys, I am still stuck, perplexed and (really) frustrated :-( So I was hoping if I can get some more pointers. What is happening is that when I change UNION to UNION ALL (as suggested above) the query above starts working for a certain set of parameters, basically for users of a company...

Part and Inventory Search

Back
Top