summaryrefslogtreecommitdiff
path: root/js
AgeCommit message (Collapse)Author
2020-10-07Adjustements for jquery updateJean-Michel Vourgère
- Replaced .click(function) by .on('click', function) - Replaced .click() by .trigger('click') - Replaced .live(event, function) by .on(event, function) - Replaced $(document).ready(function) by $(function) - Replaced .bind/.unbind by .on/.off - Replaced keypress events by keydown events, so that up/down keys get supported again. Thanks to the jquery-migrate project.
2019-10-31codespell assisted typo cleaningJean-Michel Vourgère
2012-11-28Fix an issue with population of FK fields using autocomplete.Robert Treat
The fix comes from a comment by Dmytry Scherbina in a pull request originally submitted by Jakob Klein.
2011-01-07Highlight referencing fields on hovering FK values when browsing table dataLeonardo Sápiras
2011-01-06Fix character-encoding problem with autocompleteGuillaume (ioguix) de Rorthais
...And enforce some ajax call properties in js/ac_insert_row.js
2010-12-19Fix #3139003 "Autocomplete doesn't insert value", report and patch by ↵Guillaume (ioguix) de Rorthais
Aleksander Machniak
2010-09-28Fix multi bug in auto-complete value on insert/updateGuillaume (ioguix) de Rorthais
* explicitly not support multi FK constr, only deal with the first one. marked as FIXME * some bad escaped vars were failing the auto-complete on very weird table/field names * some cleanup
2010-09-23Fix with auto-complete on insert where list was empty on update when we ↵Guillaume (ioguix) de Rorthais
already have an offset
2010-09-23Fix: on insert form, clicking on a field open the auto-complete list even if ↵Guillaume (ioguix) de Rorthais
ac is disabled
2010-08-26Add feature: Browsing on Foreign Keys, in both pure xhtml and ajaxLeonardo Sápiras
done during GSoC 2010, with mentoring and some help from ioguix.
2010-08-06Fix a query.abord() on a null value on Locks and Process pages when stoping ↵Alexey Baturin
refresh before the first ajax request
2010-07-26On insert page, open the auto-complete list when it gets the focusioguix
2010-06-09Oops, forgot to add the js/database.js file to the commit 6134a181d1910910021dLeonardo Sápiras
2010-06-09Add auto-refresh process and prepared xact using ajaxLeonardo Sápiras
This patch rename the existing js/locks.js as js/database.js and factorise the code to use it from both page.
2010-06-01Fix bad parameter name for database on ajax locks page refresh requestLeonardo Sápiras
2010-05-31Better handling connection error and waiting in locks page behaviour on ajax ↵ioguix
request * re-add error message on page * add a loading icon when a query is running * cancel ajax request when clicking on stop * preload image (start icon don't show up on error without it)
2010-05-30Auto refresh the locks list using ajax. See ajax_refresh conf var.Leonardo Sápiras
Patch by Leonardo Sápiras during the gsoc2010, plus some external edits based on Alexey reviews and mine.
2009-10-01Refactor and improve the auto-complete foreign-key support in the insert formGuillaume (ioguix) de Rorthais
- clean the code - add support for multi-colmn foreign key - show all the table column in the choice list - add pagination in the list to browse prev/next 11 values - use of jquery lib