Feature #24092
closedAdd live search to the backend toolbar
0%
Description
As part of T3UXW09, a live search module was added to the backend toolbar. This needs a little further refinement, testing, and UI work to be included in TYPO3 4.5.
(issue imported from #M16432)
Files
Updated by Stefano Cecere about 14 years ago
patching latest trunk, i get this error
Fatal error: Call to a member function convArray() on a non-object in /Users/krur/Sites/TYPO3_repository/trunk/typo3/backend.php on line 515
if i comment line 515 of backend.php, it seems to work!
(obviously i guess i'll lose some strings :)
Updated by Jeff Segars about 14 years ago
Thanks for testing! It seems that I had a typo on this line and I'm not sure how it every worked for me :) It should be the following....
$GLOBALS['LANG']->csConvObj->convArray($t3LLLliveSearch, $GLOBALS['LANG']->charSet, 'utf-8');
Does this work for you?
Updated by Jeff Segars about 14 years ago
Attached v3 with the following changes
- Fixes a typo in backend.php when converting character sets
- Checks for invalid commands (ie. #pages instead of #page)
- Only jumps directly to list view search results on ENTER keypress and
not other special keys - Only follows page jumps (ie. #14143) when ENTER is pressed and shows live
search results if ENTER is not pressed
Updated by Jeff Segars about 14 years ago
Right here.....now that I added it ;) Thanks for the nudge
Updated by Stefano Cecere about 14 years ago
perfect... with v3 no more fatal errors, and it seems to work well! (safari & firefox)
thanks!s