dsp85103

Results 5 comments of dsp85103

here is my create row and cell example code ` Row row = baseTable.createRow(10.f); Cell cell; cell = row.createCell(contentColWidth.get("name1"), df.format(totalModel.getName1()), HorizontalAlignment.CENTER, VerticalAlignment.MIDDLE); cell.setFont(font); cell.setFontSize(fontSize); DecimalFormat df = new DecimalFormat(",###"); cell...

You need to create data channel with same label name on the other side. It's work for me.

Im also seeing the same thing ..... The Native::Conductor crash on delete ... @EbramTawfik did you end up finding a fix ?

@EbramTawfik thank you for ur reply. I using staging branch. I try WebrtcNative's dispose method (it call DeleteConductor) in Webrtc.Net.Demo, it work. But it not working in my case. It...

This is my code in my case, I use reqparse from flask_restplus parser.py ``` import werkzeug from flask_restplus import reqparse image_upload = reqparse.RequestParser() image_upload.add_argument('propic', type=werkzeug.datastructures.FileStorage, location='files', required=True, help='Image file cannot...