From: SilentBob'secretfusion on 4 Apr 2007 11:08 Hi, I cannot get this to work. Any ideas? ___________________________________________________________ <cfquery name="obtain" datasource="esp"> SELECT #form.querystructure# FROM tbl_pav2 </cfquery> <cfform> <cfgrid format="xml" query="obtain" name="obtain" width="100%" height="700" > </cfgrid> </cfform>
From: SilentBob'secretfusion on 4 Apr 2007 11:12 This is what the above code is returning. The query definitely has data in it, when I try format="flash", it works fine. _________________________________________________________ <script type="text/javascript" src="/CFIDE/scripts/cfform.js"></script> <script type="text/javascript" src="/CFIDE/scripts/masks.js"></script> <script type="text/javascript"> <!-- function _CF_checkCFForm_1(_CF_this) { //reset on submit _CF_error_exists = false; _CF_error_messages = new Array(); _CF_error_fields = new Object(); _CF_FirstErrorField = null; //display error messages and return success if( _CF_error_exists ) { if( _CF_error_messages.length > 0 ) { // show alert() message _CF_onErrorAlert(_CF_error_messages); // set focus to first form error, if the field supports js focus(). if( _CF_this[_CF_FirstErrorField].type == "text" ) { _CF_this[_CF_FirstErrorField].focus(); } } return false; }else { return true; } } //--> </script> <form name="CFForm_1" action="/reports/rpt_PAV_select_p2.cfm" method="post" onsubmit="return _CF_checkCFForm_1(this)"> <div><input type="hidden" name="__CFGRID__CFForm_1__obtain" value="" /></div> </form>
From: insuractive on 4 Apr 2007 17:21 What version of CF are you using? I can't find a reference to <cfgrid format="xml"> in the 6.1 documentation on my machine, but its present in the CFMX 7 documentation.
From: SilentBob'secretfusion on 5 Apr 2007 09:00 Running 7 with the lastest update. I googled this and can find nothing about this format for this tag. Apparently, it doesn't work.
|
Pages: 1 Prev: CFChart - not displaying after 7.02 Updater Next: Dynamic List/Menu Customization |