Hello support,
which is the best way to set the width of the start and end input fields of a data range picker?
Best regards
Morten
Hello,
I noticed in the documentation if you set checkChildren it enables tri-state check box. The problem is that we do not want to enable checkChildren. In addition we have the possibility of showing a large tree. Possibly 100+ items, 3+ levels deep. When coming back into our edit screen to modify what was previously selected. While collapsed we would like to be able to see a parent in it's indeterminate state if there are any children underneath it that are checked. For example, imagine a tree like so.
Item 1
|_ Item 11
|_ Item 12
|_ Item 13
In our application we allow the user to choose 1, 11, and 13. With checkChildren set to true. If the user checks Item 1. They would then have to go uncheck item 12 to get the same result. As you can imagine. As I mentioned before with 100+ items with 3+ levels deep and checkChildren set to true. This could be a headache. Here is my question. Is it possible to have the tri-state work this way without checkChildren to indicate a child some where under the parent is checked?
Hi
I need to changes the time format displayed when resizing an event to 24 hour and add custom text that changes as the event resizes.
Does the scheduler support this?
I have to display a table in an autocomplete and I thought of using the MultiColumnComboBox but I need the select event to be triggered only when the user selects a row from the table. However I have found that it can be triggered as selected even though no row was selected.
In order to reproduce it go to the Events page of the MultiColumnComboBox. Select an item. The event is triggered and the item is the one displayed. Now delete one character and click outside of the control for the list to close. The select is triggered with no item. Click inside the control and delete another character then click outside of the control for the list to close. The select event is triggered and instead of no item selected you received that the previous item is selected even though in the combobox control the text is not filled with the selected item.
Is this function as design? How can I overcome this functionality cause when a row is selected I need to execute some code and I do not want to execute that code when in fact the user did not select a row.
Hi,
I am facing challenge because of time portion of the date. In milestone task, both start and end date as well as time should be same. However, even if time part is different, it becomes regular task.
Now, if we keep time part for all dates same say 00:00:00, the tasks which has different start and end date shows a day before, because its just start of the next date. we want end date to be inclusive. and also want milestone type task. Do we have any configuration where time part of gantt is not included in calculation? or some other fix?
https://dojo.telerik.com/eFaCoQOk - This has both example dates.
The custom editor option for the Filter widget, what controls are supported?
Trying to use, for example, the kendoMultiSelect results in an error, this dojo is just the standard custom editor editor demo but with the categoryDropDownEditor() function updated to return a kendoMultiSelect
The multi select does work in the filter as expected, but throws an "Unexpected identifier" exception to the console when trying to apply to the datasource .. this suggests is not supported, but please correct me if I am wrong :)
In an ideal world, you could configure a field with a kendoMultiSelect as the editor, have operator options for Contains & Does not contain, and then select one or more values in the multi select, these would then be applied to the datasource
I do understand that one can build the same query by adding multiple rules, but that could get quite verbose
Thanks for any feedback!
I have a checkbox group and only want to make sure what is checked if required.It's validating all checkboxes, I only to validate the group is required.
this creates textboxes on the page, and it can be 1 or many, however, if x.Required is true, I only want to validate the group not each checkbox. Is that possible with the validator or no, if not, can I remove the checkboxes from the validator since they have an input tag with textboxes?
foreach(var x in group)
{
<
input
type
=
"checkbox"
name
=
"@x.Location"
value
=
"@x.Text"
required
=
"@x.Required"
/>
}