问题标签 [material-table]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
reactjs - 材料表可编辑不起作用并且需要一些依赖项?
我想使用一个需要可编辑的数据表。我安装了 Material-table,我得到了错误
我在材料 ui 表(材料表)中得到了演示,它完全解决了我的目的。但它不工作
我的 package.json
和我的代码
我希望它应该能正常工作。但我收到以下错误
无法编译./node_modules/material-table/node_modules/date-fns/esm/format/index.js 错误:ENOENT:没有这样的文件或目录,打开'/Users/tlc-01/Downloads/ictskill/client/node_modules /material-table/node_modules/date-fns/esm/format/index.js'
javascript - 如何使用材料表中的表行数据添加带有处理程序启用/禁用的开关
如何在材料表中添加另一个动作并将其添加到反应材料表中与元素。并获取行数据 onChange 事件。我目前正在渲染状态。
请检查此代码并建议我如何使用它。
javascript - 是否可以在材料表上设置必填字段
我正在做一个项目,我基本上使用材料表界面进行 crud。我想知道是否有办法让我也想填写必填字段?
我尝试研究但没有太多结果。请参阅下面的代码,该代码直接来自https://material-ui.com/components/tables/最后一个示例。当然,我已经修改了我的代码库以供我个人使用,一切正常,但我不确定如果我也想要,如何制作必填字段?如果是,我会怎么做?我会在 MaterialTable 上传递一些东西作为道具选项吗?
感谢您的任何建议。
reactjs - 使用远程异步查找来反应材料表
我需要从远程数据中设置材料表列的查找。我试过了,但它不起作用:
远程调用有效,但不设置查找。你知道是否可以做到吗?
reactjs - Start search on Enter using React material-table
I'm new to using React and material-table and am trying to sort out how to initiate search after the user presses Enter. I've been able to find the debounceInterval
option, but the API I am using to search remote data currently does not return partial matches so I'd like the user to press "Enter" when they want the search to start.
Using monitorEvents($0)
I can see that there is a keydown
Event on the element input.MuiInputBase-input.MuiInput-input.MuiInputBase-inputAdornedStart.MuiInputBase-inputAdornedEnd
but I'm not sure how to add an event listener here or is there is an option to specify which event.target.value
to use to start the search. The material-table Search code is here: https://github.com/mbrn/material-table/blob/master/src/components/m-table-toolbar.js
Any help would be greatly appreciated.
reactjs - 如何在material-ui-table组件中将图标更改为文本
点击右上角的 + 图标可以在材料表中添加行。我想用“添加行”之类的文本替换该图标。但是 material-table 接受图标对象并且没有其他道具可以做到这一点。有什么办法可以做到吗?我正在使用材料表可编辑功能https://material-table.com/#/docs/features/editable
我尝试了几件事
1)从检查元素中提取样式类并更改它,但它会影响所有其他图标。没有专门用于添加图标的特定类。
2)我尝试将材料表类扩展到我的组件并更改后端代码,但这也没有奏效。
reactjs - 使用诸如“输入”之类的按键添加新行
我想在反应时从材料表中添加一个带有“输入”键的关键监听器到“onRowAdd”操作,
是否可以在表格道具之外调用该函数并添加一个普通的 js 侦听器来按键输入以启动该函数?
所以我搜索了材料表的文档,没有类似的东西可以帮助我,有人知道我该如何解决吗?
谢谢
reactjs - material-table How to do selectable and editable table?
i want to do this one(some actions for selected and some actions for each row). Help please, thanks!
I use material-table
with ReactJS
. Now I have actions on each row without selectable, if add selection prop these actions disappear. I don't know how to combine each row actions with multiple actions..
reactjs - Material-Table onRowClick 波浪动画;这可能吗?
我希望点击表格行在整个行上都有一个 Material Waves 动画。目前看来,我能做到的最接近的事情是悬停背景更改。
有谁知道实现这一目标的最佳方法?