EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: WizPS on February 17, 2020, 09:10:13 AM



Title: Adding button to propertygrid
Post by: WizPS on February 17, 2020, 09:10:13 AM
Is there a simple way to add a button to the lower left part of the propertygrid table as described in attached picture? If the dialog plugin could be embedded as a page component like layout, it could have been achieved that way I think. But it only opens in  window.

How can I add the button dynamically on top aligning right? Is there any other way recomended?


Title: Re: Adding button to propertygrid
Post by: jarry on February 18, 2020, 01:25:41 AM
Please use the panel to wrap the propertygrid and the button. The code looks like this.
Code:
<div class="easyui-panel" style="position:relative;width:500px;">
<table class="easyui-propertygrid"></table>
<a href="javascript:;" class="easyui-linkbutton" style="width:100px;">Ok</a>
</div>