This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
dev-zone
Hi,
i was using filter fields in the backend and found a small issue. When filter fields AJAX response comes through the modal window gets closed and after reviewing the response i fixed the issue using this small snippet.
$(document).on('ajaxPromise', function (event, context) { // filter fields in popup fix which close the popup on dependant field if (context.handler.search('::onRefresh')) { context.options.evalSuccess = null; // } })i put this script inside my controllers view file. Thank You OctoberCMS for making our life easier
1-1 of 1