let grid: Grid = new Grid({
dataSource: employeeData,
columns: [
{ field: 'EmployeeID', headerText: 'Employee ID', textAlign: 'right', width: 125 },
{ field: 'FirstName', headerText: 'Name', width: 120 },
{ headerText: 'Commands', width: 120, commands: [{ buttonOption: { content: '${Title}', cssClass: 'e-link', click: onClick } }]},
],
height: 315
}); |
let button: Button = new Button();
button = new Button({ isPrimary: true, cssClass:'textTransform' });
button.appendTo('#primarybtn');
};
|
|
.textTransform {
text-transform: none;
}
|