Announcement

Collapse
No announcement yet.

Count entries and get to full form directly

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Count entries and get to full form directly

    Hey there,

    my customer aksed me two things.
    1. can I add somewhere something where I can show how many entries are listed in the moment.
    2. in Leads -> can I go directy with edit to the full form without having the small form before?

    Like the system and my customers too.

    Best
    Theode

  • #2
    Hi

    1. Yes. You can.

    2. Possible. allowQuickEdit: false
    See https://github.com/espocrm/espocrm/b...record/list.js

    Comment


    • #3
      1. how?
      2. Can't find this folder in EspoCRM 2.4.0. where is it?

      Comment


      • #4
        1. I don't know. It's not so simple task to describe in a post. Why not to investigate and let us know how?
        2. It's available since 2.5
        Last edited by yuri; 10-09-2014, 04:18 PM.

        Comment


        • #5
          There is a count indicator on the Show More button that was added in one of the latest versions. Can you see it on 2.4 ?
          Last edited by yuri; 10-09-2014, 04:18 PM.

          Comment


          • #6
            Yes I had this in 2.4. I will try to put this above the line-

            for point 2. I will to do an update and then see. maybe doing this...
            what does the update affect?

            after updated on localhost to 2.5 in your given adress is already
            Code:
            Espo.define('Views.EmailAccount.Record.List', 'Views.Record.List', function (Dep) {
            
                return Dep.extend({
                
                    allowQuickEdit: false,
            where is the one affecting the lead and contact?

            Comment


            • #7
              1. I put this.
              HTML Code:
              <div style="border:2px solid red;">{{moreCount}}</div>
              in /EspoCRM/client/res/templates/record/list.tpl
              and tried serveral things like,
              Count, count, showCount.

              do you know which is the correct one to show the current number of records?

              Comment


              • #8
                Try {{collection.total}}

                Comment


                • #9
                  ok thank you very much...
                  follow up post for those who need help with thi two...

                  number 1 are solved by the two posts before.

                  number 2 I can solve if I go to
                  /client/src/views/record/list.js
                  there I can change in line 165 allowQuickEdit: true to false.!!!

                  Comment

                  Working...
                  X