0
votes
1answer
29 views

Correct HTML5 site header

I just read about the header tag not being equal to section. The author says, header should not be used outside a section, but he doesn't tell us, how the sites header and footer have to look like. ...
0
votes
2answers
360 views

iOS add constraint to table section header

I am working with a grouped table, and am customizing the header in the sections using tableView: viewForHeaderInSection: method and setting the height using tableView: heightForHeaderInSection:. I ...
0
votes
1answer
129 views

Resize UICollectionElementKindSectionHeader

I'm trying to resize a UICollectionElementKindSectionHeader but a didn't find any way. Can anyone help me please? Thanks!!
1
vote
1answer
410 views

UICollectionView header position in horizontal scroll direction mode with flow layout

I have ios UICollectionView with Flow layout with horizontal scroll direction. In this situation typical header position is on the left side of cells. I want to make header on the top of section ...
0
votes
0answers
161 views

newView, bindView on CursorAdapter, need position to place section's header

I'm facing a stupid issue while implementing a CursorAdapter. Basically, i just want to have section's header on the list. I'm using an AlphabetIndexer to split my cursor into sections and it ...
1
vote
0answers
322 views

xcode json tableview sections

I am new to xcode and I seem to be stuck at trying to create a tableview with sections. My code below creates the header however I cannot seem to display the rows that belong to the section. I'm sure ...
2
votes
1answer
337 views

Monotouch - How do I style the Header at the beginning of a grouped section?

I am a total Monotouch n00bie and i'm really struggling to find out how to change the font and rowsize of a grouped section header. I am creating my IUTableViewSource and attaching it to my ...
2
votes
0answers
901 views

iOS tableview section header won't stay on top of view

As the title implies, the section header I have in my table, when scrolling won't stay on top. It was working before but for some reason, it stopped. I can't figure out why for the life of me. Any ...
0
votes
0answers
219 views

viewForHeaderInSection for UITableView shows wrong view

I'm trying to load a different UIView (from an XIB) for different sections of a UITableView. I have an UIView setup as an instance variable for section 0 and one for section 1. I also have methods ...
0
votes
0answers
51 views

Remove numbering from sections/subsections but keep them in ToC?

I am writing a PDF where it is convinient for me to have a ToC where I might have to mix numbered and non-numbered section headers but I am struggling with finding how to do this automatically (eg ...
0
votes
1answer
143 views

Custom Tableview section header is all black

I have a tableview section header, for which I'd like to add a custom view. When the tableview loads, it appears black, shown here: http://postimage.org/image/luluolc57/ When I start scrolling, and ...
0
votes
0answers
80 views

Same code but different result with Xcode 3.2.6 and Xcode 4

Compiling with Xcode 3.26 and SDK 4.3 and I had a table with a search field and below that a section header which came into view after a search. To indicate it was a search table. The header was green ...
0
votes
0answers
354 views

How can I update/reload/refresh a section header view in a UITableView?

I'm willing to change a specific header view of my UITableView when I click a row. I've read all posts about it yet. I tried "reloadData", "setNeedDisplay", "reloadSections:withRowAnimation:", and ...
1
vote
1answer
394 views

iOS – Grouped UITableView sticky header/footer sections

Is it possible to have sticky header/footer sections for a UITableView that is grouped? If not, is there an alternative way of achieving this?
0
votes
0answers
215 views

UIViewContentModeRedraw setNeedsDisplay working but getting wrong bounds when rotating

I have a problem with one of my Section Headerviews. I made a customer section header view for my table. The header view code is as follow : -(id)initWithFrame:(CGRect)frame title:(NSString*)title ...
0
votes
1answer
388 views

Unrecognized Selector - Custom UITableView Section Headers

I'm trying to create a custom UIView (.h .m & .xib) for a UITableView Section Header. The aim is that I can pass the Heading title using the following line: sectionHeaderView.sectionLabel.text = ...
0
votes
2answers
615 views

How to set background color for specific section header?

I have a TableView with 10 sections that are loaded from a plist file and I have switches with which some of the sections can be turned off. I need to set a specific background color for each section ...
0
votes
1answer
9k views

Android Listview with sections

Hi I am having an issue trying to understand how sectioned ListViews work. I had it working into a normal list view. but now I want to add sections to my list. How to I ad a section header in. ...
0
votes
1answer
459 views

HTML5 section headings

Say I have a section of content on my page, i.e.: Heading 1 Some content What would be the best way to represent this using HTML5? <section> <header> <h1>Heading ...
0
votes
2answers
270 views

HTML 5 - Section - Div - Header - can a div be placed between section and header?

I have this section and, for layout proposes I would need two divs inside that section. Of of them, should wrap the header part of section. So: <section> <div id="layout-stuff"> ...
5
votes
3answers
12k views

How to draw a section header in android listview just like the ios's UITableview?

I want to draw some section headers in android listview just like the Contacts app did. When the listview was dragged the section headers will move flatly,thanks.
0
votes
1answer
622 views

uitableview: nested section headers

Im trying to implement a uitableview with the following structure: section group 0 section 0 cell 0 cell 1 cell 2 section 1 cell 0 cell 1 cell 2 section group 1 section 0 cell 0 cell 1 cell ...
1
vote
1answer
287 views

Table view section headers not updating

ViewA lists data grouped by section, and when you select a row you go to ViewB. After potentially editing several fields, you use the back button to go back to ViewA. If the attribute used as the ...
0
votes
1answer
643 views

iOS UITableView - UISlider in only section header is reset when scrolling

I have a UISlider in a section header. Sliding the slider will change the current table cell, as a sort of "speed scroll" mechanism. It works great, BUT when it hits the item in the middle of the ...
2
votes
1answer
3k views

iphone: put uiimage in tableview section header, stretch problem

hey people, I put an UIImage into the section header of my UITableVIew. Therefor I used some code I found on the internet: - (UIView *)tableView:(UITableView *)tableView ...
0
votes
1answer
402 views

What is the color in hexadecimal used in the table header section?

After customizing my header I would like to know the hex color of the text by default assigned to the header sections Thank you
0
votes
3answers
2k views

How do I change the size of my header section?

I'd like to change the size of the header of my section and I do not really know what to do. Can you help me please? Here is the code: // create tab group var tabGroup = ...
1
vote
3answers
252 views

html section or div?

My website has a profile page. I have something like: <h1>Foo bar profile</h1> <div> <h2>Address</h2> <p>Foo bar street, 55</p> <p>Foo city</p> ...
122
votes
5answers
75k views

HTML5 best practices; section/header/aside/article tags

There is enough information about HTML5 on the web(also on stackoverflow), but now I'm curious about the "best practice". Tags like section / headers / article are new, and everyone has different ...
1
vote
1answer
260 views

Keep all section headers visible in a table view

I've build a table view with a number of section around 5 or 6. I define my table view style as "plain". So at any time it keep one header on the top. But I would like to keep all of my header ...
0
votes
1answer
1k views

iPhone Table View Section Headers

I have a TableView with custom cells. I need to be able to put 2 section headers called Instruction and Reference. I need 7 rows for the Instruction section and 3 rows for the Reference section. ...
3
votes
2answers
6k views

Changing UITableView's section header/footer title without reloading the whole table view

Is there any way to reload the section header/footer of a table view without calling [tableView reloadData];? In fact, I want to show the number of cells in a table view's section in its section ...
3
votes
2answers
2k views

How to draw a section header in Android listview just like the Contacts app did ?

I know how to display it in the screen, but when I use the Contacts app in my phone, I found its alphabet section header can be fixed in the top when I scroll the list. How to make that happen?
2
votes
3answers
4k views

ListView with section header problem

Hi I'm adding section headers for my listView, there are few methods on the web. Since I'm using simpleCursorAdapter to manage my listView, I adopted phil bogle's method. ...
0
votes
1answer
1k views

Objective-C Section Headers not appearing correctly?

I have a Station object defined as: @interface RFStation : NSObject { NSString *stationID; NSString *callsign; NSString *logo; @end I also have an NSMutableArray called 'StationList' ...
2
votes
0answers
1k views

Android ListViews and Dynamic Section Headers

I have an Array that I pass to a CustomAdapter for a ListView. The array has items that are already sorted. Something like: [{"stuff":[{"stuff_id": "1", "value":"test123"}, {"stuff_id": "1", ...
0
votes
1answer
215 views

best way to show a image near my header section of tableview with header title

I have to show a image near my header section of tableview with header title.Can anybody suggest the best way of doing it? Thanks in advance for your suggestion. Regards, sathish
0
votes
1answer
2k views

iPhone: add an image to grouped uitableview section header?

I know I can change the way the section header looks by implementing viewForHeaderInSection: The thing is I want to add a UIImageView to the right of the header text without modifying the look of ...
3
votes
2answers
1k views

How do i change color of letters of sectionIndexTitlesForTableView? is it possible in iphone?

I have to change the color of sectionIdexTitle for table view??how to do this? any one knows it ??please tell me??
11
votes
1answer
13k views

UITableView section header height for non-grouped table

Greetings! I know that UITableView sectionHeaderHeight is only used for grouped tables, but I'll ask anyway (in case there's some way to do this that isn't obvious) ... Is there a way to change the ...