The new ForeColor EditorTool is a great addition to the Editor. How can we set the swatch colors? I tried passing ForeColorProps {} to the component that contained colorPickerProps {}, but just couldn't figure out how to make it work.
Can you please provide an example? I am trying to get a red swatch cell into the swatch. Or, choose another swatch, maybe?
Hi all,
I'm working with the TreeView component and it only seems to have an onItemClick event. Does anyone know how to listen for an onContextMenu event so that I can open a menu for with some extra actions for the tree?
Any help is appreciated. Thanks.
Hi,
I have a Kendo Grid with a custom cell and row selection. When I add <div> to my custom cell than onRowClick is ignored. What is the proper way to enable onRowClick in my custom cell?
example https://stackblitz.com/edit/react-4v6l81
Hi All
New to react in general but I have a grid up and running with a footer using a function to perform a simple sum (as per the below)
This is all working fine on data load, but if I update any values and even update the state it does not seem to trigger an update to the cell totals in the footer. would there be anything that I could be missing here or have to call?
const CellTotals = (props) => {
const sum = products.reduce(
(acc, current) => add(acc, current[props.field]),
0
);
return
(
<td colSpan={props.colSpan} style={props.style}>
{formatMoney(sum)}
</td>
);
};
Hello,
I'm trying to use DateTimePicker like this:
<DateTimePicker
show={show}
onChange={this.onDatepickerChange}
// cancelButton={false}
popupSettings={{
appendTo: this.renderRef,
animate: false,
}}
/>
<Button onClick={this.toggleCalendar} />
<div id="render" ref={(render) => { this.renderRef = render; }} />
1. I don't have control on "Cancel" button. When I set show prop and try to toggle the calendar with custom button, the "Cancel" button doesn't work. I can only hide it.
2. Then I tried to set DateTimePicker popup to Not render in the "body", but it doesn't work. Every popupSettings is ignored. I tried this in kendo react Popup component and the prop "appendTo" worked as expected.
Thanks in advance for the help !
Hi, questions about react Scheduler:
1. Is it possible to open edit dialog with single click? (not double click)
2. Can I hide "all day" header row?
3.Can I have a custom component for resources? I open edit dialog and under description there are my resources dropdowns. Can I have an Autocomplete instead of dropdown?
4. Is it possible to have custom edit dialog? (not colors but custom components and layout)
5. Can I add more columns to Agenda view?
6. In Month view when I have a lot of items in a day there is a button with 3 dots. Can I add a text to that button?
7. In a Timeline view when I have a lot of events in the same time for peter they are interfering with Alex row (see attached file, it is from your example)
Hi,
I am working with kendo ui spreadsheet and I am trying attach a function to a cell, where I click on a link and it can take me to my mail client and open up the compose email window, where all the values of From, Subject, and, Body will be pulled in from other cells.
I can do this in the excel using =HYPERLINK(“mailto:” & B4 & “?subject=“& B5 & “&body=“ & B6, ”Send Email”) formula but I am not able to do the same thing into the kendo ui spreadsheet component using the same formula (Although I can see that the "HYPERLINK" formula is supported by kendo ui spreadsheet in the documentation).
Is there something that I am doing wrong or it's an actual issue? If there is a functionality available in the kendo ui spreadsheet, can you provide me an example for how I can do it through UI and through the code as well.
Thank you.
Hi,
For SchedulerGroup there is an option of horizontal or vertical orientation but how to set the orientation for specific view? We need a horizontal DayView but Vertical MonthView.