[ 
https://issues.jboss.org/browse/RF-13537?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brian Leathem updated RF-13537:
-------------------------------

    Fix Version/s: 4.5-Tracking
                       (was: 4.3.7)

    
> Autocomplete: onbegin attribute ignored
> ---------------------------------------
>
>                 Key: RF-13537
>                 URL: https://issues.jboss.org/browse/RF-13537
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>    Affects Versions: 4.3.5
>            Reporter: alexey plotnikov
>             Fix For: 4.5-Tracking
>
>
> "onbegin" attribute of rich:autocomplete is always ignored!
> I suggest next fix:
> In file Autocomplete.js:
> {code}
> var callAjax = function(event, callback) {
> ...
> this.isFirstAjax = false;
>         //caution: JSF submits inputs with empty names causing "WARNING: 
> Parameters: Invalid chunk ignored." in Tomcat log
>         var params = {};
>         params[this.id + ".ajax"] = "1";
> rf.ajax(this.id, event, {parameters: params, error: ajaxError, 
> complete:ajaxSuccess});
> }
> {code}
> for fixing, we must replace on
> {code}
> var callAjax = function(event, callback) {
> ...
> this.isFirstAjax = false;
>         //caution: JSF submits inputs with empty names causing "WARNING: 
> Parameters: Invalid chunk ignored." in Tomcat log
>         var params = {};
>         params[this.id + ".ajax"] = "1";
> var parameters_extended = {parameters: params, error: ajaxError, 
> complete:ajaxSuccess};
>         if (this.options.onbegin != undefined) {
>             parameters_extended.begin = this.options.onbegin;
>         }
>         rf.ajax(this.id, event, parameters_extended);
> }
> {code}
> I can create pull request if everything ok.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
richfaces-issues mailing list
richfaces-issues@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to