Skip to content

Manu Schwendener

My feedback

521 results found

  1. 18 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8270, open for voting now (2023).

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Did not make it through round 2 of NERS 2022.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 7835, round 2 open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 7835, open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 7255, open for voting now.

    An error occurred while saving the comment
  2. 515 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8162, open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    We migrated from Aleph. This is a step backwards.

    Manu Schwendener shared this idea  · 
  3. 68 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8185, open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    > Use the logged in users e-mail address in the From field of the sent e-mail

    indeed

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    @ExLibris: while you're working on it: sending an email via the email icon should trigger a confirmation message.

    https://ideas.exlibrisgroup.com/forums/308176-primo/suggestions/31411543-actions-email-record-function-please-give-indi

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Related:

    NERS 7305, open for voting now.

    'User email included in Send-to Action email'

  4. 7 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8185, open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    We recently did some testing with patrons and this is really expected behaviour.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    +1

  5. 198 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8279, open for voting now (2023).

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 7870, open for voting now

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    And allow patrons to save their preference in the account settings.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Just allow the default sort to be changed to any of the others.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    +1

  6. 11 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    2 comments  ·  Primo » Primo VE  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8220, open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    I agree. That loanable / not loanable can change after logging in is really bad UX and we suppressed showing the label because of this (= set to NOT_DEFINED).

    (See also https://ideas.exlibrisgroup.com/forums/308176-primo/suggestions/36317461-display-item-policy-in-item-record)

  7. 68 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8196, open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Updated code via Laura Percival and Jens Weber in the Primo mailing list, showing author and date.

    => The change may take some time to show up, check again on the next day.

    Javascript:

    app.component('prmGalleryItemAfter', {
    bindings: {
    parentCtrl: '<'
    },
    controller: function () {
    var $ctrl = this;
    $ctrl.$onInit = function () {
    try {
    $ctrl.author = $ctrl.parentCtrl.item.pnx.addata.au[0];
    } catch (e) {
    $ctrl.author = '';
    }
    try {
    $ctrl.date = $ctrl.parentCtrl.item.pnx.display.creationdate[0];
    } catch (e) {
    $ctrl.date = '';
    }
    $ctrl.hasDate = !!$ctrl.date;
    $ctrl.hasAuthor = !!$ctrl.author;
    };
    },
    template: `
    <div ng-if="$ctrl.hasDate">{{$ctrl.date}}</div>
    <div ng-if="$ctrl.hasAuthor">{{$ctrl.author}}</div>
    `,
    });

    ---

    CSS:

    prm-gallery-item-after {
    padding: 20px 15px;
    display: block;
    margin-top: -30px;
    }

    prm-gallery-item-after div {
    margin-bottom: -40px;
    margin-top: -20px;
    }

    .is-grid-view prm-gallery-item .collection-element {
    padding: 15px;
    }

    prm-gallery-item .collection-element .item-title {
    padding-bottom: 30px;
    }

    An error occurred while saving the comment
    Manu Schwendener commented  · 
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    For author, there is a workaround code for CSS and js, via Primo mailing list in September 2021

    CSS

    /* Galleries: Display Author in box*/
    prm-gallery-item-after {
    padding: 20px 15px;
    display: block;
    margin-top: -30px;}

    prm-gallery-item-after div {margin-top: -30px;}
    .is-grid-view prm-gallery-item .collection-element {
    background: #fff;
    font-size: 0.9em ;
    padding: 15px;}

    prm-gallery-item .collection-element .item-title {
    background: none;
    padding-top: 10px;
    padding-bottom: 30px;
    font-size: 1.1em ;
    }

    prm-gallery-item .collection-element .resource-type {
    color: #685E5E ;
    background: none;}
    /* Galleries: Display Author in box END */

    ---

    js

    /* Galleries: Display Author */
    app.component('prmGalleryItemAfter', {
    bindings: {
    parentCtrl: '<'
    },
    controller: function() {
    var vm = this;
    vm.showAuthor = function() {
    vm.author = vm.parentCtrl.item.pnx.addata.au[0] || '';
    if (vm.author !== '') {
    return true;
    }
    };
    },
    template: '<div ng-if="$ctrl.showAuthor();">{{$ctrl.author}}</div>'
    });
    /* Galleries: Display Author END */

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    +1

  8. 305 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    8 comments  ·  Primo » Primo VE  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 8160, open for voting now.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    > basic requirement

    I completely agree.

    The only reason that I didn't post this as a NERS entry this year is that I never would have expected Ex Libris to consider https://ideas.exlibrisgroup.com/forums/308176-primo/suggestions/42926031-number-and-sort-the-volumes-in-multi-volume-works as completed with alphabetical sorting.

  9. 44 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 6196, open for voting now (2023).

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    The screenshot is important to understand what this is about.

    NERS 6196, open for voting now.

  10. 40 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    > so that I can define my preferred pickup location

    Or the pickup location I last used gets saved, as is the case in Rapido.

    = There's no need for a separate "pick your favorite pickup library" function, just copy what Rapido already is doing.

    ---

    Edit 4.7.2023: the feature broke in Rapido with the June release, target fix January 2024

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    +1

  11. 141 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Screenshot courtesy of Nancy Babb: on the roadmap for 2023H2

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Additional case in consortia:
    We'd like to include titles from other IZs in our collections. But the titles should not show up as part of our IZ in a normal search, because that would be misleading.
    Clicking on the title in the discovery collection should show the title in the search profile it is part of (= in our case the search profile showing the NZ).

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    +1

  12. 4 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    2 comments  ·  Primo » Primo VE  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    > would be able to select their own campus, but then receive an error message

    While this also sounds frustrating for the users, I agree that in these cases the UX needs work.

    We have a similar problem with books in the open stacks: you can place a request to pickt them up in _other_ libraries, but not in the owning library, because here you can (and have to) fetch it yourself.

  13. 2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. 98 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    This is also relevant for the 'New titles' facet.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    +1

  15. 181 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. 1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Primo » Primo VE  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Hm. I'm sure I added the link to 'exact and only' here at least twice already. What is happening?

    https://ideas.exlibrisgroup.com/forums/308176-primo/suggestions/18579556-add-a-true-exact-search-to-advanced-search-type

  17. 66 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    +1

  18. 3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 
  19. 150 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    It will be possible to maintain ongoing link between the role profile and the user record, so that you can use the template to assign a predefined set of roles to a user, and any further changes to templates will automatically affect the linked users' allowed roles.


    Note - multiple profiles may be assigned to a user.


    It will be possible to view  the list of profiles an account is liked to for inheriting its roles, and to remove/add more profiles.

    An error occurred while saving the comment An error occurred while saving the comment
    Manu Schwendener commented  · 

    > Planned

    Thank you, Moshe, this is great news

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    NERS 7678, open for voting now

    "Staff user accounts -- allow proxies and duplication"

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    If you can vote in NERS, please consider voting for 7240

    "Staff user accounts – allow proxies and duplication"

    It's not what Sarah Butash asked for, but it would make working with staff user accounts much easier.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Did not make it to round 2 in NERS; 138 votes, threshold was 250.

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    [for those who can vote in NERS: 6402, open for voting at the moment]

    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Yes!

    In Aleph (from where we'll migrate to Alma) we rely heavily on proxies for staff users (z66). When you update the proxy in Aleph, all staff users linked to that proxy are updated, too.

  20. 21 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Manu Schwendener commented  · 

    Salut Floriane

    Maybe I misunderstand, but you can leave the field "library" empty.

    This allows you to show the collections to the whole IZ. https://basel.swisscovery.org/discovery/collectionDiscovery?vid=41SLSP_UBS:live

    The consequence is that the people adding titles to the collection need the role "Collection Inventory Operator" for the whole IZ, not just for their library.


    (Sorry, won't automatically see if you reply here)

1 2 5 7 9 26 27

Feedback and Knowledge Base