Opened 14 years ago
Closed 13 years ago
#4783 closed enhancement (invalid)
autocomplete plugin extraparams function din't take key
Reported by: | andruhap | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | plugin | Version: | 1.3.2 |
Keywords: | autocomplete | Cc: | |
Blocked by: | Blocking: |
Description
extraParams[key] = typeof param == "function" ? param() : param;
should be
extraParams[key] = typeof param == "function" ? param(key) : param;
Change History (4)
comment:1 Changed 14 years ago by
comment:2 follow-up: 3 Changed 14 years ago by
also it must be able to disable cache when functions used for extraparams
comment:3 Changed 14 years ago by
Replying to andruhap:
also it must be able to disable cache when functions used for extraparams
sorry, it can be done using cacheLength:0
comment:4 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
This is not a jQuery core bug. Please report plugin bugs to the plugin's author, or ask on the jQuery forums. jQuery UI bugs should be reported on the UI bug tracker, http://dev.jqueryui.com .
Note: See
TracTickets for help on using
tickets.
also if a function return false extraParams[key] can be skipped