capdiem
capdiem
@charleypeng Thank you for your usage. According to the standard PR process, you can first fork the repository and then submit a PR. We will review it and decide whether...
@charleypeng I understand. You have added a swipearea component. For the pagestack component, we plan to implement a similar feature that allows for a draggable effect, rather than just swiping...
@kimdiego2098 渲染列表列表数量一多普遍都会卡,我们看看再怎么优化优化吧
@mookeview 和 #955 一样,不是通过 elevation 实现的。你需要覆盖 `.m-expansion-panel::before` 的样式: ```css box-shadow: 0px 0px 2px rgba(0,0,0,.2); ```
@mookeview 隔离CSS需要作用到原生标签上例如 `div` 。你可以试试 `::deep .m-expansion-panel::before`
@mookeview css不会影响编译吧,可以忽视波浪线。你也可以向 _wwwroot/site.css_ 添加,不建议修改我们发布的css。
使用 `Flat` 属性就可以去除阴影。
@mookeview 只有本地分页才需要吧?服务端分页下一页又是从数字1开始了。
@mookeview 基于[使用](https://docs.masastack.com/blazor/components/data-tables#section-4f7f7528)改的,只把关键代码写下来了。 ```razor @{ if (_row > _datatable.ComputedItems.Count()) { _row = 1; } @if (context.Header.Value == "#") { @(_row++ + (_page - 1) * 5) } else { @context.Value }...
@mookeview 服务端分页没测试,估计是可以用的