input box inside grid cel in 2.0.1 acts different from 2.0.0
Hi,
I had some code that worked in 2.0.0 to place an input box inside a grid cel. It might not be the "right" way to do it, but it seemed to work but now in 2.0.1 what happens is that when you type into the input box you can't see what is typed in, i.e. it's invisible. Even the icon that was set with setControlImage() disappears as soon as you start typing in the box. I'm using this with Firefox 1.5.0.4.
Here's basically how I set it up (below). If there is a more correct way to do this I'd be happy to know about it, otherwise any clues as to why this might be happening?
var grid = new AW.UI.Grid;
grid.setHeaderText(["header"]);
var myInput = new AW.UI.Input;
myInput.setControlText(initialText);
myInput.setControlImage("search");
grid.setCellText([[ myInput.toString() ]]);
grid.setColumnCount(1);
grid.setRowCount(1);
Again, this worked in 2.0.0, and some of it is almost working now, it's just that the cel in question gets "blanked out" once I start typing into it. I can tell by the rest of my setup that the text I type in actually does "stick" in the input box, I just cant see it as I'm typing it or after I've typed it...
Thanks for any help that can be provided
I had some code that worked in 2.0.0 to place an input box inside a grid cel. It might not be the "right" way to do it, but it seemed to work but now in 2.0.1 what happens is that when you type into the input box you can't see what is typed in, i.e. it's invisible. Even the icon that was set with setControlImage() disappears as soon as you start typing in the box. I'm using this with Firefox 1.5.0.4.
Here's basically how I set it up (below). If there is a more correct way to do this I'd be happy to know about it, otherwise any clues as to why this might be happening?
var grid = new AW.UI.Grid;
grid.setHeaderText(["header"]);
var myInput = new AW.UI.Input;
myInput.setControlText(initialText);
myInput.setControlImage("search");
grid.setCellText([[ myInput.toString() ]]);
grid.setColumnCount(1);
grid.setRowCount(1);
Again, this worked in 2.0.0, and some of it is almost working now, it's just that the cel in question gets "blanked out" once I start typing into it. I can tell by the rest of my setup that the text I type in actually does "stick" in the input box, I just cant see it as I'm typing it or after I've typed it...
Thanks for any help that can be provided
at
June 23,