Fix for search functionalities button. Also changed the header of the sub pages to h2
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/admin/vre-definition@129004 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
fa15d2cd04
commit
69ec6d3ff7
|
@ -5,6 +5,6 @@
|
|||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
|
||||
<property name="java-output-path" value="/vre-definition-new/target/vre-definition-new-1.0.0-SNAPSHOT/WEB-INF/classes"/>
|
||||
<property name="context-root" value="vre-definition"/>
|
||||
<property name="context-root" value="vre-definition-new"/>
|
||||
</wb-module>
|
||||
</project-modules>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<g:HTMLPanel>
|
||||
<div
|
||||
style="padding-bottom: 9px!important; margin: 20px 0 30px!important; border-bottom: 1px solid #eee!important;">
|
||||
<h1 ui:field="mainText" style="display:inline; margin-left: 40px; margin-right: 20px;">
|
||||
</h1>
|
||||
<h2 ui:field="mainText" style="display:inline; margin-left: 40px; margin-right: 20px;">
|
||||
</h2>
|
||||
<b:Popover ui:field="popoverInfo">
|
||||
<b:Icon type="INFO_SIGN" size="TWO_TIMES" ui:field="icon"/>
|
||||
</b:Popover>
|
||||
|
|
|
@ -111,7 +111,6 @@ public class ResourcesTable extends Composite{
|
|||
searchBox.addKeyDownHandler(new KeyDownHandler() {
|
||||
|
||||
public void onKeyDown(KeyDownEvent event) {
|
||||
event.preventDefault();
|
||||
searchOnKeyDown(event);
|
||||
}
|
||||
});
|
||||
|
@ -449,6 +448,9 @@ public class ResourcesTable extends Composite{
|
|||
table.setVisibleRange(new Range(0, MAX_ROW_TO_SHOW_BEGINNING));
|
||||
table.setRowCount(dataProvider.getList().size(), true);
|
||||
dataProvider.refresh();
|
||||
|
||||
// reset the button style
|
||||
searchButton.setIcon(IconType.SEARCH);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<g:HTMLPanel>
|
||||
<div
|
||||
style="padding-bottom: 9px!important; margin: 20px 0 30px!important; border-bottom: 1px solid #eee!important;">
|
||||
<h1 style="display:inline; margin-left: 40px; margin-right: 40px;"> VRE Information </h1>
|
||||
<h2 style="display:inline; margin-left: 40px; margin-right: 40px;"> VRE Information </h2>
|
||||
</div>
|
||||
<b:Row>
|
||||
<b:Form type="HORIZONTAL" ui:field="vreInformationForm">
|
||||
|
|
Loading…
Reference in New Issue