Re: JQuery GRID JSON data
Your CFC should return like this: { "page":"1", "total":1, "records":"10", "rows":[ { "tax":10.00, "invid":1, "invdate":"July, 24 2013 00:00:00",...
View ArticleRe: JQuery GRID JSON data
Thanks for the mesage and help,so my cfc does not return right JSON format,I added header as you recommend, but still missing page, total, row and rows, <cfcontent type="text/json;charset=utf-8"...
View ArticleRe: ColdFusion data source for jqGrid
Just a note: the MIME type for JSON is application/json, not text/json. I agree the latter would make more sense, but there you go. -- Adam
View ArticleRe: JQuery GRID JSON data
The mime header is incorrect. Please refer to the one that Adam responded.
View ArticleRe: What SMTP servers are compatible with CF8 and 9?
CF is not compatible with newer versions of Exchange for the purposes of <cfexchange> functionality, but it's fine as far as SMTP connectivity goes. SMTP is an independent standard, so does not...
View ArticleRe: JQuery GRID JSON data
Thanks a million again for helping,It seems that my cfc file does not return total, page, records, and rows, the grid does not have pager.I entered 12 records, but it shows on one page only, there is...
View ArticleRe: JQuery GRID JSON data
Did you look at the example in the jqGrid Demos page? The answer is there.Open http://trirand.com/blog/jqgrid/jqgrid.htmlOpen Chrome Developer ToolsSee what is the URL when you click the next page...
View ArticleRe: JQuery GRID JSON data
Thanks agian for helping,My cfc returns Page, Total and rows now like following, {"ROWS":[[16,"July, 02 2013 00:00:00",10.00,20.00,30.00,"test"],[17,"July, 02 2013...
View ArticleRe: JQuery GRID JSON data
Thanks again for helping,if I undestand correctly, I need add rows, page and total, sord and sidx informaiton to cfc function.If this is the case, for ColdFusion, is it possible to get this value...
View ArticleCannot set property 'readyState' of undefined cfwebsocketCore.js:54
I am trying to test the cfwebockets but i keep getting this error when i go to the webpage where i have the sample code. i have downloaded sample code from the adobe developers and it still gives me...
View ArticleRe: JQuery GRID JSON data
Thanks a million for helping,I make it works now,I think that I missing resource files for the buttons, the buttons are there, I just do not see the buttons which hide on the black area,I think that...
View ArticleRe: CF 10 Datasource to Unidata Database will not connect
Hello, Thank you for the update. Regards,Anit Kumar
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Where is the top part, <cfquery.... ???? That's what the error message pointed to.I'm pretty sure it's a simple syntax error, such as mismatch cfquery attributes.
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Here it is any help you could give me would be great! Thanks May GOD Bless you and yoursSam Samples MBA., B.Sci., MCSE
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
I think I see the problem - there's a closing </cfquery> tag but no opening <cfquery> !
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
would you look at this and tell me if there is anything I am missing? home store about contact structEVENTNAME Re: I can't find the error in my Application CFC however I am getting...
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Should be: <cfquery name="Specify_The_Name_of_This_Query>SELECT size, amount, idFROM productsize WHERE productid=#Session.ProductId#ORDER BY id ASC</cfquery> In here...
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
what line do I need to add a closing tag?
View Article