-
About the problem of Select selector antd
thousands of pieces of data returned by the background interface are put in the Select. Users select a certain piece of data and find it very stuttered. Is there any way to solve it ?
this is the official demo of antd
const { Select } = antd;
const Op...
-
How to cross-verify dates before and after ant-design Form
The form has a start and end date, which requires context. How can it be cross-validated? the problem I encountered is: step1: first set the start date to 3br 23 step2: sets the end as scheduled to 3x21, the end date component verification prompt "c...
-
Antd handles the problem of very large forms
for example, in a very large form, each form item item is wrapped by getFieldDecorator, because the onChange event of the wrapped input component triggers the forceUpdate, on the Form.create layer, so the whole form will be re-render at this time, if i...
-
Ant design pro mock handoff service configuration problem
.roomhogrc.mock.js is configured as follows:
const noProxy = (process.env.NO_PROXY === true );
GET api currentUser : {
$desc: "",
$params: {
pageSize: {
desc: ,
exp: 2,
},
},
$body: {
name: Serati Ma ,
avatar: ...
-
How to modify the top of the Antd Transfer shuttle box.
how to modify the top of the Antd Transfer shuttle box
like this
...
-
The form component of Antd cannot be reset to display the value of a record correctly
as shown in the figure: when each record is clicked to edit, the form displays the corresponding record value. My practice is to click to edit the record to obtain the record and store it in state.formData. How to pass state.formData as a props paramete...
-
Ant-design tree-select problem
tree select component search for questions.
import React from react ; import {TreeSelect} from antd ;
const treeData = [{]
label: Node1 ,
value: 0-0 ,
key: 0-0 ,
children: [{
label: Child Node1 ,
value: 0-0-1 ,
key:...
-
About the antd Table plug-in Table question antd
use the Table form plug-in and find that there is a Warning prompt on the console. How to solve this prompt? Baidu said to add rowKey= "id ", and found that there was still a warning prompt.
Warning: Each record in table should have a unique `key` pro...
-
When two data sources are cross-displayed on the page, the page is not tidy
there are two data sources A, B. on the page with four columns in a row (one piece of data is a Card, row and four Card), such as: A1, B1, A2, B2. is as follows: dataSource= {data}, data is the data source of An and B together, item= {A1, B1}, but th...
-
Antd's datepicker cannot set error messages with form.setFields
datepicker of antd cannot set error message with form.setFields
<FormItem label= {...formItemLayout}>
{form.getFieldDecorator( startTime , {
rules: [
{
required: true,
message: ,
},
{
vali...
-
How does ant-design-pro call the server interface?
mock, is used in ant-design-pro. Now I m going to call the test server interface api. I banned mock in .uplohogrc.mock.js modified mock according to ant-design-pro s official documentation
const noProxy = (process.env.NO_PROXY === true );
....
-
Antd pro table page
1. After filtering the antd pro table list display page, click the header query button. The data is all data, but the selection in the filter box is still there. How to remove it
2, [full check data display]
[]
[]
...
-
Does antd's Carousel component slide have no effect?
sliding the Carousel component of antd has no effect, it can be slid on its official website, but it is not good for copy to come and put it on its own project! ...
-
How do I set the default root route not to "/"?
the default root route for packaging is " " , how to change the packaged root route to " test " other routes should also be based on test url to display ....
-
The format of the usage parameter params of the breadcrumb component of antd
routes={[
{
path: search products ,
breadcrumbName:
},
{
path: goods-details ,
breadcrumbName:
},
]}
params={{
...
-
Is there any component in ant design that can satisfy the selection of three levels of categories?
is refactoring a project with ant design pro. Some of the requirements are as follows:
: , , , , (), (), ,PS: ,
5, , :
now the data structure returned by the backend is level 1: [{name: daily cleaning , level: 1, id: rihuaqingjie },.] level ...
-
The page number selection drop-down box of nz-table is covered by the mask layer.
when I use nz-table, because it is used in the ngx modal box of the pop-up bootstrap, when using paging support, the drop-down page number selection menu is displayed in the lower part of the modal box, and cannot be used when it is displayed by the moda...
-
AntD Form form, can the configuration of getFieldDecorator be dynamically modified?
RT version: 2.13.11
I have a login dialog box, tab switch password login while verification code login finally export a form field: Form.create () (AppComp) so both sides must not pass, so I want to update the configuration of getFieldDecorator
...
-
Antd-design generates an editable table, cell with a select control, how to control the display of this control through a click event
as shown in the picture, click on the cell to display the select control and select the field type. Click outside the cell, and the cell returns to its original appearance
...
-
How to use ant-design to add select control to the cell of editable table
how to add a select control to the cells of an editable table with ant-design, and update the state value of the table
...