Hello Suresh,
Sorry about the instructions in the guide section, they are a bit outdated...
You need to replace path/to/inputex in the script tag, and also in the YUI_config.groups.inputex.base attribute, for your browser to find the inputEx library you've downloaded.
Then, unzip the folder, and add it somewhere into your project directory (if the folder is named "inputex-shifter", just rename it to "inputex").
For example, if your local webserver is serving the assets in the project/ folder and you have inputex inside your project folder, like this :
project/
inputex/
build/
inputex/
inputex-autocomplete/
inputex-base/
[...]
Then you should replace the two lines like this:
<script src=
"path/to/inputex/src/loader.js"
type=
'text/javascript'
></script>
becomes:
<script src=
"/inputex/build/inputex-loader/inputex-loader.js"
type=
'text/javascript'
></script>
YUI_config.groups.inputex.base =
'path/to/inputex/'
;
YUI_config.groups.inputex.base =
'/inputex/build/'
;
Then everything should work properly (Y.inputEx will be defined).
You should adapt the path to match the place where you've put inputex in your project directory.
Hope this helps!
Best regards,
--
Maxime