Install Mobiscroll in your web or mobile app
Installing Mobiscroll only takes a couple of minutes. Once the right resources are included, you’ll be able to initialize and use Mobiscroll controls.
Start a trial
First, start a free trial by entering your email address on the Mobiscroll homepage and create your account.
This is how the free trial works:
- You can try Mobiscroll for free.
-
The trial needs an active connection to Mobiscroll servers for validation. Don't worry, the licensed product will work offline with downloadable resource files.
Read about the differences between trial and licensed products. - You can upgrade to the licensed product at any time during or after your trial.
Enter your first name, set a password and you're ready to go!
Pick the Framework you are using and hit the big blue button to download the trial. Select
- JAVASCRIPT if you are working with plain JS
- JQUERY if you are using jQuery or jQuery Mobile
- ANGULAR for Angular 4+ (including the latest version)
- IONIC for Ionic Framework
- REACT for React apps
- Finally, If you don't see the framework you are working with, pick USING SOMETHING ELSE. You can use the plain JS API wherever Javascript runs. Use it with VUE, Knockout ...
Here is how to install the trial in your local project
Step 1: Install the Mobiscroll CLI and configure the app
Install Mobiscroll CLI from NPM (you'll only have to do it once).
$ npm install -g @mobiscroll/cli
Run mobiscroll config react
in your terminal window.
$ mobiscroll config react
Step 2: Import Mobiscroll CSS and JS resources and let's see if Mobiscroll was installed correctly
To test it let's import the Mobiscroll resources and add a simple Mobiscroll Date picker to your component's render function.
import React from 'react';
// import the datepicker
import { Datepicker } from '@mobiscroll/react';
function App() {
const [myValue, setMyValue] = React.useState(null);
const myChange = (ev) => {
setMyValue(ev.value);
}
return <Datepicker value={myValue} onChange={myChange} />
}