Created
September 15, 2014 07:40
-
-
Save Konafets/40e4f6a85fdef67d600e to your computer and use it in GitHub Desktop.
Company AutoSuggest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('TYPO3/CMS/StagedealCompany/AutoSuggest', ['jquery-ui', 'jquery-ui'], function ($) { | |
jQuery(document).ready(function(){ | |
var test = ['ACME, Flensburg', 'Arroba IT, Flensburg']; | |
// var ajaxURL = '<f:uri.action action="ajaxCompanySearch" controller="Company" pageType="1410614542" arguments="{term: term}" />'; | |
var ajaxURL = 'index.php?type=1410614542&tx_stagedealcompany_mycompany[controller]=Company&tx_stagedealcompany_mycompany[action]=ajaxCompanySearch'; | |
}) | |
} | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @return array | |
*/ | |
public function ajaxCompanySearchAction() { | |
$arguments = $this->request->getArguments(); | |
$term = $_GET['term']; | |
$companies = array('ACME, New York', 'Arroba IT, Flensburg', 'City on a Hill, Harrislee'); | |
return json_encode($companies); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<input type="text" name="q" id="jquery" autocomplete="off" /> | |
... | |
<script>require(['TYPO3/CMS/StagedealCompany/AutoSuggest']);</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
["ACME, Los Angeles","Arroba IT, Flensburg","City on a Hill, Harrislee"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/etobi/167fbc80875e539fa333