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 Mike Lewis 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: *

  • Users: lonelydragon
  • Order by date
  1. lonelydragon

    ifrmae form

    thank you anyway;
  2. lonelydragon

    ifrmae form

    now i Enclose all attributes with quotes. but nothing happens, and alo ,i just found if i add aler("something") in the JS code before the submit(), it works, but if i remove the alert, nothing happen again.
  3. lonelydragon

    ifrmae form

    and also , the JS code is not inline, it is External JavaScript
  4. lonelydragon

    ifrmae form

    actually, i do have that in my code, when i typied them here, i did. thanks
  5. lonelydragon

    ifrmae form

    the code in the parent: <table> <tr><td><input type=radio id=addC name=add_opt value=group onclick=\"csvShow('group');\" > Use saved student group(s)</td></tr> <tr><td> <iframe name=groupFile id=groupFile src='csvfile.php' class='' allowtransparency=true framespacing=0 frameborder=no border=0...
  6. lonelydragon

    ifrmae form

    in the iframe, the code is: <form name=groupForm id=groupForm method=POST> <input type=hidden name=cPntr id=cPntr > <input type=hidden name=groupName id=groupName value=''> <input type=hidden id=selectedNum name=selectedNum value=''> <input type=hidden name=updateGroup id=updateGroup value=''>...
  7. lonelydragon

    ifrmae form

    tried the following without any luck: top.frames['groupFile'].document.groupForm.submit(); //window.frames['groupFile'].document.groupForm.submit(); // window.frames['groupFile'].document.getElementById('groupForm').submit(); //window.frames['groupFile'].document.forms['groupForm'].submit()...
  8. lonelydragon

    ifrmae form

    no submit, i use javascript to submit
  9. lonelydragon

    ifrmae form

    yes, the iframe has name and id "groupFile" ; and the form within the iframe have the name and id "groupForm
  10. lonelydragon

    ifrmae form

    no, it does not work either
  11. lonelydragon

    ifrmae form

    hello, i am tring to submit a iframe form from JS in the parent. but it works in IE, and not in fireforx. anyoen can help? the code i use isone of the following: window.frames['groupFile'].document.groupForm.submit(); //window.frames['groupFile'].document.getElementById('groupForm').submit();
  12. lonelydragon

    two table combine

    hello, please help. i have two(maybe more ) tables. i a now trying to create a virtual table basing on the existing tables. the two tables have no relationship and both have the same number of records(e.g both 5) in the virtual table, i want i have all the fileds of both table and list all the...
  13. lonelydragon

    insert id

    how is this: the max id : last insert id; the first id : max id - afexted row; list of ids: between "the first id" and "the max id
  14. lonelydragon

    insert id

    the point is the inserts are done with just one query. so how to collect the ids? thanks
  15. lonelydragon

    insert id

    mysql
  16. lonelydragon

    insert id

    i am insert some record using "insert select", and in some case, there are several record are inserted once, i am wondering is it possible to get the all the insert id without having to write down sother queries "select ....."; thank you in advance.
  17. lonelydragon

    submit iframe

    i made some change and it works right now. the change i made is: originally, the form was created in a JS from the parent, and in the frame only has: <div id=ss></div> and now i change frame to :<form name='groupForm'><div id=ss></div></form> it works now...
  18. lonelydragon

    submit iframe

    i have tried the following: //window.frames['groupFile'].document.getElementById('groupForm').submit(); //window.frames['groupFile'].document.forms['groupForm'].submit(); //window.frames['groupFile'].document.forms[0].submit(); //window.frames.groupFile.document.forms['groupForm'].submit()...
  19. lonelydragon

    submit iframe

    anyone knows how to submit an iframe form via/from the parent? thank you. waiting online.
  20. lonelydragon

    loop with checkbox

    hello, help appreciated. in my page, i have more 100 checkbox. and when i select some of the checkbox, i loop with javascript and hide the one unselected. it seems quite slow. i am wondering any one know how to make the loop work faster? thank you in million dragon

Part and Inventory Search

Back
Top