Я использую инфрагистический iggrid для отображения сетки с фильтрами вдоль вершины сетки. Мой HTML выглядит так: < /p>
< /code>
и код, который генерирует сетку, выглядит следующим образом: < /p>
$("#grdSearchGrid").igGrid({
dataSource: gridData.Rows,
primaryKey: "igGridPrimaryKey",
autoGenerateColumns: false,
width: "100%",
columns: [
{ headerText: 'igGridPrimaryKey', key: 'igGridPrimaryKey', dataType: 'number', width: '0%' },
{
headerText: "CLIENT ID", key: "ClientID", dataType: "string",
width: "10%",
template: "${ClientID}"
},
{
headerText: "FILE NUMBER", key: "FileNumber", dataType: "string",
width: "10%",
template: "${FileNumber}"
},
{
headerText: "COUNTY", key: "County", dataType: "string",
width: "7%",
template: "${County}"
},
{
headerText: "CLIENT MATTER", key: "ClientMatter", dataType: "string",
width: "7%",
template: "${ClientMatter}"
},
{
headerText: "PETITIONER", key: "Petitioner", dataType: "string",
width: "17%",
template: "${Petitioner}"
},
{
headerText: "DISTRICT", key: "District", dataType: "string",
width: "7%",
template: "${District}"
},
{
headerText: "SECTION", key: "Section", dataType: "string",
width: "7%",
template: "${Section}"
},
{
headerText: "BLOCK", key: "Block", dataType: "string",
width: "7%",
template: "${Block}"
},
{
headerText: "BLOCKEXT", key: "BlockExt", dataType: "string",
width: "7%",
template: "${BlockExt}"
},
{
headerText: "LOT", key: "Lot", dataType: "string",
width: "7%",
template: "${Lot}"
},
{
headerText: "LOTEXT", key: "LotExt", dataType: "string",
width: "7%",
template: "${LotExt}"
},
{
headerText: "CONDO", key: "Condo", dataType: "string",
width: "7%",
template: "${Condo}"
}
],
features: [
{ name: "Filtering", type: "local" },
{ name: "Sorting", type: "local" },
{ name: "Paging", type: "local", pageSize: 100},
{ name: "Selection", mode: "row", multipleSelection: false }
]
});
< /code>
Когда сетка отображается, она создает строку фильтра в верхней части сетки на определенной высоте. И входные текстовые поля каждого столбца создаются с высотой Certian и размером шрифта. Есть ли способ увеличить высоту строки фильтра, а также увеличить высоту ввода и иметь шрифт текста, который типы в вводе увеличился?
Спасибо за помощь.
Подробнее здесь: https://stackoverflow.com/questions/796 ... put-height
Инфрагистический иггрид с фильтрами должен изменить высоту входа фильтра ⇐ CSS
-
- Похожие темы
- Ответы
- Просмотры
- Последнее сообщение
-
-
Инфрагистический иггрид с фильтрами должен изменить высоту входа фильтра
Anonymous » » в форуме Html - 0 Ответы
- 5 Просмотры
-
Последнее сообщение Anonymous
-