For example, the javadoc for DynamicForm says
I don't understand how to relate this javascript segment to the class.
How do I feed this javascript segment into an instance of DynamicForm.
Not just DynamicForm. For example, ValuesManager, etc, where their javadoc provides examples of usage in terms of isc javascript calls. So - how should I associate an isc javascript call with a Smart GWT class?
Another example is the javadoc of setDataPath of Canvas gives a lot of isc javascript calls. How do I feed those isc calls in as arguments for setDataPath? Or should the question be, how do I get setDataPath to run those isc calls in the javadoc examples?
Code:
To create a DynamicForm, set fields to an Array of Objects describing the FormItems you want to use. For example: isc.DynamicForm.create({ fields:[ {name:"userName", type:"text"}, // creates a TextItem {name:"usState", type:"select"} // creates a SelectItem ] })
How do I feed this javascript segment into an instance of DynamicForm.
Not just DynamicForm. For example, ValuesManager, etc, where their javadoc provides examples of usage in terms of isc javascript calls. So - how should I associate an isc javascript call with a Smart GWT class?
Another example is the javadoc of setDataPath of Canvas gives a lot of isc javascript calls. How do I feed those isc calls in as arguments for setDataPath? Or should the question be, how do I get setDataPath to run those isc calls in the javadoc examples?
Comment