我需要使用gxt或gwtext为工具栏添加两个Date Date和To Date的日期字段和一个Button。请告知如何执行此操作。
更新
我在gxt中创建一个网格。我需要在Grid的顶部添加一个工具栏。我正在创建工具栏
ToolBar toolBar = new ToolBar();
然后我创建了两个DateFields作为
DateField fromDate=new DateField();
DateField toDate=new DateField();
fromDate.setFieldLabel("From Date");
fromDate.setHeight(23);
fromDate.setWidth(179);
toDate.setFieldLabel("To Date");
toDate.setHeight(23);
toDate.setHeight(179);
但是现在我想将这两个日期字段和一个按钮添加到工具栏中,并且需要在网格面板的顶部添加该工具栏。
请指导。
答案 0 :(得分:0)
您只需添加两个日期字段,如下所示:
toolBar.add(fromDate);
toolbar.add(new SeparatorToolItem());
toolBar.add(toDate);