BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi,
Thank you for your interest on Syncfusion product.
Please refer the below work around solution for your requirement.
In default, footer has a fixed size. In case your content size exceeds the height of the footer, then you need to override the height of the footer in application level. Please refer the below code.
View
<style> #Foot /*Foot-FooterControl id*/ { height: auto; /*your customized height value*/ } </style> |
To position your footer as fixed with bottom of the page, set the MobPosition property value as fixed. Please refer the below code.
View
@{ Html.Orubase().Footer("Foot") .RenderMode(RenderMode.IOS) .Position(MobPosition.Fixed).ShowTitle(false) .Template(@<div> </div>).Render(); } |
We have attached the simple sample for your query.
Please refer that sample and let us know if you need any further assistance.
Regards,
Aravindan V