TonyGermaneri / canvas-datagrid

Canvas based data grid web component. Capable of displaying millions of contiguous hierarchical rows and columns without paging or loading, on a single canvas element.
BSD 3-Clause "New" or "Revised" License
1.45k stars 188 forks source link

getColumnWidth is undefined in latest build #448

Open ODavis62 opened 2 years ago

ODavis62 commented 2 years ago

when using

var gd = document.getElementById(id); var wd = gd.getColumnWidth <-- this is always undefined

getColumnWidth is always undefined and most other methods work as expected.

It seems that that method may not be set to public.

Untitled

ODavis62 commented 2 years ago

This line "self.intf.getColumnWidth = self.getColumnWidth;" is missing from the intf.js code and needs to be added in the next public build in order for getColumnWidth to work.

Thanks, Orlando