Antdesign popconfirm tooltip with segmented component disappears quickly how to fix it?
const chartTypeSegmented = isPreviewChart ? ( <Popconfirm title=”Are you sure you want to change the chart type?” onConfirm={() => setChart({ …chartSelectionOption })} okText=”Yes” cancelText=”No” > <Segmented className=”reportButtons” onChange={(value) => setChartSelectionOption((item) => ({ …item, type: value }))} defaultValue={chart.type} options={options} /> </Popconfirm> ) : ( <Segmented className=”reportButtons” onChange={(value) => setChart((item) => ({ …item, type: value }))} defaultValue={chart.type} […]
Antd Table not responsive when add “sticky”
See whats going on
Issue on Antd css version converting
I have a doubt regarding a Antd CSS which I wrote early in react JS format but I converted it into type script but the Antd CSS is not working properly of the antd package, what can I do? In react I used older version of antd v4.5.3 which contain antd.css page in dist folder.But in typescript I’m using new version of antd v5.16.4 which don’t have antd.css page. Thats the issue. Is there remedy for this?
Antd column sort not working when render method is used
I am trying to use sort on one of the columns in antd table, all the columns render a custom component. When I comment out the render method, the sorting works fine but when I uncomment the render method the sorting stops working.
Antd theme not applying consistently to all components
My usecase is i want to build custom component and use it in the primary package. apply a theme from the primrary package that can also be used by my custom component as well.
but for some reason the custom package is not able to get the theme applied to primrary package.