[progress Communities] [progress Openedge Abl] Forum Post: Re: Manually Created Grid Has...

  • Thread starter Thread starter egarcia
  • Start date Start date
Status
Not open for further replies.
E

egarcia

Guest
Hello Louis, Are you using the columnMenu property as a configuration option for the grid? This option is not used in the generated options for the grid. You can see the options for the grid in the controller.js. Just in case, here is what I used to create the grid: 1) Grid element In topSection.html with reference to options: 2) Definition of options in constructor method in controller.public.js: this.gridOptions = { filterable: true, sortable: true, pageable: true, // columnMenu: true, // groupable: true, // reorderable: true, // resizable: true, dataSource: { data: [ {CustNum: 1, Name: "TEST#1"}, {CustNum: 2, Name: "TEST#2"} ] } }; I hope this helps, Edsel P.S.: If you actually prefer the look of using the columnMenu, you could programmatically set in the controller.public.js.

Continue reading...
 
Status
Not open for further replies.
Back
Top