通过bean按Primefaces中的列ID对DataTable中的列进行排序

时间:2018-09-13 20:02:49

标签: java jsf primefaces

是否可以在bean中的特定数据表上设置默认的排序列?我正在使用动态数据表,但无法在xhtml文件中执行此操作。我需要从数据库中获取此列名(例如tab:tabDataList:j_idt39:1),当我打开此页面时,应选择此列。

enter image description here

我试图用所有的东西。

public SettingsApp() {
    setBounds(0, 0, 584, 462);
    setLayout(null);

    JPanel panel = new JPanel();
    panel.setBounds(0, 0, 450, 300);
    add(panel);
    panel.setLayout(null);

    JLabel lblSettings = new JLabel("SETTINGS APP V2");
    lblSettings.setBounds(107, 11, 249, 29);
    lblSettings.setFont(new Font("Tahoma", Font.BOLD | Font.ITALIC, 19));
    panel.add(lblSettings);

}

public JPanel run(Locale l) {
    return this;
}

0 个答案:

没有答案