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 die sections eines Dialogs nicht mehr einklappbar sind?


Auf jeder section im Dialog liegt ein onclick handler. Das weiterreichen dieses Events kann verhindert werden. Hier ein Beispiel mit jQuery:

Hier ein kleines JavaScript, das diese Aufgabe erledigt (unter Benutzung von jQuery).

$j('.jr-section-title.sectionName').each(function(element) {
            $j(element).stopObserving('click');
 });

https://api.jquery.com/event.stoppropagation/

  
  
Gepostet vor 3 Jahren
Bearbeitet vor 3 Jahren
Jan Zimmerbeutel
272 × 4 Administrator
688 Ansichten
0 Antworten
vor 3 Jahren
vor 3 Jahren