Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Douglas Robar 3570 posts 4711 karma points MVP ∞ admin c-trib
    Jan 29, 2015 @ 22:24
    Douglas Robar
    3

    ezSearch returns json in Preview for Grid properties

    In umbraco 7.2 you might have a Grid datatype in use. If you search on one of those doctype properties (let's suppose your grid was used on a document type property with an alias of bodyText so the default ezSearch macro will look in it without further configuration) you'll see results like this with ezSearch 1.2:

    Products
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Tibi hoc incredibile, quod beatissimum. Res tota, Torquate, non doctorum hominum, velle post mortem epulis celebrari memoriam sui nominis. In eo enim positum est id, quod dicimus esse…

    Almost halfway now
    { "name": "1 column layout", "sections": [ { "grid": 12, "rows": [ { "name": "Headline", "areas": [ { "grid": 12, "editors": [ …

    There will need to be some way to handle the display of grid data in search results preview.

    (perhaps the core needs a StripJson() function in addition to StripHtml()?)

    cheers, doug.

  • Niels Lynggaard 190 posts 548 karma points
    Jun 05, 2015 @ 11:11
    Niels Lynggaard
    0

    I second that!

  • Prasad 20 posts 71 karma points
    Jun 11, 2015 @ 03:50
    Prasad
    0

    hi Douglas Robar ,

    How to solve this issue , did you got any solution Please help me to solve this.

  • schlubadub 102 posts 617 karma points
    Jun 14, 2015 @ 14:06
    schlubadub
    0

    From what I've found it seems to be a fundamental issue with both the default Umbraco 7.2 installs (which is lame) as well as with ezSearch.

    There are 2 work-arounds:

    1) Use this package instead (NOT ezSearch) https://our.umbraco.org/projects/website-utilities/full-text-search/

    2) Use this library https://gist.github.com/abjerner/bdd89e0788d274ec5a33 and spend a day or two screwing around trying to get all the code working (with or without ezSearch, I don't know)

  • qrayg 24 posts 92 karma points
    Jun 15, 2016 @ 17:00
    qrayg
    0

    Full Text Search is pretty awesome... but it does not support hiding pages from results without manually reindexing the site every time a node is updated/created.

    I've tested in 7.3.8 and no matter what settings I use hidden pages show in results. The add-on says that it uses umbracoSearchHide as the default field (which I use on all my sites too)... hidden pages still show. If I go to the developer tab and manually reindex the hidden pages disappear (which is good). If I modify one of those hidden pages or create a new page with hidden checked the pages show in the results again... until I manually reindex.

    I don't know if it's a bug or if I'm doing something wrong.

    Either way, ezSearch does not work on pages with the Grid Datatype at all. I've had scenarios where it will not show results even if the nodeName matches exactly.

  • Peter Cort Larsen 418 posts 1015 karma points
    Sep 12, 2018 @ 14:46
    Peter Cort Larsen
    0

    Hi,

    You are correct that Full Text Search dosnt pick up on values like umbracoSearchHide or umbracoNaviHide.

    But just this code in App_Code folder, then it works.

    using Umbraco.Core.Models; using Umbraco.Core.Services;

    public class MyApplicationEvents : ApplicationEventHandler { protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext) { ContentService.Saving += ContentServiceSaving; // rasied before the content has been saved. ContentService.Saved += ContentServiceSaving; // raised after the content has been saved. base.ApplicationStarted(umbracoApplication, applicationContext); } private void ContentService_Saving(IContentService contentService, SaveEventArgs

                if (PropAlias ==  "umbracoNaviHide" && CurProp.WasDirty())
                {           
                    ExamineManager.Instance.IndexProviderCollection["FullTextIndexer"].RebuildIndex();
                }
            }
        }
    }
    

    }

  • Douglas Robar 3570 posts 4711 karma points MVP ∞ admin c-trib
    Jun 15, 2015 @ 07:49
    Douglas Robar
    2

    The fundamental problem is caused by storing complex data inside a single document type property. This is especially evident with the grid editor -- a single property may have images, headings, rich text content, and much else. Lucene (and thus examine and ezSearch) are storing the data of each property and you can easily specify which properties are important and which aren't, which should be displayed as a source for preview text, etc.

    There needs to be some way to do the same sort of thing, but for each element inside the grid (or other complex json-based data type), so that the individual elements can be understood/ranked/searched/displayed properly. This doesn't yet exist. The approach shown by abjerner is a good one. If we make complex data types to put data into Umbraco we need some way to get it back out. That may require some effort, at least for now.

    My dream would be that now that Examine is part of the core, the document type UI might be extended to allow flagging the elements in complex data types so that they can be searched, ranked, and displayed properly. Until some sort of UI is available we'll have to handle it manually in code, probably as abjerner suggests.

    Alternatively, you could create a new lucene index to crawl the live site. This also has complications though, and the full-text-search package is an option.

    It seems to me that for "professional" sites (if I can put it that way), some work is going to be needed to make search work well with complex data types. It's a matter of deciding for each project which approach will give the best results for the least work.

    cheers,
    doug.

  • Per Ploug 865 posts 3491 karma points MVP admin
    Jun 15, 2015 @ 08:03
    Per Ploug
    2

    Hey Doug

    Yup agree that examine should have some way to manage complex data in a reasonable way - that might not be perfect in all cases - but we could then ontop of this provide api endpoints, so developers can implement their own "Provide data for search index" format.

    As discussed at the retreat and at codegarden - nested complex content inside property editors is a challenge we want to prioritise as it will become more and more normal to do these things. (JSON all the things)

    So we will find a managed way to handle complex, nested data and a way to index and search this for most cases - and provide a hook for the remaining cases

  • Fergus Davidson 309 posts 588 karma points
    Jul 05, 2016 @ 08:44
    Fergus Davidson
    0

    i have a site which would suit the grid for content population, but i need it to be searchable.

    is there any progress on this? what is the current best practice for searchable grid?

  • Douglas Robar 3570 posts 4711 karma points MVP ∞ admin c-trib
    Jul 05, 2016 @ 09:04
    Douglas Robar
    1

    The core team have done some good work on this. It isn't specific to ezSearch but to the way examine/lucene is indexing grid (and other complex json data types). http://issues.umbraco.org/issue/U4-7295

    Will be released with Umbraco version 7.5.0, but it's already in the beta if you want to try it out.

    cheers,
    doug

  • Fergus Davidson 309 posts 588 karma points
    Jul 05, 2016 @ 09:05
    Fergus Davidson
    0

    Thanks Doug

  • Dan 1285 posts 3917 karma points c-trib
    Nov 15, 2018 @ 13:02
    Dan
    0

    Hey all,

    Sorry to unearth such an old thread, but I wondered if there's anything 'special' required to get grid content to be indexed without JSON these days? I'm using Umbraco 7.12.3 and ezSearch 1.2 to index content generated using DocTypeGridEditor, but the search preview text is coming out with all the JSON.

    I saw the core commit around 7.5 which does some smart-indexing of grid content — perhaps it just doesn't play ball with DocTypeGridEditor?

    If anyone knows how to index DocTypeGridEditor data without having to go through the whole manually-coded gatheringNodeData indexing I'd be most grateful for any pointers.

    Thanks

Please Sign in or register to post replies

Write your reply to:

Draft