Jump to content
  • 0

Закрепление области в таблице (аналог excell)


Lexxus
 Share

Question

20 answers to this question

Recommended Posts

  • 0

ну в смысле закрепить в таблице шапку и левый столбец - чтоб при прокрутке таблицы закрепленные шапка и столбец остались на месте, а скролл был по остальной части таблицы. просто есть большая (широкая) таблица, ее просто так не уместить.

так можно в таблицах экселя делать, а вот как в html сделать - не знаю

Link to comment
Share on other sites

  • 0

нет, так не пойдет, видимо изначально не так объяснил.

шапка тоже широкая, так вот надо, чтобы шапка двигалась (скроллом) по горизонтали, но не по вертикали

а левый столбец таблицы чтоб на месте стоял, а данные в таблице двигались также по горизонтали.

Link to comment
Share on other sites

  • 0

так, в принципе, разобрался, спасибо.

теперь очередной вопрос - пытаюсь "скроллировать" эту область не передвижением бегунка, а клавишами на клавиатуре - вправо-влево.

ну ооочень медленно передвигается. каким образом сделать более быстрое передвижение ?

Link to comment
Share on other sites

  • 0

Да способ прикольный

но как быть если высоту ячеек в первой колонке и в основной таблице нельзя фиксировать

контент наполняется автоматически а ширина ячеек фиксированая, следовательно высота будет плавать у ячеек и они не совпадут в первом столбце и основной таблице.

как быть?

Link to comment
Share on other sites

  • 0
контент наполняется автоматически а ширина ячеек фиксированая, следовательно высота будет плавать у ячеек и они не совпадут в первом столбце и основной таблице.

как быть?

Изменять высоту яваскриптом. Это же очевидно.

Link to comment
Share on other sites

  • 0

Поднималась тут как-то тема подобная... Нашел я код для фиксированного заголовка:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Lock Table Head</title>

<style type='text/css'>

/* DIV container around table to constrict the height for IE (IE ignores the tbody height style) */
div.FixedTableHead {
overflow-y:auto;

/* this fixes IE so container width is same as table width */
width: expression( (this.childNodes[0].clientWidth) + 'px' );

/* This fixes IE so the container height is table height plus the height of the header */
height: expression( (parseInt(this.childNodes[0].style.height) + this.childNodes[0].childNodes[1].offsetTop + 1) +'px' );
}

/* Scrollable Content */
.FixedTableHead table tbody {
height:100%;
overflow-x:hidden;
overflow-y:auto;
}

.FixedTableHead table tbody tr {
height: auto;
white-space: nowrap;
}

/* Prevent Mozilla scrollbar from hiding right-most cell content */
.FixedTableHead table tbody tr td:last-child {
padding-right: 20px;
}

/* Fixed Header */
/* In WinIE any element with a position property set to relative and is a child of */
/* an element that has an overflow property set, the relative value translates into fixed. */
/* Ex: parent element DIV with a class of tableContainer has an overflow property set to auto */
.FixedTableHead table thead tr {
position: relative;
height: auto;
/* this fixes IE header jumping bug when mousing over rows in the tbody */
top: expression( this.parentNode.parentNode.parentNode.scrollTop + 'px' );
}

/* Fixed Header */
.FixedTableHead table thead tr td {
border-bottom:1px solid #000000;
background-color:white;
}
</style>

</head>

<body>

Lock Table Headings<br />

<br />
<div class="FixedTableHead">
<table border=1 cellspacing=0 style="height:100px;">
<thead>
<tr><td rowspan=2>Title #1</td><td>Title #2....</td><td>Title #3.......</td><td>#4</td></tr>
<tr><td>Title #2....</td><td>Title #3.......</td><td>#4</td></tr>
</thead>
<tbody>
<tr><td>Item 1...........</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>

<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
<tr><td>Item 1</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>
<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
<tr><td>Item 1</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>

<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
<tr><td>Item 1</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>
<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
<tr><td>Item 1</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>

<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
<tr><td>Item 1</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>
<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
<tr><td>Item 1</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>

<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
<tr><td>Item 1</td><td>Item 2</td><td>Item 3</td><td>Item 4</td></tr>
<tr><td>Itemb5</td><td>Item 6</td><td>Item 7</td><td>Item 8</td></tr>
</tbody>
</table>

</div>

</body>
</html>

В ваших руках дальнейшее расширение решения до создания фиксированного столбца.

Тонкость тут есть одна. Тонкость эту ИЕ не понимает. О заголовке в 2 строки говорю. Если такого не требуется - равновесие соблюдено будет.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy