form
Here are 1,887 public repositories matching this topic...
The currently published docs on redux-form.com has its Examples page returning a "404" page:
https://redux-form.com/8.3.0/examples/
And, if you click on the example links in the nav sidebar, such as the Simple Example at https://redux-form.com/8.3.0/examples/simple/ then all of the sidebar links become /8.2.2/ instead of /8.3.0/
-
Updated
May 23, 2020 - TypeScript
Hey Erik! How's it been?
Are you submitting a bug report or a feature request?
Feature
What is the current behavior?
No mention of withTypes
in the documentation.
What is the expected behavior?
༼ つ ◕_◕ ༽つ
I just found out about this from a co-worker and am not even sure yet what it exactly was! Excited to see..
Context
- node version: v10.10.0
- module (formidable) version: 1.2.1
What are you trying to achieve or the steps to reproduce?
I'd like to use the option hash
to rename my file using the a sha1
string.
form = formidable.IncomingForm({
hash: 'sha1'
});
form.on('fileBegin', function(name, file) {
if (file.name !== '') {
var ext
-
Updated
May 21, 2020 - JavaScript
I don't need "return back to some step if step clicked" feature.
People say that they accidentally return back many times when clicking somewhere on mobile phone while they are scrolling the chat page.
How to disable it? (I glad any even tricky solutions)
Are you submitting a bug report or a feature request?
Neither, reporting missing documentation
What is the current behavior?
Detailed documentation on the signature of mutator functions is missing.
What is the expected behavior?
I'd expect the docs on mutators to be more elaborate on both the definition and the usage of mutators. I've looked at the docs for react
-
I'm submitting a ...
- bug report
- feature request
- support request
-
What is the current behavior?
At the moment it ist possible to use the selectOption "customLabel" for setting a function which can generate custom strings by using the options properties.
- What is the motivation / use case for changing the behavior?
I would like to see an option
-
Updated
May 23, 2020 - TypeScript
Using 0
in loop, instead loop counter. When messages added in backend through messages
object from django.contrib
library - it will display only first message with loop length count.
-
Updated
Feb 29, 2020 - HTML
-
Updated
Apr 29, 2020 - Vue
The Problem
It would be easier to know how to test for form with jest if there were examples.
I spent some time last week trying to set everything up on my own codebase so I'll be happy to add testing to the examples in the repo if you are interested.
In your own example: https://codesandbox.io/s/react-form-custom-select-multi-select-inputs-6962t
The canSubmit is true
even before the two colors in the multiselect have been set. As long as the single select have been set, it's all good.
Is this expected?
表格内按钮状态/样式修改
(必填)这个需求解决了什么问题 What problem does this feature solve
?表格内有一个或多个操作按钮,我希望在点击这些按钮后显示loading,并在稍后处理完毕后恢复。
(必填)请填写问题链接来描述为什么无法实现该功能,例如(jsfiddle、codesandbox、jsrun) Reproduction link
?如果要实现这样的功能,就需要使用 $event 把原生DOM 事件传入处理方法,但目前vxe-button好像无法这样传入(表格内用原生非vxe-按钮要单独调样式)。
-
Updated
May 14, 2020 - JavaScript
There needs to be more straightforward examples on how to setup the use of this tool. I am trying to upgrade from select2, and I cannot figure out exactly how to figure out how to setup Selectivity.
Recommend creating concise, clear, and simple examples, beginning with the simplest usage and working to more advanced features. The examples listed here on
alibaba-fusion Select component (https://github.com/alibaba-fusion/next) used as below:
const dataSource = [
{ label: 'option1', value: 'option1' },
{ label: 'option2', value: 'option2' },
{ label: 'disabled', disabled: true }
]
<Select dataSource={dataSource} />
<Select>
<Option value="small">Small</Option>
<Option value="medium">Medium</Option>
<Option val
Have a look here https://jsfiddle.net/efpgr4xw/ it's a modified version of Dynamic tab example
button test toggles second tab ('Is Logged In?')
putting slot title BEFORE tab-content messed up tabs positions: ('Is Logged In?') goes in 3rd position
-
Updated
Nov 11, 2019 - JavaScript
Manual Installation
CocoaPods
and Carthage
are awesome tools and make our life really easier, but there are some devs who still don't know how to use them.
It would be cool to add the Manual installation guide in your README.md
. You can take a look at my iOS Readme Template to see how you can do it.
-
Updated
May 8, 2020 - JavaScript
-
Updated
May 21, 2020 - JavaScript
-
Updated
Apr 30, 2020 - Java
Improve this page
Add a description, image, and links to the form topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the form topic, visit your repo's landing page and select "manage topics."
Current Behavior
The type
ErrorMessage
doesn't have an id property.Desired Behavior
It'd be nice
id?: string
would be added to the typeErrorMessage
and set on the outermost component that serves as error message.Suggested Solution
Add
id={this.props.id}
to the outer component inErrorMessage
.Who does this impact? Who is this