plugin.tx_selectapps_pi1{
max_items = 5
height = 120c
width = 120c
jquery =
jquery_ui =
}
If you dont have installed jquery within your TYPO3 installation, please have your plugin.tx_selectapps_pi1 configured as the following:
plugin.tx_selectapps_pi1{
...
jquery = typo3conf/ext/selectapps/res/jquery-1.3.2.min.js
jquery_ui = typo3conf/ext/selectapps/res/jquery-ui.min.js
}
In case you would like to obtain the jquery-files from google-server, which might have some advantages in some cases, use the following:
plugin.tx_selectapps_pi1{
…
jquery = http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js
jquery_ui = http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js
}
If you already have jquery within your TYPO3 installation and you dont want to have selectapps implementing it, just leave the two lines empty, which should be best, if you have another jquery-application running on the same site, which already placed the files into the header:
plugin.tx_selectapps_pi1{
…
jquery =
jquery_ui =
}
In case you have jquery within your installation, but not implemented on the certain site yet, you can of course enter any path to the jqueryfiles in the above mentioned lines.