how to modify _xspAppSearchSubmit on Application Layout Xpages -
im trying modify search parameter in application layout search, accept dot(.) literal part of search item filtering view..
for example...
"mr. smith" not show in view, but
"mr.smith" will..
digging deeper google debugger, found function _xspappsearchsubmit
can change code encodeuricomponent(val)
encodeuricomponent(val.replace(/s+\.s+/g,'')
worked when tested on console. s+
remove spaces, \.
keep dot literal.
but somehow, cannot find function in applicationlayout1
custom control, , listed 1 event - onitemclick
. possible add "onchange" event?
there's option , optionparam property there not sure how apply this.
im newbie xpage , control, can me work around this, i've checked other sites doesn't explain kind of issue. i've checked encodeuricomponent
functionality, still interprets dot command. learned dot works *
wildcard.
the application layout ccbaseui
"one ui", , setup basic application configuration.
Comments
Post a Comment