Ramco Ramco

Ramco Ramco

  • 440
  • 3.4k
  • 529.4k

Tick Sign should be displayed

Jun 17 2021 12:49 PM

Hi

  I have below code & i want it is true then - fa fa-check should be displayed instead of CheckBox.

{
                data: "IsActive",
                render: function (data, type, row) {
                    if (data == true) {
                        return '<input type="checkbox" checked>';
                    } else {
                        return '<input type="checkbox">';
                    }
                    return data;
                }
            },

Thanks


Answers (1)