I'm having a table data which consists of a select box. I want to bind the data using ng-model instead of {{n.triggerOn}.
The below code is working properly when I use<option value="">{{n.triggerOn}}</option>. But I want to bind the data using ng -model <option ng-model="n.triggerOn"></option> 
                <td>
                    <select class="browser-default event trigger">
                        <option value="">{{n.triggerOn}}</option>
                        <option value="all">
                            All Conditions
                        </option>
                        <option value="any">
                            Any Conditions
                        </option>
                    </select>
                </td>
I'm getting the data in JSON format as
             rule: {
                        name:"abc",
                        status:"enable",
                        triggerOn: "all",
                        onSuccess: "on"
                    }
Can anyone help me? I'm new to angularjs. Sorry if it was the silly mistake. Thankyou.