Hi,
Is there a way to add a menu to the grid to the right of the columns and above the scroller ?
The idea is to do something like :
- show hide area (filter row, agregation, ...)
- Launch export (excel, pdf)
...
The only solution I have found is to complete the menu of each column, but it's not the optimal solution
Regards
Hello there. We faced with weird line breaks bug while exporting grid to excel. Here is the dojo: https://dojo.telerik.com/ozAYiDEb .
Steps to reproduce:
1. Run dojo.
2.Click on Export to Excel.
Result: created excel file won't have line breaks at all. The dojo was taken from https://docs.telerik.com/kendo-ui/knowledge-base/grid-excel-export-new-lines
Hi,
I would like to be able to check/uncheck the switch with the keyboard
but nothing bind to the switch. i tried :
scope.toggleSwitch.bind(
"keyup"
, toggleKeyUp);
scope.toggleSwitch.bind(
"focus"
, toggleFocus);
scope.toggleSwitch.bind(
"click"
, toggleclick);
any idea wuld be appreciate thanks
Hi,
I have a table containing 28 dynamically generated KendoUI buttons that represent a 28 day cycle. Im trying to enable and disable them all at once, but only the first button is being affected. Please advise.
//Inialize ALL 'day selection' buttons
$(
"#table-frequencyWindow-daySelection"
).find(
"button.dayButton"
).kendoButton({
enable:
false
});
//Inialize Frequency Selecter as kendo Drop Down List
$(
"#select-frequencyWindow-frequency"
).kendoDropDownList({
change:
function
(e) {
var
daySelectionTable = $(
"#table-frequencyWindow-daySelection"
);
console.log(daySelectionTable.find(
"button.dayButton"
).length)
//Prints "28"
if
(
this
.value() ==
""
) {
daySelectionTable.find(
"button.dayButton"
).data(
"kendoButton"
).enable(
false
);
}
else
{
daySelectionTable.find(
"button.dayButton"
).data(
"kendoButton"
).enable(
true
);
}
}
});
Hello for some users they're have a difficult time telling that the k-button is grayed out or disabled, so want to see if there's a way to gray out this button about 30% more when the "isNewBipEnabled" field is equal to "false" and i've attached a word document with snap shots for reference, thanks for any pointers!
<
td
width
=
"10%"
>
<
button
class
=
"bip-btn"
data-bind
=
"enabled: isNewBipEnabled, click: onNewBip"
>
<
img
data-bind
=
"attr: {src: newImgUrl}"
style
=
"vertical-align:middle;"
/>
<
span
style
=
"font-weight:bold;margin-top:2px;"
>New BIP</
span
>
</
button
>
</
td
>
/* <== special effiect when switching between views */
.bip-btn:hover {
background-color: cadetblue;
}
I'm wondering how to modify the following 'edit' and save: statements/functionality to just show a "Link" title on the button and only have to select the "Link" button once to bring up a hyperlinked page? attached is some more code detail with snap shots, thanks!
{ 'command' : ['edit'], 'title': ' ', 'width': '180px' }
data-bind="source: reportDs , events: { save: onSave}"
<
script
type
=
"text/x-kendo-template"
id
=
"report-template"
>
<
h1
style
=
"text-align:center;font-size:24px;color:darkmagenta;"
>Personnel Security Activity Report</
h1
>
<
div
class
=
"report-container"
>
<
div
style
=
"margin:5px;"
>
<
div
id
=
"gridAppUsers"
data-role
=
"grid"
data-columns="[
{
'title' : 'Report',
'field' : 'reportLabel'
},
{
'title' : 'Report Link',
'field' : 'reportLink'
},
{ 'command' : ['edit'], 'title': ' ', 'width': '180px' }
]"
data-editable
=
"inline"
data-sortable
=
"true"
data-scrollable
=
"true"
data-selectable
=
"single, row"
data-bind
=
"source: reportDs , events: { save: onSave}"
>
</
div
>
</
div
>
</
div
>
Hi,
Im using KendoUI for PHP. Im trying to to use SAVE STATE functionality by the KENDO manual:
https://demos.telerik.com/kendo-ui/grid/persist-state
...to save the datagrid configuration.
The problem is, when I will save state, to JSON string is saved also lists of items related to column ids. When I will save the datagrid configuration, there are saved also the related items. Next, when I rename some of the list item in the database, the change is not displayed, because all list items was saved and loaded from JSON save state configuration.
Is it possible to solved this problem (for example do not save the lists items into JSON, or another solution)?