我想使用ExtJs 4.1.1的两个集成拖放特性
我想将节点从树形面板/网格拖动到另一个树形网格中。拖放功能应该具有的灵活性,其中我可以将节点拖放到任何父节点中。深度应该很重要。
但是,由于我需要以格式显示数据,所以我必须使用。
由于源和目标之间的这种不匹配,我无法派生出两者所需的功能。
Here is a JSFiddle for this:
请帮帮忙。
我在我的项目中与一起使用Storybook,并在本地运行Storybook。为了获得更好的开发经验,我希望在我的故事书中使用命名空间导入:
// this is more convenient
import { ArrowForward, Star } from '@material-ui/icons';
// than this
import ArrowForward from '@material-ui/icons/ArrowForward'
import Star from '@material-ui/icons/Star'
在构建过程中
我在和bootstrap图标上创建了一个自定义设计系统。
Bootstrap图标包含1000+ svg图标。
我创建了一个抽象的Icon组件来对图标名称进行抽象,这看起来更方便。
然而,我不确定这个模块是否会是树形摇摆的,我也不知道如何改变实现使其树形摇摆。
Icon.tsx
import React from 'react'
import * as bootstrapIcons from '@emotion-icons/bootstrap'
// Union of all icon names: 'Alarm' | 'Circle
我正在尝试模仿下图的功能。我在一个wordpress博客上工作,我需要能够把博客帖子放到一个树形结构下的类别
我最多只需要走3层
Category 1
- blog post
- blog post
- SUB-CATEGORY
--- blog post
--- blog post
CATEGORY 2
- SUB-CATEGORY
--- blog post
--- blog post
- SUB-CATEGORY2
--- blog post
--- blog post
- SUB-CATEGORY3
--- blog post
--- blog post
我甚至不知道从哪里