Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Wizard docs for v2 #1725

Open
johnrom opened this issue Aug 2, 2019 · 3 comments
Open

Update Wizard docs for v2 #1725

johnrom opened this issue Aug 2, 2019 · 3 comments
Labels
Focus: Documentation Issues regarding documentation v2

Comments

@johnrom
Copy link
Collaborator

johnrom commented Aug 2, 2019

related #1714

@johnrom johnrom added the v2 label Aug 2, 2019
@johnrom johnrom added this to the v2.0 milestone Aug 2, 2019
@johnrom johnrom added the Focus: Documentation Issues regarding documentation label Aug 2, 2019
@stale stale bot added the stale label Oct 1, 2019
@dickiedyce
Copy link

That would be lovely - I'm trying to update the rather elegant codebox example to use hooks and a functional component rather than a class based one... and not getting very far ;-)

@stale stale bot removed the stale label Dec 5, 2019
@jsheflin
Copy link

jsheflin commented Dec 6, 2019

yes please

@stale stale bot added the stale label Feb 4, 2020
@thepabloaguilar
Copy link

thepabloaguilar commented May 20, 2020

Hi, guys! I'm trying to use the Wizard example with a customs form field from Tabler React!
How can I integrate them?

Generally, I create forms using useFormik and I can assign the values of value & onChange as follow:

<Form.Input
  ...
  value={formik.values.firstName}
  onChange={formik.handleChange}
  ...
/>

I'm using this example!

Code on example:

<Wizard.Page>
  <div>
    <label>First Name</label>
    <Field
      name="firstName"
      component="input"
      type="text"
      placeholder="First Name"
      validate={required}
    />
    <Error name="firstName"/>
  </div>
</Wizard.Page>

My code:

<Wizard.Page>
  <Form.Group label='First Name' isRequired>
    <Form.Input
      id='firstName'
      name='firstName'
      type='text'
      placeholder='First name'
    />
  </Form.Group>
</Wizard.Page>

@stale stale bot removed the stale label May 20, 2020
@jaredpalmer jaredpalmer removed this from the v2.0.1 milestone Sep 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Focus: Documentation Issues regarding documentation v2
Projects
None yet
Development

No branches or pull requests

5 participants