This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Possible bug in dialogbox #67
Labels
Comments
Mark - Declan came up with a short term soluition at least. We added this to the CSS and it seems to be working. .xspmodal { .dijitDialogUnderlayWrapper { |
paulswithers
added a commit
to paulswithers/XPagesExtensionLibrary
that referenced
this issue
Feb 3, 2015
paulswithers
added a commit
to paulswithers/XPagesExtensionLibrary
that referenced
this issue
Jun 14, 2016
…ionLibrary * 'master' of https://github.com/paulswithers/XPagesExtensionLibrary: Adding searchType to NAB picker Amending "match" search option so everything shows if no search value is entered (previously nothing showed) No changes to AbstractDominoViewPickerData Removing bootstrap combobox dialog fix - contributed by Declan Fix for comboboxes in dialogs with bootstrap theme. Thanks David Leedy and Declan Lynch - OpenNTF/Bootstrap4XPages#67 Adding Collection and Map picker data providers Cleaning up - didn't need additional constructor. Problem I was trying to fix with that was not authenticated, so no access to NAB Adding returnNameFormat for NamePicker Cleaning up appendColumnValue Adding JDBC Ext functions and Java code, to avoid capitalisation Only real changes are: DominoNABNamePickerData, starting work on adding returnNameFormat JDBCUtil adding support for not upper-casing column names Conflicts: extlib-des/lwp/product/design/updatesite/com.ibm.xsp.extlib.designer.tooling.updatesite/site.xml extlib/lwp/.project extlib/lwp/product/runtime/eclipse/features/.project extlib/lwp/product/runtime/eclipse/features/org.openntf.extlib.apache.wink.feature/.project extlib/lwp/product/runtime/eclipse/features/org.openntf.extlib.domino.das.feature/.project extlib/lwp/product/runtime/eclipse/features/org.openntf.extlib.feature/.project extlib/lwp/product/runtime/eclipse/features/org.openntf.extlib.relational.feature/.project extlib/lwp/product/runtime/eclipse/features/org.openntf.extlib.wink.feature/.project extlib/lwp/product/runtime/eclipse/plugins/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.domino.calendar.dbstore/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.domino.calendar.store/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.domino.commons/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.domino.das/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.domino.services.calendar/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.domino.services/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.wink/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/src/com/ibm/xsp/extlib/component/picker/data/CollectionValuePickerData.java extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/src/com/ibm/xsp/extlib/component/picker/data/MapValuePickerData.java extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/src/com/ibm/xsp/extlib/config/extlib-picker.xsp-config extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/src/com/ibm/xsp/extlib/config/extlib-picker_en.properties extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.core/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.domino/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.domino/src/com/ibm/xsp/extlib/component/picker/data/AbstractDominoViewPickerData.java extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.domino/src/com/ibm/xsp/extlib/component/picker/data/DominoNABNamePickerData.java extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.domino/src/com/ibm/xsp/extlib/config/extlib-domino-picker.xsp-config extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.domino/src/com/ibm/xsp/extlib/config/raw-extlib-domino-picker.xsp-config extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.mobile/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.oneui/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.relational/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.relational/src/com/ibm/xsp/extlib/relational/javascript/JdbcFunctions.java extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.relational/src/com/ibm/xsp/extlib/relational/util/JdbcUtil.java extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib/.project extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.theme.bootstrap/.project extlib/lwp/product/runtime/eclipse/plugins/org.apache.common.dbcp/.project extlib/lwp/product/runtime/eclipse/plugins/org.apache.james.mime4j/.project extlib/lwp/product/runtime/eclipse/plugins/org.apache.wink/.project extlib/lwp/product/runtime/updatesite/org.openntf.extlib.updatesite/.project
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I think there's an issue with trying to use type ahead inside a dialog box.
Below is a picker that I use a lot. When I use inside a dialog box the choices appear dim and underneath the dialog box.
Thanks for any help or advice.
<xp:inputText
id="inputJobCode"
value="#{viewScope.selectedJob}"
styleClass="scanTarget">
xp:this.attrs
<xp:attr
name="placeholder"
value="Enter Job Code." />
<xp:attr
name="autocorrect"
value="off" />
/xp:this.attrs
xp:this.dojoAttributes
<xp:dojoAttribute
name="autocorrect"
value="off" />
/xp:this.dojoAttributes
<xp:typeAhead
mode="partial"
minChars="1"
valueMarkup="true"
var="searchValue"
valueList="#{javascript:return com.myComanyi.datahub.TypeAhead.jobTypeAhead(searchValue);}">
/xp:typeAhead
<xp:eventHandler
event="onchange"
submit="true"
refreshMode="complete">
xp:this.action/xp:this.action
/xp:eventHandler
/xp:inputText
The text was updated successfully, but these errors were encountered: