EasyUI Forum

General Category => General Discussion => Topic started by: Fabrice on August 31, 2014, 06:32:47 AM



Title: Propertygrid enhancement
Post by: Fabrice on August 31, 2014, 06:32:47 AM
Do you think it's possible to have a contextual description (helper) of property at footer of propertygrid like .net propertygrid?


Title: Re: Propertygrid enhancement
Post by: Fabrice on September 06, 2014, 12:32:12 AM
not idea about a tooltip help at bottom of propertygrid, can you tell me if it will be possible in future version?
in same idea is the possibility of a footbar with customs buttons in place of pagination bar?


Title: Re: Propertygrid enhancement
Post by: stworthy on September 06, 2014, 03:16:12 AM
It is easy to get this feature, simply add a panel to the bottom of propertygrid. The code below shows how to use layout component integrate them together.
Code:
<div class="easyui-layout" style="width:300px;height:300px">
<div region="center" border="false">
<table id="pg" class="easyui-propertygrid" data-options="
data:data,
fit:true,
showGroup:true,
scrollbarSize:0
">
</table>
</div>
<div region="south" split="true" style="height:50px">
</div>
</div>