forked from 0x2620/oxjs
make find work in list demo
This commit is contained in:
parent
ba3410eaf3
commit
17f5f7b1e3
2 changed files with 32 additions and 4 deletions
|
|
@ -2024,7 +2024,10 @@ requires
|
|||
function submit() {
|
||||
Ox.print("input submit", that.$input.val())
|
||||
that.$input.trigger("blur");
|
||||
that.triggerEvent("submit", that.$input.val());
|
||||
that.triggerEvent("submit", self.option ? {
|
||||
key: self.option.id,
|
||||
value: that.$input.val()
|
||||
} : that.$input.val());
|
||||
}
|
||||
|
||||
that.height = function(value) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue