January 13, 2026
Adding items to Launch Pad Widget
Learn how to add items via My Apps Content App
As the SharePoint search indexer does not index content rendered via Javascript on the page, Akumina uses an indexer that will add the rendered page content into the PageData_AK list, which can then be searched. In addition, the contents of the Akumina widgets must be properly indexed by search so that when a content term is found, the result will provide the site user a link to the page(s) on which the content resides, rather than a link to the SharePoint list which holds the content.
NOTE: If you are setting this up for your own custom designed site (versus the Akumina Foundation Site) that uses the Akumina Widgets, the indexing functionality must have been enabled by your developer as one of the “Page Lifecycle” steps (Index Page Data). If you are not seeing the correct data, please verify that the function has been enabled.
On the Root Site Collection, you will create a custom list called “PageData_AK” with the following columns:
For Multilingual sites only, the following additional columns are required:
On the root of the site collection, navigate to the list “PageData_AK”, and verify that there is content in this list. Content gets added to this list by visiting site pages, so if there is no content try navigating around the site and then checking the list again.
On the root of the site collection, navigate to the settings for the list “PageData_AK.
NOTE – It can take up to 24 hours before the Crawl will take effect on this site and return site search results.
It is possible to exclude entire pages from being indexed by the Akumina Framework. This is done via the Search Page Exclusion List property in the configuration. This is a list of the pages which you want to EXCLUDE from the search results. A page listed here will not be crawled by the search engine. Pages are separated by commas and can use a relative URL path. The default search, page not found and logout pages are automatically populated in this field. You can add additional pages now or after the site deploy.
This ca be changed via the following actions:
When changing this value, any existing pages that are now excluded will still be in the PageData_AK list. You must locate the entries by filtering the Title column (which is the URL for the item) and then deleting the entry. Then re-index the PageData_AK list to update the SharePoint search index; see ReIndex List PageData_AK in this article.
The Akumina Foundation Site uses SharePoint for site search. There are 2 places where site search is used:
It is possible to exclude portions (widget instances) on any page from this index process, as this allows for use cases such as the following:
Content exclusion can be done in 2 ways:
For Modern sites, only the css class method can be used to exclude content
For the formatted comment, the widget instance code that is entered into the Content Editor web part must be surrounded with the following tags. When the indexer is run, the content between the tags will be left out.
<!-- aksearchexclude:start -->
<!-- aksearchexclude:end -->
The format must be exactly <!-- aksearchexclude:start -->, ensure the spaces and dashes are correct.
The comment method can also be used directly in the view instead of the web part.
Example:It is possible via a callback to modify or add in additional fields to the search indexer. For example, you have another field, PageCategory, in the PageData_AK list, where you want to capture additional data for the search. Using the function AkSearchExclusionCallback you can modify the data that gets entered into the list.
window.AkSearchExclusionCallback = function(model, currentPage){// find a value in the page
var pageCategory = $('.someclass').val();
// add a new field; this property name should match the list field name exactly
model.PageCategory = pageCategory;
// modify the html to be indexed.
model.Html = model.Html + " some additional text";
// Single Taxonomy Example
// In actual usage, you would draw this from somewhere.
var termValue = new SP.Taxonomy.TaxonomyFieldValue();
termValue.set_label("CORPORATE");
termValue.set_termGuid("1f164abf-d4cc-4d51-8f06-32b7f72177f1");
termValue.set_wssId(-1);
model.PageKeywords = termValue;
return model;
}