How to make Datatables Editor lightbox "uncloseable"?

How to make Datatables Editor lightbox "uncloseable"?

daveslabdaveslab Posts: 40Questions: 14Answers: 0

Hi folks,

Simple question: I'm trying to implement a simple login form with DTE that is mandatory. However, there is always the little 'X' at the top right corner of the lightbox to close it. Is there an easy way to remove it with a JS hack?

Thanks!

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,744Questions: 1Answers: 10,111 Site admin
    Answer ✓

    CSS:

    div.DTED_Lightbox_Close {
      display: none;
    }
    

    Allan

  • daveslabdaveslab Posts: 40Questions: 14Answers: 0

    Thanks!

This discussion has been closed.