Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Hi ,
I have a query result like below,
Column1
Row1
Row2
Row3
I have a Datashape with 3 fields - Field1, Field2 , Field3.
How to assign the Row1 to Field1 ?
Thanks in advance for your answer.
Solved! Go to Solution.
Hi,
Let me assume you are storing query data to variable "info" and your datashape "datashape"
Create a new Object and add values to fields.
var newEntry = new Object();
newEntry.Field1= info.rows[0].Column1
newEntry.Field2= info.rows[1].Column1
newEntry.Field3= info.rows[2].Column1
datashape.AddRow(newEntry); // Add Object to DataShape
Hi,
Let me assume you are storing query data to variable "info" and your datashape "datashape"
Create a new Object and add values to fields.
var newEntry = new Object();
newEntry.Field1= info.rows[0].Column1
newEntry.Field2= info.rows[1].Column1
newEntry.Field3= info.rows[2].Column1
datashape.AddRow(newEntry); // Add Object to DataShape