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: Tiono
  • Order by date
  1. Tiono

    error when call deleteContents() method of range object

    still error simonchristieis range.selectNodeContents(range) will raise same error message "object doesn't support this property or method" :-(
  2. Tiono

    error when call deleteContents() method of range object

    anybody know why if I call deleteContents() in below code, it will have error msg "object doesn't support this property or method" ??? function do_header() { DHTMLSafe.focus(); var txt = "" + DHTMLSafe.DOM.selection.createRange().htmlText + ""; var range =...
  3. Tiono

    Need help with textRange.pasteHTML

    oooooo i know what is googling, u mean search at google, right? :-)
  4. Tiono

    Need help with textRange.pasteHTML

    what is googling??? could you explain it??
  5. Tiono

    Need help with textRange.pasteHTML

    Nobody could help me :( ?? i'm using selection.createRange() then i get the range.htmlText and add the tag to it. then I use createRange().pasteHTML() method to paste the new tag. but that will create duplicate html tag to the selection. sigh....
  6. Tiono

    Need help with textRange.pasteHTML

    Hi, i have a problem to modify html text. i need to insert a tag in a textarea. if user has select some text, then the tag must place at start of the 1st html tag before the text selected and the must place in the last HTML tag. e.g : if user select "this is a trial text" which HTML source...
  7. Tiono

    HELPPP. Add item to 2 dimension array with #ArrayAppend#

    <cfset arrMonthly = arrayNew(2)> <cfset arrWeekly = arrayNew(2)> <cfloop query="qAbsen"> <cfif qAbsen.absentPeriodType eq "W"> #ArrayAppend(arrWeekly, week(absentDate))# <cfif qabsen.absentControl eq "N"> #ArrayAppend(arrWeekly, "a")# <cfelseif qabsen.absentControl eq "v" and...
  8. Tiono

    BACK Button

    I think more simpler way is to submit your form to another file and after finish processing data then take user to other file using cflocation. I usually do that. No need to worry about user refresh or press back button :)
  9. Tiono

    Multibyte character like chinese word in flash

    Thanx for your post oldnewbie. It's a great link. regards, Tiono
  10. Tiono

    Multibyte character like chinese word in flash

    Anyone know how to display chinese character in flash? I've set my windows default language to traditional chinese, I can display n type chinese character in microsoft word, notepad, but I can't do that in Flash. Anyone can help?????? Thanx a lot Tiono
  11. Tiono

    Duplicate Entry in db populated drop down menu?

    U can try to put select option into an array variable, then populate the select box using that array. I've typed the sample code below. &lt;cfset arrItem = arrayNew(1)&gt; &lt;cfset arrItem[1] = &quot;Car&quot;&gt; . . . &lt;cfset arrItem[8] = &quot;Sled&quot;&gt; &lt;select...

Part and Inventory Search

Back
Top