Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Updated the renderer for BS 3.0 #16

Merged
merged 1 commit into from
Dec 23, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div style="max-width:none; margin-left: inherit;" class="xspmodal dijitDialog lotusDialogBorder" tabindex="-1" waiRole="dialog" waiState="labelledby-${id}_title">
<div style="max-width:none; margin-left: inherit;" class="xspmodal lotusDialogBorder" tabindex="-1" waiRole="dialog" waiState="labelledby-${id}_title">
<div class="xspmodal-dialog">
<div class="modal-content">
<div dojoAttachPoint="titleBar" class="modal-header">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ protected void writeSearchBar(FacesContext context, ResponseWriter w, UIApplicat

protected void writeSearchOptions(FacesContext context, ResponseWriter w, UIApplicationLayout c, BasicApplicationConfigurationImpl configuration, SearchBar searchBar, ITree tree) throws IOException {
w.startElement("div", c); // $NON-NLS-1$
w.writeAttribute("class","input-group-btn",null); // $NON-NLS-1$
//w.writeAttribute("class","input-group-btn",null); // $NON-NLS-1$
newLine(w);

AbstractTreeRenderer renderer = getSearchOptionsRenderer(context, w, c, configuration, searchBar);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public String getStyle() {

@Override
public String getStyleClass() {
return "search-options applayout-search-options";
return "form-control search-options applayout-search-options";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,41 @@
<value>form-control</value>
</property>
</control>

<!-- Combo Box -->
<control>
<name>ComboBox</name>
<property mode="concat">
<name>styleClass</name>
<value>form-control</value>
</property>
</control>

<!-- List Box -->
<control>
<name>ListBox</name>
<property mode="concat">
<name>styleClass</name>
<value>form-control</value>
</property>
</control>

<!-- Check Box -->
<control>
<name>CheckBox</name>
<property mode="concat">
<name>styleClass</name>
<value>form-control</value>
</property>
</control>

<!-- Radio Button -->
<control>
<name>RadioButton</name>
<property mode="concat">
<name>styleClass</name>
<value>form-control</value>
</property>
</control>

</theme>