Question : CFAJAXIMPORT doesn't work - "Use CFAJAXIMPORT to import them on your main page." error message

Hello,

We're creating a dynamic application where the layout and fields are being generated by the database.
The application contains autosuggests and datefields. I've added the  <CFAJAXIMPORT TAGS="cflayout-tab,cfform"> to the main page but I keep getting the following error: "error:widget: Imports for tag CFINPUT-AUTOSUGGEST are missing. Use CFAJAXIMPORT to import them on your main page."

I've attached the code. Is there a reason why the CFAJAXIMPORT  tag is not being recognized by the code?

Thanks!
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
The code for the main page is:

<CFAJAXIMPORT TAGS="cflayout-tab,cfform">
					<cflayout tabheight="500" type="tab">
					<cfloop query="gstab">
					<cflayoutarea title=#gstab.sectionname# source="DYN_attributes.cfm?templatetype_id=#gstab.templatetype_id#&pagenumber=#gstab.pagenumber#" />					
					</cfloop>	
					</cflayout>

and this is the sample code where the attributes are being generated:


<table cols="3">



<!--- 	Lopping through data set from above and outputing the tags on this page	--->



<tr >
	<th >
<cfform>    
<cfoutput >
<cfloop  query="ss">

		<cfif #ss.columnindex# EQ '1'>
        
    <label>#ss.attribute#</label> 
    
    <cfif #ss.CFObjectType# EQ 'cfselect'>
    <cfselect name='#ss.attrfieldname#' query="dd" value="lovid" display="lovvalue"/> </div>
    </cfif>
    <cfif #ss.CFObjectType# EQ 'cfinput'>
    <cfinput type='#ss.CFInputType#' name='#ss.attrfieldname#'/> </div>
    </cfif>
    
    </cfif>
	
</cfloop>	
</cfoutput>	
	</th>
	<th >
<cfoutput >
<cfloop  query="ss">
	<cfif #ss.columnindex# EQ '2'>
    <label>#ss.attribute#</label> <cfinput type='text' name='#ss.attrfieldname#'/>  </div>
    </cfif>
</cfloop>
</cfoutput>
	</th>
	<th>
<cfoutput >
<cfloop  query="ss">
	<cfif #ss.columnindex# EQ '3'>
    <label>#ss.attribute#</label>
    <cfif #ss.attribute# EQ 'SOF Exemption number'>
    <cfselect name="#ss.attrfieldname#" ></cfselect> <div>
    <cfelseif  #ss.attribute# EQ 'Special pricing Start Date' OR  #ss.attribute# EQ 'Special pricing End Date' OR #ss.attribute# EQ 'Order Date' OR #ss.attribute# EQ 'Ship Date'>
    <cfinput name="#ss.attrfieldname#" type="datefield"  /> <div>
    <cfelse>
    <cfinput type='text' name='#ss.attrfieldname#'/>
    </cfif>
    <div>
    </cfif>
</cfloop>	
</cfoutput>
</cfform>	
	</th>
</tr>
</table>

Answer : CFAJAXIMPORT doesn't work - "Use CFAJAXIMPORT to import them on your main page." error message

hi bakies,

the compatiblity matrix is available here

https://support.ca.com/irj/portal/anonymous/phpdocs?filePath=0/4536/111/4536_111_cdl.html

the last device update for ARCSERVE 11.1 was way back in 2006..which essentially means that your backup solution is near to 4 years without any patches. The support for ARCserve 11.1 dropped almost 2 yrs back.

Having said that, buying the current version of arcserve would not cost you the same as it would cost for a new tape library what ever be the vendor.

A simple search on the http://support.ca.com for CA ARCserve Backup Release 11.1 certified device list will give you the link. for you to be able to identify what drives are support for what version of tape library, click on the "certified tape library manufacturers" link which will get you to the list of vendors and then select the vendor. This will give the list of tape libraries that are provided by the vendor and what is the support configuration.

Please remember that the list is what is tested by CA and as provided by the vendor. The vendor might have changed the name of the library or the same may no longer be available.

Having said that LTO4 without the WORM media is support on 11.1

regards
Bhanu


Random Solutions  
 
programming4us programming4us