Posted 2 March 2023, 5:41 am EST
Hello,
I have some issue with FlexGrid. Namely when I set props “autoGenerateColumns={false}” i can’t see my declared FlexGridColumn
<FlexGrid
                  initialized={(e: wjGrid.FlexGrid) => initialized(e)}
                  formatItem={(flex: wjGrid.FlexGrid, e: wjGrid.FormatItemEventArgs) => formatItem(flex, e)}
                  itemsSource={postState.posts}
                  autoGenerateColumns={false}
               >
                  <FlexGridColumn header="Identyfikator użytkownika" binding="userId" width={25} />
                  <FlexGridColumn header="Identyfikator posta" binding="id" width={25} />
                  <FlexGridColumn header="Tytuł" binding="title" width={200} />
                  <FlexGridColumn header="Treść" binding="body" width="*" />
               </FlexGrid>my dependencies:
"dependencies": {
    "@grapecity/wijmo.react.all": "^5.20222.877",
    "@redux-devtools/extension": "^3.2.5",
    "@reduxjs/toolkit": "^1.9.3",
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^13.4.0",
    "@testing-library/user-event": "^13.5.0",
    "@types/jest": "^27.5.2",
    "@types/node": "^16.18.13",
    "@types/react": "^18.0.28",
    "@types/react-dom": "^18.0.11",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
  }, 
                                
 
                                
 
                         
                         
                         
                        