hello again,
in to the point, it is possible to make menu button display dynamically?
for example i have one menubutton below:
<a class="easyui-menubutton" href="javascript:void(0)" id="test" menu="#0001" plain="true"> Test </a>
and i have a div to provide the sub menu
<div id='0001'>
<div> 1 </div>
<div> 2</div>
</div>
so when i hover the menubutton, it will show the sub menu right?, and what i want is when i hover again to submenu with textmenu = 2, it will append new submenu in it self.
so the code it look like this (ex):
<div id='0001'>
<div> 1 </div>
<div>
2
<div> 2.1</div>
<div> 2.2</div>
</div>
</div>
again, it is possible to do this in easyui plugin?
thanks for every answer