This is a migrated thread and some comments may be shown as answers.

Data bound submit event not firing on form (fires on test button)

1 Answer 149 Views
Application
This is a migrated thread and some comments may be shown as answers.
CM
Top achievements
Rank 1
CM asked on 07 Jul 2013, 02:37 AM
This one is driving me nuts. I have a form inside of my mobile application such as this:
<form data-bind="submit: submitJbSearch">
        <ul data-role="listview">
            <li>
                <label>Job
                    <input type="text" placeholder="Job Number" data-bind="value: test" />
                </label>
            </li>
            <li>
                <label>Status
                    <select data-bind="options: statuses">
                    </select>
                </label>
            </li>
            <li>
                <label>Customer
                    <input type="text" placeholder="Customer" />
                </label>
            </li>
            <li>
                <label>PO#
                    <input type="text" placeholder="PO#" />
                </label>
            </li>
        </ul>
    </form>
I'm using the knockout data binding of submit here (also tried the events Kendo binding and the event and submit knockout binding) and the function that I'm bound to is not firing when hitting the enter key inside of Chrome or on my iPhone when hitting the 'Go' button on the keyboard.

I also added a button to the bottom of the form for a sanity check to ensure my knockout VM function was firing. Here is the button code:
<a href="#" data-bind="click: submitJbSearch" data-role="button">Submit</a>
And my VM:

I feel as if I'm going insane. I have a feeling that this is something dumb I'm missing. 

1 Answer, 1 is accepted

Sort by
0
Alexander Valchev
Telerik team
answered on 09 Jul 2013, 12:55 PM
Hi Christopher,

I already replied in the other forum thread that you submit on the same subject. If you would like to submit on enter press you should add a input (not Kendo UI button) of type submit.

Regards,
Alexander Valchev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Application
Asked by
CM
Top achievements
Rank 1
Answers by
Alexander Valchev
Telerik team
Share this question
or