I want to allow a user the ability to select the directory where they want to save an uploaded file. This is probably very easy but, here is a basic explanation of the user interaction. And the visual aid.
User selects directory for upload, user selects file to upload to said directory.
I'm having an issue getting the Checkbox component to work properly with react hooks. I'm not finding many examples online on how to do so. My understanding is the the Checkbox Component should work identically to the HTML input[type=checkbox] element, but doesn't seem to be the case.
In the code below the first Kendo Checkbox will allow you to check it, but not uncheck it, while the 2nd HTML input[type=checkbox] element works as expected.
import React from 'react';
import ReactDOM from 'react-dom';
import React, {useState, useEffect} from "react";
import { Checkbox} from "@progress/kendo-react-inputs";
function App(props) {
const [checked, setChecked] = useState(false);
return (
<
div
>
<
Checkbox
label
=
"Checkbox"
checked={checked}
onChange={e =>
setChecked(!checked)
}
/>
<
input
type
=
"checkbox"
checked={checked}
onChange={e =>
setChecked(!checked)
}
/>
</
div
>
);
}
ReactDOM.render(
<
App
/>,
document.querySelector('my-app')
);
I'm sure I'm missing something very simple, but can't identify it.
<
DayView
slotDuration={60}
slotDivisions={2}
startTime={"08:00"}
endTime={"20:00"}
workDayStart={"08:00"}
workDayEnd={"20:00"}
/>
Hiii....... i have a kendo grid which includes an inline add option in each row. what i need is when i click on the add cell on a specific row the inline row should come under the row which we clicked.
I'm attaching an image for more understandability.
hi guys,
when i try to bind combo box from web api it doesn't work in right way although the data comes properly and it works fine with static data :
<ComboBox data={this.state.domains} dataItemKey="DomainObjectID" textField="DisplayName" onChange={this.handleChange} value={this.state.value}/>
what is the prolem
Hi, I have a grid which displays the state names in a column. I want to have a filter on that column that will filter based on the state code. The state code comes from a reference data. Please advice.
Below is my stackblitz link:
https://stackblitz.com/edit/react-byhjeb-oe3mkm
If I type in "md", maryland and states which startswith 'md' should be filtered.
Hi,
I'm using kendo grid to display data that come from OData service (build in asp net core).
Date filter is not working for datetime columns.
The issue is related to time value that is passed as filter (an example down below).
Is there a way to avoid time in filter?
Thanks
Maurizio
NO RESULTS
/api/P6activity?$count=true&$filter=(finishDate eq 2020-01-23T00:00:00.000Z and projectId eq 'H171P')
CORRECT RESULTS
/api/P6activity?$count=true&$filter=(finishDate eq 2020-01-23 and projectId eq 'H171P')
{
Does the kendo grid has an onDrop event??
While inline mode is on and when i drag a text from outside the grid to inside the grid will it take the text??