I'm using a Kendo Grid I added the "create" to do an inline add of a record. How can I change the wording on the add button? Currently it reads: "Add a new Record" I want to simplify it to read just "Add" and I'd also like to keep the same Icon.
My code looks like:
$reports.kendoGrid(
{
dataSource: dataSource,
toolbar: ["create"],
...
Any suggestions would be greatly appreciated.
How can i enable the edit of the cell in which the button is ? $(grid. tbody). on("click", "[name='EditCell']", function (e) { var cellElement = this; var cell = $(cellElement); var grid = $("#grid").
One way you can add a custom button is to include a custom command button in the toolbar. Next, on the click event of the button, add the logic to open the Kendo UI Window: $("#grid"). on("click", "#customButton", function (e) { e.
The way to do this is using the following syntax:
$reports.kendoGrid(
{
dataSource: dataSource,
toolbar: [{ name: "create", text: "Add" }],
you can find it in js and you have to chenge from there
you have to change it by the configuration this link will help you http://www.kendoui.com/documentation/ui-widgets/grid/configuration.aspx
hunted solution its perfect tally work in kendo.all.min.js or kendo.all.js which you are using you will find below line
{create:{text:"Add new record",imageClass:"k-add",className:"k-grid-add",iconClass:"k-icon"}
you will get the result
change it with
{create:{text:"Add ",imageClass:"k-add",className:"k-grid-add",iconClass:"k-icon"}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With