There are 2 related problems
Using an iPad (browser doesn't matter)
Problem 1
Problem 2
Using the same 12+ option list from problem 1 above select one option and then attempt to select another (without minimising the keyboard)
Problem 1
The drop down list should allow you to scroll/drag down within the drop down and select the options you want
Problem 2
You should be able to make multiple selections
Problem 1
You cannot scroll the drop down list and therefore cannot select the lower options in the list
Problem 2
You cannot make a second selection until you mimimise the keyboard and click in the input box a second time.
You must use an iPad to test - problem is browser independent
This is a known issue in the chosen library version we are using.
See harvesthq/chosen#2289 (long discussion)
There would appear to be 2 solutions to the problem -
Labels |
Added:
?
|
Category | ⇒ | com_fields |
Status | New | ⇒ | Information Required |
any Suggestion @GeraintEdwards?
Title |
|
If this Issue get no Response, it will be closed at 26th January 2018.
Closed_By | franz-wohlkoenig | ⇒ | joomla-cms-bot |
Status | Information Required | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-01-26 08:18:30 |
Closed_By | ⇒ | franz-wohlkoenig |
Set to "closed" on behalf of @franz-wohlkoenig by The JTracker Application at issues.joomla.org/joomla-cms/17202
This has been closed as stated above – it can always be reopened.
Bump can we reopen @franz-wohlkoenig @GeraintEdwards can you re-review?
Closed_Date | 0000-00-00 00:00:00 | ⇒ |
Status | Closed | ⇒ | New |
Closed_Date | 2018-01-26 08:18:30 | ⇒ | |
Closed_By | joomla-cms-bot | ⇒ |
Set to "open" on behalf of @franz-wohlkoenig by The JTracker Application at issues.joomla.org/joomla-cms/17202
reopened as stated above.
Status | New | ⇒ | Discussion |
As Brian mentioned above #11779 , the Chosen library had to be updated in the past. I didn't know it has been modified... Anyways, the original Chosen script version is 1.8.3 and Joomla still ships with a 1.6.2 (3 Aug 2016)
Just noticed the RC of Joomla3.8.6 … shouldn't it consider the script update?
Joomla4 seem to use another auto-complete/multi-select, so the time is running out ;)
Anyone is welcome to take the current release and do the long work to make the changes required to not completely break backward compatibility. It's not a simple job and I am not doing it again.
Labels |
Added:
J3 Issue
|
I guess no one is interested in doing the hard work to update chosen without breaking b/c and as chosen will not be used in j4 (still to be finalised) what will be used) I am going to close it
Status | Discussion | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-07-24 16:28:23 |
Closed_By | ⇒ | brianteeman |
can you please link to the discussion about this,
is there some other candidate ?
thanks
@ggppdk I think the discussion is here: #20097 (comment)
I have managed to solve the 1st problem but not the 2nd problem.
Here is the solution:
Download the latest chosen from here: https://github.com/harvesthq/chosen/releases
Replace chosen.min.css and chosen.css in media/jui/css
Edit chosen.jquery.min.js
find:
t.browser_is_supported=function(){return"Microsoft Internet Explorer"===window.navigator.appName?document.documentMode>=8:!(/iP(od|hone)/i.test(window.navigator.userAgent)||/IEMobile/i.test(window.navigator.userAgent)||/Windows Phone/i.test(window.navigator.userAgent)||/BlackBerry/i.test(window.navigator.userAgent)||/BB10/i.test(window.navigator.userAgent)||/Android.*Mobile/i.test(window.navigator.userAgent))}
and replace with:
t.browser_is_supported=function(){return"Microsoft Internet Explorer"===window.navigator.appName?document.documentMode>=8:/iP(od|hone)/i.test(window.navigator.userAgent)?!0:/Android/i.test(window.navigator.userAgent)&&/Mobile/i.test(window.navigator.userAgent)?!0:!0}
and then paste the file chosen.jquery.min.js in media/jui/js
Hard Reload the page to view the results (ctrl + shift + R)
The only way to fix this is to update chosen and apply the changes that were made to the upstream library here #11779