Dennis Dudek
Dennis Dudek
you are not allowed to change Accept-Encoding in fetch api sorry didnt remove it from my code on top. changing headers for accept-encoding does not work. even if you drop...
na its not about deflate @Jarred-Sumner its gzip the server sends
still missing websocket server support
Any news... Whats needed to get this done - Funding needed?
Any progress here? Really need server side processing like query datatables.
I have huge database which needs server processing. Extending the class is working and thats the way I'm gonna do now, but this should be a native function. I started...
At current state there seems to be no way to prevent client sort/client paginate... overwriting sortColumn is not get called on client if clicking header
```javascript columns() { let tmp = super.columns(); tmp.__proto__.sort = (t,e) => { this.sort(t,e); } return tmp; } ``` ok hacking into proto does work xD
Code for button in column: ``` { cls: 'editUrl', index: 'profileURL', title: 'Aktionen', exportable: false, autoWidth: true, width: 150, render: function (o: {data: any}) { let ox = document.createElement('a'); ox.setAttribute('href',...
I tested a little bit - at current state the auth function is just called once (cached). Because of this, I need to create the schema for each request new....