|
Mailing Lists
|
Home /
Groups /
ColdFusion Talk (CF-Talk)
HTML Prob
How can I display text with " in value of input tagShahzad.Butt 04/01/03 10:07 A If the value is coming from a CF Variable, then you could try;Philip Arnold 04/01/03 10:54 A <input type="Text" name="testBox" value="“ this is in quotes ”">Tangorre, Michael 04/01/03 10:12 A How can I display text with " in value of input tagShahzad.Butt 04/01/03 10:13 A How about using " ???Ryan Kime 04/01/03 10:22 A That's fine it works, thanks.Shahzad.Butt 04/01/03 10:44 A Use the function htmlEditFormatKwang Suh 04/01/03 10:58 A ThanksShahzad.Butt 04/01/03 11:03 A How can I display text with " in value of input tag <Input type="text" name="test" value="this is test with " inverted commas"> What I am getting is text between first two inverted commas I mean Result: this is test with but I want complete results Required Result: this is test with " inverted commas I guess there should be something in CF or HTML to get it working? Thanks, Shaz !"JJFF@IP@APOLLO"! If the value is coming from a CF Variable, then you could try; <input type="text" name="test" value="#HTMLeditFormat(form.test)#"> That naturally converts " into " (as well as a few others) ----- Excess quoted text cut - see Original Post for more ----- <input type="Text" name="testBox" value="“ this is in quotes ”"> How can I display text with " in value of input tag <Input type="text" name="test" value="this is test with " inverted commas"> What I am getting is text between first two inverted commas I mean Result: this is test with but I want complete results Required Result: this is test with " inverted commas I guess there should be something in CF or HTML to get it working? Thanks, Shaz !"JJFF@IP@APOLLO"! How can I display text with " in value of input tag <Input type="text" name="test" value="this is test with " inverted commas"> What I am getting is text between first two inverted commas I mean Result: this is test with but I want complete results Required Result: this is test with " inverted commas I guess there should be something in CF or HTML to get it working? Thanks, Shaz !"JJFF@IP@APOLLO"! How about using " ??? How can I display text with " in value of input tag <Input type="text" name="test" value="this is test with " inverted commas"> What I am getting is text between first two inverted commas I mean Result: this is test with but I want complete results Required Result: this is test with " inverted commas I guess there should be something in CF or HTML to get it working? Thanks, Shaz !"JJFF@IP@APOLLO"! That's fine it works, thanks. However I wonder if you help me here as well. Basically what I am doing is Value="#myVar#" And my var is coming from DB with value I am text with " inverted commas. Now if I would be able to make a list with delimiter of " then I can loop and just stick "e; between each item of list. But doing that I need to change delimiter of list from " to , ListChangeDelims(myList,",",""") but it doesn't work. Probably CF doesn't recognise " and ListChangeDelims(myList,",",""") gives error right away. Any help???? Shaz How about using " ??? How can I display text with " in value of input tag <Input type="text" name="test" value="this is test with " inverted commas"> What I am getting is text between first two inverted commas I mean Result: this is test with but I want complete results Required Result: this is test with " inverted commas I guess there should be something in CF or HTML to get it working? Thanks, Shaz !"JJFF@IP@APOLLO"! Use the function htmlEditFormat e.g. <input type="text" value="#htmlEditFormat(myVar)#"> ----- Excess quoted text cut - see Original Post for more ----- Thanks Use the function htmlEditFormat e.g. <input type="text" value="#htmlEditFormat(myVar)#"> ----- Excess quoted text cut - see Original Post for more -----
|
May 20, 2013
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||