remove multi-update edit icon from pager head

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
konfuzion
User
Posts: 378

remove multi-update edit icon from pager head

Post by konfuzion »

<button type="button" class="btn btn-default ew-action ew-multi-delete" ...> // remove this through server events

I've created my own custom multi-update buttons, and temporarily solved this issue through jquery, how to remove the default multi-update icon from pager header through server events?


mobhar
User
Posts: 11660

Post by mobhar »

Simply put this following code in Page_Render server event of List Page:

$this->OtherOptions["action"]->add("multiupdate")->Visible = false;


Post Reply