-
1. Re: Is anyone monitoring or answering questions on this forum?
Carl Von Stetten May 23, 2014 10:13 AM (in response to alberto10s)Yes, people are answering questions. Keep in mind that many of the recent questions in this part of the forum have been about CFBuilder 3, which was only released a few weeks ago. So not many people are using it yet and can provide constructive answers to the questions posted.
Do you have a specific question that hasn't been answered?
-Carl V.
-
2. Re: Is anyone monitoring or answering questions on this forum?
alberto10s May 23, 2014 10:17 AM (in response to Carl Von Stetten)Thanks Carl, fair enough. Appreciate the quick response. I pasted the post below.
CFBuilder 3 syntax coloring is not working for nested tags, why did I miss?
This question is Not Answered.(Mark as assumed answered)
Alberto Genty May 17, 2014 3:45 PM
In the example below, the <cfclient> tags are red, but not for the <cfinclude> tag.
<cfclient>
<!--- All cfclient code to creat dynamic HTML and
interface with data access CFC is in the following included file --->
<cfinclude template="index_include.cfm" >
</cfclient>
Similarly, the <html> tags are blue, but not the <head> tags
<html>
<head>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css" ></link>
<script src="js/jquery-2.1.0.min.js" ></script>
<script src="js/app.js"></script>
<script src="js/jquery.mobile-1.4.2.min.js" ></script>
<style >
table th {
text-align:left;
}
</style>
</head>
</html>


