Hi,
I have a question about _show method. Debugging the code I found differences between these two versions.
For example:
dhx.ui({
rows:[
{
id:'row_1',
template:"<div onclick='SH()' style='color:blue'>ROW_1</div>",
height:50
},
{
id:'row_2',
template:"<div onclick='inner()''>ROW_2 saddddddddddddddddddddddddddddddddddd</div>",
height:20
},
{
id:'row_3',
template:"<div id='inner'></div>",
height:20
}
]
});
//////////////////////////////////////////////////
});
</script>
If i use 2011 August release, when i do click on row_2, row_3 has the “inner” text and row_2 disappears. However, if i do click on row_1, row_2 appears (well) but the “inner” text too (bad for me ).
This does not happen in the old version.
I have seen that the problem is not to use the method this._resize_childs();
It is possible that doing something wrong but if I include this method, the “inner” text does’nt dissapears now.
Any idea?
Thanks