&customPackages=`quipComment:body:quip:{core_path}components/quip/model/:quipComment.resource = modResource.id`
Let's break down each part:
className - The class name of the table you want to search. Here, it's QuipComment.
fieldName(s) - A comma-separated list of column names to search. We did 'body', you could also have done 'body,email' or whatever.
packageName - The name of the schema Package to add. This one is called quip.
packagePath - The path to the model/ directory where the package is located.
joinCriteria - The SQL to join the table you want to search and the modResource table. Your table must have some connection to the Resource it's on (otherwise SimpleSearch won't know how to load a URL for it!)
div
- норма. Другое дело, что нужно снабжать эти div соответствующими классами, и не делать так, как в вашем примере выше, в смысле совершенно бессмысленной вложенности. 10 лет это 3 класс
getFile('plan-floor-pop-up.html', function ($html) {
return $('#one', $html);
}).done(function ($html) {
//> Нужный jQuery Selector для вставки в DOM
});
function getFile(link, filter) {
return $.ajax($.extend(true, {}, {
method: 'GET',
dataType: 'text',
dataFilter: function (response) {
var $html = $(response);
if (filter) filter($html);
return $html;
}
}, {
url: link
}));
}