Base solution for your next web application
Open Closed

Bug in Action Column #5832


User avatar
0
rodrigosturm created

Hello,

I Createad a index.cshtml page as partialview, and it have been working fine. since last week, when I open this table, the column Action Magically disapear.

Whats change?


3 Answer(s)
  • User Avatar
    0
    rodrigosturm created

    into the html

  • User Avatar
    0
    ismcagdas created
    Support Team

    Could you enable vertical scroll in the table and try again ?

  • User Avatar
    0
    rodrigosturm created

    Doesnt work.

    I Insert a second action and worked.

    rowAction: {
                            cssClass: 'btn btn-brand dropdown-toggle',
                            text: '<i class="fa fa-cog"></i> ' + app.localize('Actions') + ' <span class="caret"></span>',
                            items: [
                              **  {
                                    text: app.localize('View'),
                                    action: function (data) {
                                        _viewTituloPagarModal.open({ data: data.record });
                                    }
                                },**
                                {
                                    text: app.localize('Delete'),
                                    visible: function () {
                                        return _permissions.delete;
                                    },
                                    action: function (data) {
                                        deleteTituloPagarPagamento(data.record.tituloPagarPagamento);
                                    }
                                }]
                        }