:: Forum >>

Combo box disabled for typing

Is there a way to force the user to select a value from the combo popup,
so that we are sure that the user has no typed a text (which does not exist in the combo values for example) in the combo cell?
JeanLuc
Sunday, November 13, 2005
Anybody else has an idea?
JeanLuc
Wednesday, November 23, 2005
I also needed this same functionality, i implemented the following

In the source file _cell.js i added the bolded block of code into the edit function, (needs to check if this is a combo control, i didn't need to check this as i wanted the ability to set any edit control readonly).
this.setTimeout(function()
{
var text=editor.element().getElementsByTagName("input")[0];
[b]if (editor.getAttribute("readonly"))
{
text.readOnly=true;
}
else
{
text.readOnly=false;
}[/b]
text.focus();
text.select();
text=null})


Next in the code that creates the grid i added code to set the combo control readonly

var combo = new AW.UI.Combo; // create the combo control
combo.setAttribute("readonly", function(){return true;}); // set the readonly attribute of the combo
...
grid.setEditorTemplate(combo, 1); // where 1 is the index of the cell

What i found initially when trying to achieve this is that the readonly attribute is set on the container span of the cell, which is of course ignored, so adding this code into the source in the edit function, means that when a cell enters edit mode, then the contained control is set to readonly.
Neil
Tuesday, December 13, 2005
Yeah, this is great, but only works when the user has focused the control...

How would you do this for all combos on a page (in a grid or not), even when not focused?
Lucas
Tuesday, December 13, 2005
Well the code i put in above is for the grid, for this to work with any control then the code that checks and sets the readonly attribute would have to be in the toString() method or whatever method renders the particular control
Neil
Wednesday, December 14, 2005
See related post at:
/javascript.forum.9294.3/dropdown-control-instead-of-combo.html
LostInSpace
Tuesday, February 7, 2006

This topic is archived.


Back to support forum

Forum search