J. Matthew Pryor

Results 8 comments of J. Matthew Pryor

What about the idea of support dot notation in the schema? ``` CsvSchema schema = CsvSchema.builder() .addColumn("person.firstName") .addColumn("person.firstName") .addColumn("person.age", CsvSchema.ColumnType.NUMBER) .build(); ``` Could that work for writing CSV? Any code...

One simple, but manual solution might be to allow dot notation in the Schema Builder ``` CsvSchema schema = CsvSchema.builder() .addColumn("person.firstName") .addColumn("person.firstName") .addColumn("person.age", CsvSchema.ColumnType.NUMBER) .build(); ``` That would allow for...

@semireg did you ever work out how to solve this? > On another note... is there any way to push data from server to client when [onSelectionChange](https://developers.google.com/apps-script/guides/triggers) is called?

Hi @enuchi - can you make any suggestions about how to cause updates to a sidebar UI when the user changes selection and an `onSelectionChange()` server side SimpleTrigger is called?

Thanks @enuchi - how would you suggest implementing the polling on the client side?

I've got polling working fine, and it calls back a serverFunction to get the active sheet & row, but I can't see how to use the PropertiesService from the client...

thanks FWIW this node package worked a treat for the polling/interval https://www.npmjs.com/package/@use-it/interval