Giter Club home page Giter Club logo

Comments (3)

rtripault avatar rtripault commented on July 24, 2024 1

Sorry it took us some time to react on that one... another option (which we will ship ASAP) would be to edit the "searchResource" processor with something like (beware, that also ships compatibility changes to make the component work on Revo 3

    public function prepareQueryBeforeCount(xPDOQuery $c)
    {
        $c->leftJoin(modContext::class, 'Context');

        $query = $this->getProperty('query');
        $current = $this->getProperty('current');
        if ($current) {
            $c->where([
                'AND:id:!=' => $current,
            ]);
        }
        if (!empty($query)) {
            if (is_numeric($query)) {
                $c->where([
                    'id' => $query,
                ]);

                return $c;
            }


            $c->where([
                'pagetitle:LIKE' => "%$query%",
                'OR:longtitle:LIKE' => "%$query%",
                'OR:uri:LIKE' => "%$query%",
            ]);
        }

        return $c;
    }

This should allow entering the ID of the direct resource, as well as prevent doing a LIKE search on the resource ID (which does not feel like a valuable addition).

Hoping that helps

from copycontent.

neoneddy avatar neoneddy commented on July 24, 2024

+1

from copycontent.

neoneddy avatar neoneddy commented on July 24, 2024

@frischnetz I found a solution. In looking at the code that generates the pick list, the ID is a search factor, but doesn't work great. For our purposes having it work only with ID, was fine, in fact preferred.

So what I did was look at the JS connector assets/components/copycontent/js/copycontent.js

Line 53
xtype: 'copycontent-combo-resource'
To
xtype: 'textfield'
Clear cache and try again. Worked great for us.

from copycontent.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.