Giter Club home page Giter Club logo

Comments (6)

stclairdaniel avatar stclairdaniel commented on May 30, 2024

I'm so sorry - I was using outdated code. Please ignore this.

from react-use-form-state.

wsmd avatar wsmd commented on May 30, 2024

Hi @stclairdaniel – sorry for the confusion.

raw will be added in 0.10.0 which isn't released yet (I'm planning on releasing that later today).

The documentation on the GitHub master branch is for the next version. Please refer to this branch https://github.com/wsmd/react-use-form-state/tree/0.9.1 for the latest documentation.

from react-use-form-state.

stclairdaniel avatar stclairdaniel commented on May 30, 2024

Thanks for the quick reply! Our team has been loving the library so far - looking forward to implementing raw to work with react-select :)

from react-use-form-state.

wsmd avatar wsmd commented on May 30, 2024

I'm actually looking for beta testers if you are interested – raw (as well as some other goodies 😁) is currently available in the beta release react-use-form-state@beta.

from react-use-form-state.

stclairdaniel avatar stclairdaniel commented on May 30, 2024

I'd love to but we've made a local version with some specific changes - I'll talk to my team about creating a fork here with our changes.

Is this an ok place to ask for some help with selectMultiple? There's nothing in the docs about how to use it, but I don't understand how to pass in the options - I'm getting an error TypeError: Cannot convert undefined or null to object here:

function getNextSelectMultipleValue(e) { return Array.from(e.target.options).reduce(

I don't see where options is being supplied to the target - am I supposed to do this manually?

I was able to "fix" this issue by completely replacing as:
function getNextSelectMultipleValue(e) { return e.target; }

from react-use-form-state.

wsmd avatar wsmd commented on May 30, 2024

I don't see where options is being supplied to the target - am I supposed to do this manually?

options is a native DOM attribute of HTMLSelectElement (aka <select>). This attribute represents the options that are set inside of the select element - so yes, you have to set the options manually.

function App() {
  const [formState, { selectMultiple }] = useFormState();
  return (
    <select {...selectMultiple('items')}>
      <option value="a">Option A</option>
      <option value="b">Option B</option>
      <option value="c">Option C</option>
    <select>
  );
}

I hope that helps.

from react-use-form-state.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.