Merve
Merve
When i use server-side sorting i use this function for onSortInfoChange. it worked for me. Hope it helps ``` function onOrderChange(value) { if ( props.filterParams && !Lodash.isEmpty(value?.name) ) { props.filterParams({order:...
> @msanli220, thanks for the response! I didn't find any sorting related improvements/fixes/functionality in the code snippet you provided. Could you share a full example? > > Is `props.filterParams` a...
@AlexanderSokolov1 since i didnt share the backend api i used static source for column part to show the remote filtering mode. Did you add remoteFilter = {true} inside the ReactDataGrid...
@AlexanderSokolov1 Oh now i found something hope it helps. I append an injectformatter function to the column part and returned and empty arrow function for sorting( it returns nothing for...
alert is still freezing up the app's inputs. I used electron remote dialogs instead of using alert function. ``` const { dialog,BrowserWindow,getCurrentWindow } = require('@electron/remote'); let browserWindow = getCurrentWindow(); const...