0

BUG: Auxiliary Headers don't render in iPhone.

asked 2010-06-01 08:29:54 +0800

dastultz gravatar image dastultz
797 9

Hello, I'm using 3.6.3 but find this problem manifests in the 5.0 live demo. Auxiliary headers don't render on iPhone 3.1.3 (Safari). Here's a simple grid:

<?xml version="1.0" encoding="utf-8"?>
<window>
	<vbox>
		<grid fixedLayout="true">
			<auxhead>
				<auxheader label="My Computers" colspan="5"></auxheader>
			</auxhead>
			<columns>
				<column label="Brand" width="100px" />
				<column label="Processor Type" width="150px" />
				<column label="Memory (RAM)" width="120px" />
				<column label="Price" width="100px" />
				<column label="Hard Drive Capacity" width="150px" />
			</columns>
			<rows>
				<row>
					<label value="Dell E4500 2.2GHz" />
					<label value="Intel Core 2 Duo" />
					<label value="2GB RAM" />
					<label value="$261.00" style="color:green" />
					<label value="500GB" />
				</row>
				<row>
					<label value="XP-Pro Slim Dell-Inspiron-530-s" />
					<label value="Intel Core 2 Duo" />
					<label value="2GB RAM" />
					<label value="$498.93" style="color:green" />
					<label value="500GB" />
				</row>
			</rows>
		</grid>
	</vbox>
</window>

But as I said, the online demo behaves the same way. I'm hoping this can be fixed with CSS. If anyone has a solution to this, please post.

Thanks.

/Daryl

delete flag offensive retag edit

7 Replies

Sort by ยป oldest newest

answered 2010-06-02 07:09:10 +0800

dastultz gravatar image dastultz
797 9

Filed bug:

https://sourceforge.net/tracker/?func=detail&aid=3010419&group_id=152762&atid=785191

/Daryl

link publish delete flag offensive edit

answered 2010-06-04 05:41:59 +0800

jimmyshiau gravatar image jimmyshiau
4921 5
http://www.zkoss.org/ ZK Team

Hi dastultz
OK we will fix it

link publish delete flag offensive edit

answered 2010-06-08 11:54:30 +0800

dastultz gravatar image dastultz
797 9

Thanks, Jimmy.

Any idea when this might get fixed and in what version (3.6 or only 5.0)?

/Daryl

link publish delete flag offensive edit

answered 2010-06-10 23:47:14 +0800

jimmyshiau gravatar image jimmyshiau
4921 5
http://www.zkoss.org/ ZK Team

We have fixed it in ZK 5.0.3

link publish delete flag offensive edit

answered 2010-06-11 07:52:14 +0800

dastultz gravatar image dastultz
797 9

Thanks Jimmy,

Can you give me any direction for getting this fix into 3.6? Which dsp file I need to look at, maybe?

Thanks.

link publish delete flag offensive edit

answered 2010-06-11 22:46:42 +0800

jimmyshiau gravatar image jimmyshiau
4921 5
http://www.zkoss.org/ ZK Team

OK
It cause by CSS

please modify the file in zul.jar\web\zul\css\cmps\grid.css.dsp

div.z-grid-header, div.z-grid-header tr, div.z-grid-footer {
	border: 0; overflow: hidden; width: 100%;
}


to
div.z-grid-header, div.z-grid-header tr, div.z-grid-footer {
	border: 0; width: 100%;
}
div.z-grid-header, div.z-grid-footer {
	overflow: hidden;
}


and the listbox and the tree are need to fix as grid

link publish delete flag offensive edit

answered 2010-06-16 09:54:42 +0800

dastultz gravatar image dastultz
797 9

Thanks Jimmy,

Rather than modify the jar file, I added this to my Safari CSS file:

div.z-grid-header tr, div.z-listbox-header tr, div.z-tree-header tr {
	overflow: visible;
}

/Daryl

link publish delete flag offensive edit
Your reply
Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Question tools

Follow

RSS

Stats

Asked: 2010-06-01 08:29:54 +0800

Seen: 376 times

Last updated: Jun 16 '10

Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More