2015-01-23 13:09:30 +00:00
|
|
|
Htk.Select = new Class
|
|
|
|
({
|
|
|
|
Extends: Htk.Field
|
2015-07-03 05:49:45 +00:00
|
|
|
,Implements: Db.Iterator
|
2015-01-23 13:09:30 +00:00
|
|
|
,Tag: 'htk-combo'
|
|
|
|
,Properties:
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The model associated to this form.
|
|
|
|
**/
|
|
|
|
model:
|
|
|
|
{
|
|
|
|
type: Db.Model
|
|
|
|
,set: function (x)
|
|
|
|
{
|
|
|
|
this.link ({_model: x}, {'status-changed': this.onModelChange});
|
|
|
|
this.onModelChange ();
|
|
|
|
}
|
|
|
|
,get: function ()
|
|
|
|
{
|
|
|
|
return this._model;
|
|
|
|
}
|
2015-07-03 05:49:45 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* The row where the form positioned, has -1 if the row is unselected.
|
|
|
|
**/
|
|
|
|
row:
|
|
|
|
{
|
|
|
|
type: Number
|
|
|
|
,set: function (x)
|
|
|
|
{
|
|
|
|
if (!this._model || this._model.numRows <= x || x < -1)
|
|
|
|
x = -1;
|
|
|
|
if (x == this._row)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._row = x;
|
|
|
|
this.iterChanged ();
|
|
|
|
}
|
|
|
|
,get: function ()
|
|
|
|
{
|
|
|
|
return this._row;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* The number of rows in the form.
|
|
|
|
**/
|
|
|
|
numRows:
|
|
|
|
{
|
|
|
|
type: Number
|
|
|
|
,get: function ()
|
|
|
|
{
|
|
|
|
if (this._model)
|
|
|
|
return this._model.numRows;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Checks if the form data is ready.
|
|
|
|
**/
|
|
|
|
ready:
|
|
|
|
{
|
|
|
|
type: Boolean
|
|
|
|
,get: function ()
|
|
|
|
{
|
|
|
|
return this._ready;
|
|
|
|
}
|
2015-09-28 11:37:31 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Checks if the form data is ready.
|
|
|
|
**/
|
|
|
|
placeholder:
|
|
|
|
{
|
|
|
|
type: String
|
|
|
|
,set: function (x)
|
|
|
|
{
|
|
|
|
this._placeholder = x;
|
|
|
|
|
|
|
|
if (this._placeholderNode)
|
|
|
|
Vn.Node.setText (this._placeholderNode, x);
|
|
|
|
}
|
|
|
|
,get: function ()
|
|
|
|
{
|
|
|
|
return this._placeholder;
|
|
|
|
}
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-03 05:49:45 +00:00
|
|
|
,_row: -1
|
2015-01-23 13:09:30 +00:00
|
|
|
,_model: null
|
|
|
|
,valueColumnIndex: 0
|
|
|
|
,valueColumnName: null
|
|
|
|
,showColumnIndex: 1
|
|
|
|
,showColumnName: null
|
|
|
|
|
|
|
|
,initialize: function (props)
|
|
|
|
{
|
|
|
|
this.parent (props);
|
|
|
|
this.createElement ('select');
|
|
|
|
this.node.addEventListener ('change', this.changed.bind (this));
|
|
|
|
}
|
2015-09-28 14:05:54 +00:00
|
|
|
|
|
|
|
,on: function (id, callback, instance)
|
|
|
|
{
|
|
|
|
switch (id)
|
|
|
|
{
|
|
|
|
case 'click':
|
|
|
|
this.node.addEventListener (id,
|
|
|
|
callback.bind (instance, this));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
this.parent (id, callback, instance);
|
|
|
|
}
|
|
|
|
}
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2015-07-03 05:49:45 +00:00
|
|
|
,setRow: function (row)
|
|
|
|
{
|
|
|
|
this._row = row;
|
|
|
|
this.iterChanged ();
|
|
|
|
}
|
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
,changed: function (event)
|
|
|
|
{
|
|
|
|
var value;
|
|
|
|
var row = this.node.selectedIndex - 1;
|
|
|
|
|
|
|
|
if (row >= 0)
|
|
|
|
value = this._model.getByIndex (row, this.valueColumnIndex);
|
|
|
|
else
|
|
|
|
value = null;
|
|
|
|
|
|
|
|
this.valueChanged (value);
|
2015-07-03 05:49:45 +00:00
|
|
|
this.setRow (row);
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
,addOption: function (value, text)
|
|
|
|
{
|
|
|
|
var option = document.createElement ('option');
|
|
|
|
option.value = value;
|
2015-09-28 11:37:31 +00:00
|
|
|
|
|
|
|
if (text)
|
|
|
|
option.appendChild (document.createTextNode (text));
|
|
|
|
|
|
|
|
this.node.appendChild (option);
|
|
|
|
}
|
|
|
|
|
|
|
|
,addPlaceholder: function (text)
|
|
|
|
{
|
|
|
|
var option = document.createElement ('option');
|
|
|
|
option.disabled = true;
|
|
|
|
option.selected = true;
|
|
|
|
option.value = null;
|
|
|
|
|
|
|
|
if (text)
|
|
|
|
option.appendChild (document.createTextNode (text));
|
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
this.node.appendChild (option);
|
2015-09-28 11:37:31 +00:00
|
|
|
this._placeholderNode = option;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
,onModelChange: function ()
|
|
|
|
{
|
2015-09-28 11:37:31 +00:00
|
|
|
var placeholder = '';
|
2015-01-23 13:09:30 +00:00
|
|
|
var model = this._model;
|
2015-07-03 05:49:45 +00:00
|
|
|
this.signalEmit ('status-changed');
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
Vn.Node.removeChilds (this.node);
|
|
|
|
|
|
|
|
switch (model.status)
|
|
|
|
{
|
|
|
|
case Db.Model.Status.READY:
|
|
|
|
{
|
|
|
|
var data = model.data;
|
2015-09-28 11:37:31 +00:00
|
|
|
this.addPlaceholder (this._placeholder);
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < data.length; i++)
|
|
|
|
this.addOption (data[i][this.showColumnIndex], data[i][1]);
|
|
|
|
|
|
|
|
this.selectOption ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Db.Model.Status.ERROR:
|
2015-09-28 11:37:31 +00:00
|
|
|
placeholder = 'Error';
|
|
|
|
break;
|
2015-07-10 12:30:08 +00:00
|
|
|
case Db.Model.Status.LOADING:
|
2015-09-28 11:37:31 +00:00
|
|
|
placeholder = 'Loading...';
|
2015-07-03 05:49:45 +00:00
|
|
|
default:
|
2015-09-28 11:37:31 +00:00
|
|
|
this.addPlaceholder (_(placeholder));
|
2015-07-03 05:49:45 +00:00
|
|
|
this.setRow (-1);
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
,setEditable: function (editable)
|
|
|
|
{
|
|
|
|
this.node.disabled = !editable;
|
|
|
|
}
|
|
|
|
|
|
|
|
,selectOption: function ()
|
|
|
|
{
|
2015-07-03 05:49:45 +00:00
|
|
|
var row;
|
|
|
|
|
|
|
|
if (this._model && this._model.status == Db.Model.Status.READY)
|
|
|
|
{
|
|
|
|
row = this._model.searchByIndex (this.valueColumnIndex, this._value);
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2015-07-03 05:49:45 +00:00
|
|
|
if (row != -1)
|
|
|
|
this.node.selectedIndex = row + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
row = -1;
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2015-07-03 05:49:45 +00:00
|
|
|
this.setRow (row);
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
,putValue: function (value)
|
|
|
|
{
|
|
|
|
this.selectOption ();
|
|
|
|
}
|
|
|
|
});
|