Skip to content

Settings and activity

4 results found

  1. 6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

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

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Tim shared this idea  · 
  2. 9 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  General  ·  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
    Tim commented  · 

    the linked fields need to exist in the linked library before import

  3. 8 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

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

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Tim supported this idea  · 
  4. 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  ·  General  ·  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
    Tim commented  · 

    this is done with the below script as a trigger before saving

    code for unique entry

    var myField = entry().field("myField"); // Value of myField
    var entries = lib().entries(); // Array containing all the entries in the library
    var unique = true; // Presuming, initially
    for (var ent = 0; ent < entries.length; ent++) { // Loop through all entries
    if (entries[ent].field("myField") === myField) // If there is ever a match,
    unique = false; // Remember it
    }

    if (!unique) { // If not unique,
    message("myField is not unique. Try again."); // Tell the user
    cancel(); // Disallow the save
    }

    Tim shared this idea  ·