bLue
bLue
@cpatters9 Thanks! I have also encountered the same issue, and your solution is really helpful.
Try this: ```javascript var instance = $("#ranklist-table").tableExport({ formats: ['xlsx'], exportButtons: false }); var exportData = instance.getExportData()['ranklist-table']['xlsx']; $("#export-ranklist").click(function () { instance.export2file(exportData.data, exportData.mimeType, exportData.filename, exportData.fileExtension); }); ```
@livemeta Thanks for your exploration, but it only works for Sass, not TypeScript. Forgot to reply. Actually I found the solution a few times after posting the issue. Just add...
Sorry, I am busy too.
Any update?
Same issue. After `toJSON()`, every values should be same as before when accessing, but it not. Here's an example. proto: ```protobuf enum Type { eGoods = 1; eService = 2;...
> `toJSON` is a shorthand of `toObject`: > > https://github.com/protobufjs/protobuf.js/blob/da34f43ccd51ad97017e139f137521782f5ef119/src/message.js#L131-L137 > > https://github.com/protobufjs/protobuf.js/blob/da34f43ccd51ad97017e139f137521782f5ef119/src/message.js#L119-L137 > > but using `util.toJSONOptions`. Unless there is a bug somewhere in this (please provide a reproduction),...
Nice solution. thanks
Hey, you can try `urlcat-fork` package from npm. I am now using this package to fix array format.
Another reason we need this feature: If we send multiple dead letter messages in a batch then they will have the same `ORIGIN_MESSAGE_ID` (see the demo below). this is a...