cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Horizontal and Vertical columns in same iGrid

Former Member
0 Likes
168

Hi,

Is there any way to dynamically name columns and rows in same iGrid if a query is being used to populate the iGrid?

I want Test1, Test2 and Test3 as Column names and Check1, Check2 and Check3 as Row names which i want to pass through SQL query.

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

agentry_src
Active Contributor
0 Likes

getGridObject().setColumnHeading(int, String)

getGridObject().setColumnHeadings(String) or in your case getGridObject().setColumnHeadings("Test1,Test2,Test3")

getGridObject().setRowHeadings(String)

Use in the webpage javascript. If you have hidden properties to receive localization tag values, you can use these scripts to localize the grid column and row headings.

For examples, download the Batch Manufacturing templates and look at the Production Report and Production Confirmation web pages (probably others as well in the same project).

Good luck,

Mike

Edited by: Michael Appleby on Feb 17, 2011 2:46 PM