Hi,
I use at the moment the grid from Q1 Beta. I use the editing inline method for the grid and I would like use a button (passButton) in each row, after "edit cancel" cell. But I don't see a button, only "..."! When i click edit, I see a button.... It is a bug or...????
Best regards
Damir
I use at the moment the grid from Q1 Beta. I use the editing inline method for the grid and I would like use a button (passButton) in each row, after "edit cancel" cell. But I don't see a button, only "..."! When i click edit, I see a button.... It is a bug or...????
$("#grid").kendoGrid({
dataSource: dataSource,
navigatable: true,
pageable: true,
sortable: true,
height: 400,
filterable: false,
toolbar: [
{ name: "create", text: "<?
php
echo $this->translate("Add Account"); ?>" }
],
columns: [
{ field: "Company", width: "120px", title: "<?
php
echo $this->translate("Company"); ?>" },
{ field: "Name", width: "120px", title: "<?
php
echo $this->translate("Name"); ?>" },
{ field: "Email", width: "200px", title: "<?
php
echo $this->translate("Email"); ?>" },
{ field: "AccountID", width: "150px", title: "<?
php
echo $this->translate("Account ID"); ?>" },
{ field: "Active", width: "60px", title: "<?
php
echo $this->translate("Active"); ?>" },
{ field: "Date", width: "110px", title: "<?
php
echo $this->translate("Expired"); ?>", template: '#= kendo.toString(Date,"dd.MM.yyyy") #' },
{ command: [
{name: "edit"},
{name: "destroy"}
]
},
{ field: "PassButton", width: "60px", title: "<?
php
echo $this->translate("Send"); ?>", template: "<
input
type
=
'button'
class
=
'k-button k-button-send'
value
=
''
onclick
=
'myFunction(\"#=AccountID#\")'
/>" }
],
editable: "inline"
});
Best regards
Damir