Re: cfmail utf-8
I use the following code then it works, <cfmailpart type="text" charset="utf-8"> thanks for helping and information, Iccsi,
View ArticleRe: DeserializeJSON - is there a limit on the size of the JSON data that can...
Is it possible that the POST size exceeds what is set in the "Maximum size of post data" setting in CFAdmin (not likely as I think it defaults to 20MB or something like that)? Is the JSON being...
View ArticleRe: DeserializeJSON - is there a limit on the size of the JSON data that can...
Thanks Carl. The JSON is being submitted in its entirety, confirmed by Fiddler. And it's actually being successfully saved to a SQL Server nvarchar(MAX) field too. I can validate that saved JSON. I'm...
View ArticleRe: DeserializeJSON - is there a limit on the size of the JSON data that can...
Glad you got that sorted. CLOB issues eventually bite most of us at some point.-Carl V.
View ArticleCKEditor? Spell Check? CF10
Greetings, Does the CF10 includes the CKEditor? Also does the same version includes a licensed version of the spell check? Thank you.
View ArticleHow do I convert a hex date?
When outputting meta data from SharePoint Foundation 2010 using cfsharepoint I am noticing datetimes are being converted to the following format: 0x01cf2d81|0x71c80a00 How do I convert this to a...
View ArticleRe: CKEditor? Spell Check? CF10
CF10 includes the old FCKeditor, but you can easily upgrade it to CKeditor. See this post, it applies to CF10 as well: http://ckeditor.com/forums/CKEditor-3.x/CKEditor-3.x-and-ColdFusion-9
View Articlecoldfusion.window.create background-color
How do I over-ride the gray screen color in a cfwindow that is created by coldfusion.window.create?The following JS does not work for IE11 on Windows 8.1: varwConfig =new Object(); wConfig.bodystyle...
View ArticleRe: coldfusion.window.create background-color
Have you tried using your browser's developer tools to examine the CSS properties of the background being drawn by ColdFusion.Window? If you can find the CSS property that contains the grey background...
View ArticleRe: DeserializeJSON - is there a limit on the size of the JSON data that can...
@Redherring917What a rare finding: a practical application of one of the esoteric settings. Please kindly mark your response as the correct answer. It will surely help someone else in future. @Carl Von...
View ArticleRe: Error file in gets executed multiple times
Could we see the code of the tag? In any case, does it help when you place <cfabort> at the end of the error page?
View ArticleRe: How do I convert a hex date?
<!--- Assumption: 0x01cf2f8e|0x6e559e00 stands for the Hex number 1cf2f8e6e559e00. That is the number of ticks. ---><!--- Conversion of the number of ticks, 1cf2f8e6e559e00, from Hex to Base...
View ArticleRe: How do I convert a hex date?
BKBK wrote: Sidenote: I attempted to use the function inputBaseN("1cf2f8e6e559e00",16) to convert from Hex to base 10, but it gave the wrong result! I will now report this as a bug. If you wish to vote...
View ArticleRe: How do I get a button to show in a list only when a survey is filled?
I have a left outer join that is joining two tables. the mobile table is the default table that gets sent out daily. If the default table is edited, it is saved to the edited table where it will be...
View ArticleRe: Does cf10 change the way deserializejson handles null?
Resurrecting a dead thread, but I thought it better than creating a new one. Shouldn't this behaviour be considered a bug in CF10.Deserialize a JSON structure that has null valuesIf I perform the...
View ArticleHow do I use OUTER JOIN to email different message than the default
I have a devotional that goes out daily from a MOBILE table containing:mob_idcalendardatetitlescripturebody The same devotional goes out to 3 different churches.I have a second TABLE called EDITED that...
View ArticleRe: Disappearance of my contactus.cfm page?
Thank you so much for answering me, I'm not sure which of the two options it could be. I shall endeavour to discover. I made the site at a charity where I learnt coding but the contactus.cfm page went...
View ArticleRe: Does cf10 change the way deserializejson handles null?
@Nighteyez07 This has nothing to do with serialization or with structures. Rightly or wrongly, it all has to do with the behaviour of the isNull function. IsNull(x) returns True if x is null or...
View ArticleRe: Does cf10 change the way deserializejson handles null?
I find it disappointing that the CF team has somehow deemed that undefined is equal to null. That goes against every basic programming principle I've ever seen.
View Article