I have a knockout object which contains a single property called created. This property of time Date contains the date of an event. Then in my html form I have two selectbox inputs: the first is for the hours and the second is for the minutes. These allow the user to select the time, then the selected values should be set on the created property. The following is an example of the code of my form:\[code\]<form action="..." method="..."> <select name="hours"> <option value="http://stackoverflow.com/questions/13807693/8">8</option> <option value="http://stackoverflow.com/questions/13807693/9">9</option> ... <option value="http://stackoverflow.com/questions/13807693/22">22</option> </select> <select name="minutes"> <option value="http://stackoverflow.com/questions/13807693/0">0</option> ... <option value="http://stackoverflow.com/questions/13807693/30">30</option> </select> ...</form>\[/code\]It's a really simple form, however I don't understand how I could bind that inputs to the created value and update only the portion of date that belongs to each input. Basically, when I select an option of the first input I should update the date's hours and when I select an option of the second input the date's minutes should be updated.