问题标签 [multiple-columns]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
2728 浏览

html - 具有可变边的三列网页设计

我一直在尝试想出一种方法来创建一个 3 列网页设计,其中中心列具有恒定的宽度并且始终居中。左侧和右侧的列是可变的。这在表格中是微不足道的,但在语义上并不正确。

我无法在所有当前浏览器中正常工作。对此有什么建议吗?

0 投票
8 回答
17426 浏览

oracle - 在多个列中创建主键是否会为所有列生成索引?

如果我在 Oracle 的多个列中设置主键,是否还需要在需要时创建索引?

我相信,当您在列上设置主键时,您会为其编制索引;多列 PK 是否相同?

谢谢

0 投票
1 回答
129 浏览

silverlight - 列表框的分区?

是否可以将列表框划分为几列。如果是,在 Silver light 中使用哪个属性?

0 投票
21 回答
452128 浏览

html - 展开一个 div 以填充剩余的宽度

我想要一个两列的 div 布局,每个布局都可以有可变的宽度,例如

我希望 'view' div 在 'tree' div 填满所需空间后扩展到可用的整个宽度。

目前,我的“视图”div 的大小已调整为它包含的内容如果两个 div 占据整个高度也会很好。


不重复免责声明:

0 投票
19 回答
275965 浏览

linux - 如何将第三列打印到最后一列?

我正在尝试从 DbgView 日志文件中删除前两列(我不感兴趣)。我似乎找不到从第 3 列开始打印到行尾的示例。请注意,每一行都有可变数量的列。

0 投票
3 回答
5931 浏览

xml - XSLT 将列表转换为具有动态确定列的表

我需要这个 XML,

看起来像这样:

当 时columns="4",它应该是这样的:

关于 XSLT 文件应该是什么样子的任何提示?据我所知,它需要某种循环(递归?),但我不确定是否有更优雅的方式。

0 投票
3 回答
3143 浏览

xslt - 如何使用 XSL-FO 将一列的内容溢出到下一列?

我有一个包含三列的表格,我试图让一些长段落从第一列动态流入第二列,然后再流入第三列。目前,当第一列溢出而不是移动到第二列时,该表将在下一页继续,因此我得到几页仅填充一列的数据。我怎样才能解决这个问题?这是我的代码(我在其中编辑了细节),其中 text1-text8 是文本的动态段落:

0 投票
2 回答
6413 浏览

dataset - 具有多列的数据集和主键

如何在具有 3 列主键的 DataSet 中使用 Find 方法?

在 Find parameter 中,我必须填写哪一项?请帮我。谢谢大家!

0 投票
5 回答
14108 浏览

c# - BindingSource.Find 多列

是否可以在多列上使用 BindingSource 的 Find 方法?

例如,假设我有一个显示当前宠物的网格视图;两个组合框,cboPetType 和 cboGender;和一个按钮,用于根据这两个组合框的值在 Pet 表中创建新记录。

现在,假设我只想要每个 PetType/Gender 组合中的一个(Dog - M、Cat - F 等)。因此,如果我的 BindingSource 中有一个 Dog - M 宠物,并且用户从组合框中选择了 Dog 和 M,我想阻止用户通知他们组合已经存在。

过去,我曾使用 BindingSource.Find 方法做类似的事情,但据我所知,这仅适用于搜索一列(即 BindingSource.Find("PetType", cboPetType.SelectedValue);) .

是否可以基于多列搜索绑定源?如果没有,有什么建议可以达到我想要的结果吗?任何意见是极大的赞赏!

0 投票
3 回答
8386 浏览

mysql - mysql keyword search across multiple columns

Various incarnations of this question have been asked here before, but I thought I'd give it another shot.

I had a terrible database layout. A single entity (widget) was split into two tables:

CREATE TABLE widgets (widget_id int(10) NOT NULL auto_increment)

CREATE TABLE widget_data ( widget_id int(10), field ENUM('name','size','color','brand'), data TEXT)

this was less that ideal. if wanted to find widgets of a specific name, color and brand, i had to do a three-way join on the widget_data table. so I converted to the reasonable table type:

CREATE TABLE widgets (widget_id int(10) NOT NULL auto_increment, name VARCHAR(32),size INT(3),color VARCHAR(16), brand VARCHAR(32))

This makes most queries much better. But it makes searching harder. It used to be that if i wanted to search widgets for, say, '%black%', I would just SELECT * FROM widget_data WHERE data LIKE '%black%'. This would give me all instances of widgets that are black in color, or are made by blackwell industries, or whatever. I would even know exactly which field matched, and could show that to my user.

how do I execute a similar search using the new table layout? I could of course do WHERE name LIKE '%black%' OR size LIKE '%black%'... but that seems clunky, and I still don't know which fields matched. I could run a separate query for each column I want to match on, which would give me all matches and how they matched, but that would be a performance hit. any ideas?