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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by SBonfiglio

  1. SBonfiglio

    Weird behaviours of Javascript in changing CSS on value

    A very weird things are happening to me. 1. If I change the class of an Input Text field the value of the field is put at 0. So it seems that I have to save the value before changing the class, then I have to restore it. 2. It seems that it is impossible to change the CSS class again back to...
  2. SBonfiglio

    Grouping Table Problem

    I can't understand your problem. Is it only that you can't obtain the precise layout that you show in the output example ? For instance where do you set the variable variables.location ? It seems to me that loc_code can contain only one value (distinct) per record, not a list of values, unless...
  3. SBonfiglio

    JQuery show menu OnMouseMove.

    Hei, Big J! [thumbsup][thumbsup][thumbsup][thumbsup] You saved my life. 5 stars to you boy. THANKS. Sergio
  4. SBonfiglio

    JQuery show menu OnMouseMove.

    Hi Krystian. Thanks for your example, but it is mandatory to hide everything and not to force to click on a kind of MENU controller. I prefer an active/passive functioning like the document.onmousemove management. However thank you for your code. I appreciate it. Sergio
  5. SBonfiglio

    JQuery show menu OnMouseMove.

    Thank you jpadie. Unfortunately it seems not working for me (i'm feeling a sort of idiot...). Could you please post the complete example that works for you ? Thanks in advance. Sergio
  6. SBonfiglio

    JQuery show menu OnMouseMove.

    Hello Folks. I have a customer who hates menus. She would like to see the menu the very few time she needs is, to make the selection and then hide again. The ideal situation should be to display the menu with a quick fade in, then, if the mouse stops moving, after a certain timeout the menu...
  7. SBonfiglio

    JOIN problems

    I have found it. I was gourping with the wrong table. I was grouping on orders instead of employees as I wrote here. This was because by the original query has different tablenames. Thanks however for your help. It helped me however writing and analyzing the query with you. Stay so well.
  8. SBonfiglio

    JOIN problems

    I have forgotten the GROUP BY statement, but it has be done on the ID as the COUNT object, that is the orders table. SELECT employees.E_surname , employees.E_name , COUNT(orders.ID) AS HowManyOrders FROM employees LEFT OUTER JOIN orders ON orders.ID =...
  9. SBonfiglio

    JOIN problems

    MySQL 5.0
  10. SBonfiglio

    JOIN problems

    I did, but it doesn't work. I have a COUNT(*) into my query that when fails (it returns NULL) it also fails the query and the row is rejected. the query ismore olr less like this: select E_name, E_surname, (count(orders.ID)) AS HowManyOrders FROM employees left outer join orders on orders.ID =...
  11. SBonfiglio

    JOIN problems

    Hello to the community. I have a problem with joins. Being a novice in SQL I found joins very useful, so I started to use them everywhere in my application since I discovered that I have a problems with multiple joind - and in simple joins too - that failed. I have found that if I try to joins...
  12. SBonfiglio

    DIV Center function not working

    Well Folks, at the end of the story I was able to make it work using both of your suggestions. I decided to replace the part of the routine that was giving a better result about the window dimensions, the first version that I put in my first post. Now it works fine. This is the working...
  13. SBonfiglio

    DIV Center function not working

    Dan, thanks a lot for your suggestions. I tried them without any result. I decided to post a complete html template with the complete job. The DIV, as you can see, just remains where it is, instead to be re-positioned in the center of the page. I really can't understand why the DIV isn't...
  14. SBonfiglio

    DIV Center function not working

    Folks, I can't understand why this function refuses to do it's kob. It is supposed to center a DIV in the window. function CenterDiv(n) { var myWidth = 0, myHeight = 0; if( typeof( window.innerWidth ) == 'number' ) { //Non-IE myWidth = window.innerWidth; myHeight = window.innerHeight; }...
  15. SBonfiglio

    Quirks and DOCTYPE modes

    Sorry Traingamer, but it seems not working as well. Said this I will try to start again fron scratch to guess which is the parameter that fails, adding one by one. Thanks you all Folks! Sergio

Part and Inventory Search

Back
Top