Questions tagged [table-footer]

31 questions
10
votes
5 answers

Display total below HTML/CSS table

I have created some tables which display transactions with the last column being the amount fields. I need to display a total/subtotal just below this column. The problem is my table columns are set to % widths. How can I ensure that the field…
Richard N
  • 895
  • 9
  • 19
  • 36
9
votes
2 answers

UITableView custom UIView duplicates

So, the customer's spec wants the UITableView to have one of it's row present all the time, so the user can interact with this crucial button in any position of the UITableView. Once he scrolls and gets so see the actual Row with the button, the…
Ignacio Oroná
  • 4,371
  • 1
  • 19
  • 25
3
votes
4 answers

When a TABLE spans multiple pages, how can I make the TFOOT on the first page say "continued..."?

In an HTML document built up by a template engine, I have a table of accounting data -- a variable number of lines, with a "grand total" at the bottom. Sometimes this table spills over onto another page. When it does so, it's not obvious to the…
workerjoe
  • 2,421
  • 1
  • 26
  • 49
3
votes
3 answers

Add a Custom Footer at the end of UITableView in Xamarin.iOS

I want to add a footer view to a UITableView that shows a UIProgresIndicator when the user has reached the end of the list and new data will be loaded, or a UILabel when there are no more data to be fetched. I have used the code below, but nothing…
Xhulio
  • 581
  • 7
  • 26
3
votes
1 answer

Use NSLayoutConstraints in iOS6 to make a UITableView's footer, stick to the bottom of the last section and to the bottom of the UIScrollView?

In Interface Builder, when working with a UITableViewController's table footer view, to which I added a blank view, it seems impossible to add constraints directly to it. When I select the footer view of the table, and then select a constraint, all…
Adam Carter
  • 4,741
  • 5
  • 42
  • 103
3
votes
0 answers

stop tableFooterView from animating? - iOS

I have a custom tableFooterView (it's just an 8px high CoreGraphics arc with a gradient) that I set with the tableFooterView property in viewDidLoad rather than viewForFooterInSection. When setting it with viewForFooterInSection, it floated over the…
Zack
  • 187
  • 1
  • 7
2
votes
3 answers

resize Footer in UItableview

I am adding the following codes to add a footer with a button to perform an action. i am not able to re-size the button to the size of the cell. The change in the CGRectMake(0, 0, 300,44) value is not affecting the change of the footer appears can…
rashii
  • 500
  • 7
  • 17
1
vote
1 answer

How to set table column footer to the bottom of the detail band?

I'm using table in jasperreport and I need to add table column footer to the bottom just before "group footer" band like But currently it generates table like here as you can see a lot of spaces between the table (which in detail band) and group…
Daniyar
  • 815
  • 1
  • 9
  • 22
1
vote
0 answers

Jquery Datatables: Append static content as a table Footer only on exported documents

I use Jquery Datatables to generate my grids, and for sure to generate Excel and PDF exported reports, what I need now is to automatically append a generic static content into the footer, that is not related to specific columns, but to the table…
Yazid Erman
  • 1,166
  • 1
  • 13
  • 24
1
vote
2 answers

Repeat HTML table-footer on every printed page

In my body i have a table element (like this below). When i want to print my html page, there should be the and content on every page. The header is working great but the footer is only showed at the last page. I have found many "solutions" for a…
Schauby
  • 172
  • 2
  • 16
0
votes
3 answers

UITableView has blank space below, can't remove

I have a UITableView that displays some data that is read in at runtime and features a button below it that will refresh the list when clicked. All of that works fine, however there is a problem with the layout on the simulator. When I run, there…
joverboard
  • 335
  • 1
  • 3
  • 13
0
votes
1 answer

SWIFT / UIKit Footer text displaying over dynamic tableViewCell

I have a UITableViewcontroller setup with just two cells. The footer text is displaying over the last cell. Strangely I have other controllers with practically the same setup and code and where the footer is showing as expected. I have tried tried…
jat
  • 183
  • 3
  • 14
0
votes
2 answers

keep footer at the bottom of UITableView superview, until tableViewStarts to scroll

I have a screen, that is essential a chat viewController using a viewcontroller with tableView. The design requirements for this screen is to keep the footer docked at the end of the view controller until the tableview needs to start to scroll (at…
RicardoDuarte
  • 728
  • 7
  • 23
0
votes
1 answer

JSPDF Autotable not exporting defined table footer

I have an html table defined based on dynamic data. The table contains a thead, tfoot and tbody. The tfoot is mapped to specific values within my json. However, when using JSPDF Autotable and exporting to PDF the footer is not rendered. I have…
0
votes
1 answer

mPDF - Show table footer (tfoot) only once

I am creating a PDF file from HTML table using Kartik's mPDF extension for Yii2. The table footer is visible in all pages, but I want it to be shown only at the end of the entire table (in the last page). How can I achieve this? I am using GridView…
eggnukes
  • 180
  • 3
  • 20
1
2 3