-
Okay, I am going to change tactics a bit. I have been working on #16790 for a little while but can't get exactly what I need in terms of data displayed in the UI. Rather, it might be better to just display what I have in a related view, but I also need the sum from that view. Thanks to a little help from @ConorWebb96, I have this view... ![]() I need the sum of that Count FormatDate. I have reviewed threads #2999 (and most of those underlying thread), #3071, etc., but I have yet to find exactly what I need. @mjashanks has provided some really good detail on most of those threads and has gotten me really close. I really need to have a view (or some other means of presenting this in a UI) that looks something like this... ![]() If anyone has any ideas, I'd really appreciate it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Have you tried to use a dataprovider? Then use javascript to get the sum. |
Beta Was this translation helpful? Give feedback.
Thank you so much for response, @abadedgar113. This is pretty close to what I am looking for. Although this is a little more complex than what was actually needed. I actually have a separate view that I created that contains that Total Position Count. I did create a new Data Provider and a Repeater that contains this value.
I think simply created a Basic Text that combined a little JavaScript with Handlebars to pull that value in and display it properly.
This is my View:
That short JavaScript looks a little like this:
This is what m…