Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unbeantwortet
Wie kann ich erreichen, dass eine Rückfrage bzw. die Zuweisung eines Schrittes nur an einen Benutzer, nicht an eine Rolle getätigt werden kann?


Hier ein Skript dazu:

//Listener
function addPopupListener()  {
    jQuery('html').on('DOMNodeInserted', function(e) {
        if (jQuery(e.target).hasClass('jr-step-action-layer')) {
            reshapeControlsForStepActions();
        }
    });
}

//Reshaper
function reshapeControlsForStepActions() {
    jQuery("[for='id_popup_request_jobfunction']").css("display", "none");
    jQuery("[for='id_popup_assign_job']").css("display", "none");
}

Die Funktion addPopupListener im onLoad Eventhandler des Dialogs callen, fertig. Der Radiobutton zur Rollenauswahl wird ausgeblendet.

1
1
Gepostet vor 3 Jahren
Jan Zimmerbeutel
272 × 4 Administrator
673 Ansichten
0 Antworten
vor 3 Jahren
vor 2 Jahren