↧
Also I noticed that the wconnect.h you just shipped does not have the #INCLUDE WCONNECT_OVERRIDE.H command
In case of doubt, we recommend reading code inherited from aw.vcx!aw??? where you can find some documentation and code samples. We view this as the best place where documentation can be, as you can access it at any time while coding.
Another hint is in the .wcHTML property description: "cf. this.wcHTMLgen()"
Feel free to suggest how this documentation could better fit your needs
LPARAMETERS toHTML AS awHTMLGen of awHTML.prg, tlInnerHTML && toHTML : reference to foxInCloud HTML generator && tlInnerHTML : if container, render only contained objects * this demonstrate how any VFP object can render its own specific HTML in foxInCloud * this method can be implemented at any class or object level && each aw.vcx "base class" owns cHTML and cHTMLgen() members this.wcHTML = Textmerge([<pclass="red" title="Ce label a généré son propre HTML spécifique / This label generated its own specific HTML" ) && toHTML.cID() returns the standard foxInCloud [id=""] string && toHTML.cID() builds id as: 'formName'-'containerName'-...-'objectName'> </p>]
Could you by any chance post your code ?
this.wcHTML does not replace the generated HTML when I do it. If I put something like:
wcHTML='<input blah blah><some tag><some tag 2>'
Nothing changed in the generattion.
I ended up ding this in wcHTMLgen:
toHTMLgen.cHTMLadd = "My new HTML"
But then what use is the wcHTML property?
I thought I had done this previously, maybe something changed in 1.10 or I forgot how I did it. I want to put my own HTML in a control instead of the FiC generated HTML.
I filled in he property wcHTML, but still the FiC standard HTML generates and not my HTML. What did I miss?