AppColl Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Groups
    1. Home
    2. Recent
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • D

      API for new matters
      Product Requests • • DohyunA4723 0

      4
      0
      Votes
      4
      Posts
      105
      Views

      gregg_appcoll

      Hi, Priority information can be imported via a separate spreadsheet. Inventor contact information would be imported via a contacts spreadsheet. For help doing this, please contact AppColl support.

    • D

      USPTO Document Generation
      Product Requests • • DohyunA4723 0

      4
      0
      Votes
      4
      Posts
      85
      Views

      gregg_appcoll

      Thanks. We'll take a look at that form - sb0439

    • P

      Hidden Tasks (Different From Transient Tasks)
      Product Requests • • PennyL5902

      2
      0
      Votes
      2
      Posts
      36
      Views

      gregg_appcoll

      Hi Penny,

      Thanks for the feedback. Have you tried filtering tasks by DeadlineType? That way you can include just important external deadlines.

    • A

      AI Wish List
      AI Features • • april_appcoll

      7
      0
      Votes
      7
      Posts
      314
      Views

      gregg_appcoll

      Great feedback, Krista, thanks! We'll add these to the engineering list.

    • A

      AppColl Spring 2026 Updates!
      Announcements • • april_appcoll

      1
      0
      Votes
      1
      Posts
      14
      Views

      No one has replied

    • K

      How to create/save new form fields?
      AI Features • • KristaJ3145

      3
      0
      Votes
      3
      Posts
      109
      Views

      K

      @gregg_appcoll unfortunately, that doesn't work. In fact, it deletes whatever I added, so that I have only the one prompt from you guys.

    • S

      Allow default/own firm log-in without account selection after Tandem setup
      Product Requests • • SadiqA2304

      2
      0
      Votes
      2
      Posts
      53
      Views

      gregg_appcoll

      Hi Sadiq,

      Thanks for the feedback. We will pass this along.

    • A

      QB Payment link/form field for email?
      Billing Module • • AnnM8256

      2
      0
      Votes
      2
      Posts
      77
      Views

      gregg_appcoll

      Hi Ann,

      Try using {Invoice.PaymentLink} in your email. Note this will only work for emails sent from the Invoices page.

      Thanks.

    • P

      Pushing Tasks forward
      Tasks Module • • PamelaG4120

      2
      0
      Votes
      2
      Posts
      96
      Views

      gregg_appcoll

      Hi Pamela,

      The way to do this current is to filter the activity log from the reports module. Search for changed and respondby in the description field.

      3512ab06-b2dd-4795-a054-46093dab9d16-image.png

    • ChristianS2558

      Better Trigger Condition Editing
      Product Requests • • ChristianS2558

      6
      2
      Votes
      6
      Posts
      305
      Views

      gregg_appcoll

      Thanks, Christian!

    • J

      Follow up - Question - how can a user re-configure column titles in a task response reminder email
      General Discussion • • JadaL5358

      2
      0
      Votes
      2
      Posts
      59
      Views

      gregg_appcoll

      Hi Jadal,

      As the built-in task reminder reports cannot be changed, we recommend creating a custom scheduled report for task reminders. That way, you can add any information you need. Please contact AppColl Support if you need more details.

    • J

      IDS Workflow with paralegal and attorney
      Prior Art Module • • JohnG8374

      1
      0
      Votes
      1
      Posts
      72
      Views

      No one has replied

    • ChristianS2558

      Better Form Field Syntax
      Product Requests • • ChristianS2558

      3
      1
      Votes
      3
      Posts
      280
      Views

      gregg_appcoll

      Hi Christian - we have passed this on to enginering for future consideration. We hope this helps.

    • M

      Using the Ser # field for Trademark Conflict Matters
      General Discussion • • MeganM3387

      3
      0
      Votes
      3
      Posts
      111
      Views

      gregg_appcoll

      Hi Megan - can we set up a call to better understand your request? Please email support@appcoll.com and suggest some dates, times and timezone. Thank you.

    • gregg_appcoll

      Welcome to the AI Beta
      AI Features • • gregg_appcoll

      1
      1
      Votes
      1
      Posts
      96
      Views

      No one has replied

    • ChristianS2558

      How to docket rescind non-publication request tasks
      General Discussion • • ChristianS2558

      2
      0
      Votes
      2
      Posts
      125
      Views

      gregg_appcoll

      Thank you very much for sharing!!!

    • D

      QuickBooks Integration and Retainers
      Billing Module • • DarinD8866

      2
      0
      Votes
      2
      Posts
      129
      Views

      gregg_appcoll

      Hi Darin - retainer accounting in QB lacks a standard and can be done in many different ways. It's something we continue to look at. We will let you know if we find a solution.

    • ChristianS2558

      CarryForward Field & Tasks that can modify it
      Product Requests • • ChristianS2558

      1
      0
      Votes
      1
      Posts
      92
      Views

      No one has replied

    • B

      1st RCE, 2nd RCE task types
      Product Requests • • BrandonK6644

      4
      0
      Votes
      4
      Posts
      413
      Views

      B

      @ChristianS2558 Thank you! I'll give this a try. The auto-trigggering option is what I'm looking for!

    • S

      Please fix column formatting
      Product Requests • • SadiqA2304

      4
      2
      Votes
      4
      Posts
      875
      Views

      S

      @support_appcoll Any update on this? We look at these tables every day. For what it's worth, Gemini gave me a workaround where I can create a bookmark that I can click when I view Appcoll to change the page display so that it doesn't statically truncate text, but it has to be clicked each and every time the page is loaded

      6a6e0360-aefc-4d1f-ba15-37e176a222e4-image.png

      javascript:(function(){
      /* Find all elements that have a hover title */
      var cells = document.querySelectorAll('[title]');

      cells.forEach(cell => {
      /* If the title has content and the visible text has '...', swap them! */
      if(cell.title && cell.innerText.includes('...')) {
      cell.innerText = cell.title;
      cell.style.whiteSpace = 'normal';
      cell.style.wordBreak = 'break-word';
      cell.style.height = 'auto';
      cell.style.display = 'block';
      }
      });

      /* Force the rows to expand vertically to accommodate the new text */
      var rows = document.querySelectorAll('tr, .aw-grid-row');
      rows.forEach(row => {
      row.style.height = 'auto';
      });
      })();

    • 1
    • 2
    • 3
    • 4
    • 5
    • 9
    • 10
    • 1 / 10