Questions tagged [cfajaxproxy]

Use this tag for questions related to cfajaxproxy, a tag that provides the ability to create a JavaScript proxy "class"

Quoting its GitHb page:

The tag provides the ability to create a JavaScript proxy "class" which can be used to create proxy objects which in turn proxy for a ColdFusion CFC back on the ColdFusion server. This means JavaScript code can call methods on the JavaScript object, which will - in effect - execute functionality on the ColdFusion server.

Note that and are tags that are usually used together with .

11 questions
3
votes
1 answer

coldfusion cfajaxproxy callbackhandler called too many times

I am new to using cfajaxproxy, I am trying to have select a number of check boxes then loop through all of the checked checkboxes and save the results in a database using cfajaxproxy and jQuery. The markup is generated by looping through a query but…
Beamer180
  • 1,501
  • 5
  • 19
  • 25
3
votes
4 answers

Should the length of a URL string be limited to increase security?

I am using ColdFusion 8 and jQuery 1.7.2. I am using CFAJAXPROXY to pass data to a CFC. Doing so creates a JSON array (argument collection) and passes it through the URL. The string can be very long, since quite a bit of data is being passed. The…
Evik James
  • 10,335
  • 18
  • 71
  • 122
2
votes
1 answer

Ajax call to coldfusion component using cfajaxproxy

I´m stuck with the follow code, hope somebody can help or give me some advice: basically what i´m doing is to call a cf function using ajax: when the user write an id in the field "artid" information related to that id will appear in the others…
user2683052
  • 23
  • 1
  • 3
2
votes
1 answer

How to submit one thousand checked check boxes via ajax?

I am using ColdFusion 8 and jQuery 1.7.2. I use a ton of ajax in my sites. Normally, I would use CFAJAXPROXY, but this has a limitation: It puts all values into the URL, which is limited to about 1250 characters. My data would exceed that (1,000…
Evik James
  • 10,335
  • 18
  • 71
  • 122
2
votes
1 answer

jquery cfajaxproxy fullcalendar pass start and end dates

I am using FullCalendar (1.5.2), jQuery (1.8.1), but the older ColdFusion 8. The issue I am having is how to properly pass the start and end dates for the current calendar month to a cfc using proxy. The calendar displays, however, the json results…
vasquezmi
  • 41
  • 2
  • 5
1
vote
1 answer

Coldfusion automatically save data

Instead of the traditional Posting of forms (with a save button) to save data to a database using coldfusion. Is there a sensible way of having information saved as the user exits the field. Is this even good practice?
1
vote
1 answer

Coldfusion: Displaying Updated total count from Database cfajaxproxy

I'm not good in javascript, Ajax & Jquery but I still have to finish one task. I'm trying to show an updated record count at runtime. This will be live report for management, the number should change without refreshing the page. I tried to write a…
IBM
  • 252
  • 1
  • 12
1
vote
1 answer

cfajaxproxy and Ajax to work with verifyclient function

I want to implement verifyclient in some functions in a cfc. I am aware that the follow syntax will works, but I don't know how to implement it within a ajax call. Example:
1
vote
1 answer

Using Onclick on an HREF tag in Coldfusion

I was wondering if someone can tell me what is wrong with this code because it doesn't work and it does not give me any errors either. With this code I am trying to access a component that updates a DB table each time someone press on the…
Geo
  • 3,160
  • 6
  • 41
  • 82
0
votes
0 answers

MIMIC model failed to converge: using lavaan to assess the effect of maternal empowerment on child malnutrition

indicators <- c("stunting", "wasting", "underweight_small") independent_vars<- c("colostrum", "ors", "familyplanning","foodgroups", "visits", "occupation", "respIncome", "resphealthdec", "lhhpurchases", "ownhouse", "wland") control_vars <-…
0
votes
1 answer

How to keep proxy-config.xml out of AjaxProxy app in Websphere

I have deployed ajax proxy app on websphere . I have made my configuration in proxy-config.xml. This working as expected but the problem is I have to keep this configuration file with in EAR file, This block me to use the same EAR on different…