Thanks stworthy!
I have one more question to this example.
There is a input element in panel. I'm going to have a number of input elements but part of them should be hidden for a while.
So, I put
<style>
.hiddenElement {display:none}
</style>
<p class="hiddenElement"><b>test:</b>
<input id="test" name="tcName" class="easyui-textbox" style="width:100%" disabled></p>
<script>
function displayItemsByClassName(className,value){
var items = document.getElementsByClassName(className);
for (var i=0; i<items.length; i++) items[i].style.display = value;
}
</script>
Using displayItemsByClassName('hiddenElement','inline'); function call I show hidden elements but all of them do not look like if they were not hidden at the beginning. Input width is not 100% and behaves really strange when I resize 'east' panel.
Can you advice what should be done in order to get it fixed?