Unplanned
Last Updated: 16 Oct 2024 08:10 by ADMIN
Created by: Dave
Comments: 4
Category: ColorPicker
Type: Feature Request
1

When my company's users create a new "customer site" they upload the customer's logo and then choose some colours that will form the basis of theming for the customer's site.  In that way, a customer will 'feel' like they have their own branded experience when using 'their' website.

The colours are inevitably based on the customer's logo.  To use the colour picker component, I have to train my users to go to Paint, load the logo, choose the colour using the colour picker, go into the palette and 'copy the crazy 6-digit numbers that may contain letters of the alphabet that starts with a #' and paste that into the colour picker of our web site.

Rather, I would prefer if they could simply use an eyedropper from the ColorPicker component using functionality similar to https://imagecolorpicker.com/en  It would save training and greatly improve the useability of my website.

Can I put that forward as being a feature request?

Thanks

Dave A

 

Unplanned
Last Updated: 10 Oct 2024 09:14 by Amit
Created by: Amit
Comments: 0
Category: MultiSelect
Type: Feature Request
1

Implement an AllowCustom option in the MultiSelect, which would make possible to select a custom value that is not present in the data.

This option is available in the Kendo UI for Angular MultiSelect:
https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/multiselectcomponent#allowcustom
https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/custom-values

Unplanned
Last Updated: 07 Oct 2024 09:32 by Aiden
Created by: Aiden
Comments: 0
Category: Editor
Type: Feature Request
0

Consider changing the design for the ColorPicker's input mode selection.

Currently, this is done through clicking a button with "up" and "down" arrow icons:

A more UI-friendly design for the mode selection would be nice to have, for instance, a radio group, dropdown, switch, etc.

 

Unplanned
Last Updated: 07 Oct 2024 08:26 by Aiden
Created by: Aiden
Comments: 0
Category: Editor
Type: Feature Request
0

When the fonts and font size dropdown is selected, it will be helpful to view the preview of fonts before applying it to text. Similarly for font size also it will be good to preview them.

Unplanned
Last Updated: 07 Oct 2024 08:01 by Aiden

In the table wizard the caption alignment dropdown looks very long than required

### Suggestion

Either the dropdown size can be collapsed, or we can describe the images to accommodate the longer size:

Unplanned
Last Updated: 30 Sep 2024 10:29 by Jacek

### Bug report

On mobile devices, when the TaskBoard columns are filled with cards, the users have trouble scrolling horizontally through the columns. When they attempt to scroll the screen, they accidentally drag cards instead of scrolling the columns. This makes navigation in the TaskBoard quite difficult, particularly for projects with a large number of cards.

    ### Reproduction of the problem

    1. Create a TaskBoard with at least two columns.

    2. Fill the columns with cards.

    3. Open the browser DevTools and switch to mobile view. Tap a card to scroll the columns horizontally or tap at the bottom of the TaskBoard to activate the horizontal scrollbar.

    4. The last card is accidentally dragged.

    A Dojo sample for reproduction: https://dojo.telerik.com/izASODan

    ### Expected/desired behavior

    When the user makes a hold/long press/long tap, show the "indicator for drag and drop" and then he/she continues with the gesture by moving the card to the desired column and lift the finger. This way, the accidental dragging will be prevented. For more information, refer to the GitHub issue.

    Note: The cards in the TileLayout can be dragged only through the card's title element. The TaskBoard cards can be dragged through the card's body, as well.

    ### Environment

    * **Kendo UI version: 2024.3.806
    * **jQuery version: 3.7.0
    * **Browser: [all]

    Unplanned
    Last Updated: 10 Sep 2024 14:43 by Anita

    Bug report

    When the Grid is nested in a relatively positioned container, during the export the Grid gets an overflow style to its wrapping element. Then the style is removed and re-added again. This happens in a loop, which results in a vertical scrollbar constantly appearing and hiding.

    Reproduction of the problem

    1. Open this dojo example: https://dojo.telerik.com/IZoxOvOG/7
    2. Click the "Export to PDF" button in the Grid's toolbar

    Current behavior

    Flickering caused by a scrollbar appearing and hiding

    Expected/desired behavior

    The Grid should remain unchanged during the export and no scrollbar should appear and hide during the export.

    Environment

    • Kendo UI version: 2024.3.806
    • jQuery version: x.y
    • Browser: [all ]
    Unplanned
    Last Updated: 09 Sep 2024 09:36 by Tino

    ### Bug report

    When the TimePicker's type is "modern", the "min" and "max" options cannot be set dynamically through the min(), max(), and setOptions() methods.

    ### Reproduction of the problem

    1. Define the TimePicker with componentType: "modern".
    2. Set its "min" and "max" values through the min() and max() options.
    3. The "min" and "max" values are not visually updated.

    A Dojo sample for reproduction: https://dojo.telerik.com/OXAqUYiw

    ### Expected/desired behavior

    The  "min" and "max" values must be dynamically updated when the TimePicker's type is "modern".

    ### Workaround

        let timeView = $("#timepicker").data("kendoTimePicker").timeView;
        timeView.options.specifiedRange = true;
        timeView.options.min = new Date(2024, 0, 1, 9, 00, 00);
        timeView.options.max = new Date(2024, 0, 1, 22, 00, 00);
        timeView._updateRanges();
    ### Environment

    * **Kendo UI version: 2024.3.806
    * **jQuery version: 3.7.0
    * **Browser: [all] 

     

    Unplanned
    Last Updated: 05 Sep 2024 11:19 by Carl

    When creating columns in a TagHelper Grid definition, the Width property allows only numbers:

                                    <column field="OrderID" width="100">
                                    </column>

    This does not match the width property in the Kendo UI and HtmlHelpers Grid definitions which allow string values to be entered as well:
    https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columns.width

    That way, the developer will be able to add rem and other unit values in TagHelper syntax as well.

    Also, it would be convenient if there is a new property similar to this:

                                    <column field="OrderID" tooltip="Unique Number of the Order">
                                    </column>
    The alternative workaround of setting html-attributes is not applying to header <th> cells which makes it unusable:
                                    <column field="Freight"
                                            html-attributes='new Dictionary<string, object>{ ["style"] = "width: 30rem;" }'>
                                    </column>

    Unplanned
    Last Updated: 30 Aug 2024 11:03 by Petr
    Created by: Petr
    Comments: 0
    Category: Drawer
    Type: Feature Request
    2

    Currently, the Drawer Hierarchy demo shows how to create two levels of hierarchy. Is it possible to enhance the Drawer to allow multiple nested items?

    For example, the following KB article describes how to implement multi-level hierarchy, but the suggested approach requires custom JavaScript logic:

    https://docs.telerik.com/kendo-ui/knowledge-base/drawer-multi-level-hierarchy


    Unplanned
    Last Updated: 28 Aug 2024 10:27 by palhal
    Created by: palhal
    Comments: 0
    Category: ButtonGroup
    Type: Feature Request
    1
    In "Kendo UI", the "ButtonGroup" has "size" and "fillMode" configurations, but there are no wrapper methods for "Telerik UI Core".
    Unplanned
    Last Updated: 20 Aug 2024 07:21 by Alistair
    Created by: Alistair
    Comments: 0
    Category: TabStrip
    Type: Feature Request
    1

    Request for "Resize" Event for the following Components:

    • TabStrip
    • Form
    • GridLayout
    • Responsive Panel
    • Wizard
    Unplanned
    Last Updated: 14 Aug 2024 14:57 by Charles

    Bug report

    When applying data validation to all cells of a xlsx file and trying to import the file via Telerik.Web.Spreadsheet as demonstrated in the Server Import/Export demo the application will crash.

    Reproduction of the problem

    1. Check ticket 1661158 for a sample xlsx file.
      N.B. The sample file has an AnyValidation rule applied to all cells and a title set for the cells. In addition two columns have predefined styling rules - font, fontSize, etc.
    2. Try to load the file using Telerik.Web.Spreadsheet, as demonstrated in the Demo.

    Current behavior

    Loading will fail.

    Expected/desired behavior

    File should be loaded

    Possibly related to #4017
    In the reported scenario there are 1048576 rows, with 16384 columns, resulting in 17179869184 cells all with applied non-default validation value, and we iterate them all to set the validation value, so it can be serialized.

    Environment

    • Kendo UI version: 2024.3.806
    Unplanned
    Last Updated: 12 Aug 2024 11:00 by Nico

    ### Bug report

    When subscribing to the "requestStart"/"requestEnd" events of the DataSource after the Grid's initialization, the events do not fire during the Excel export.

    ### Reproduction of the problem

    1. Enable the server operations of the Grid's DataSource.

    2. Get a reference to the Grid and handle the DataSource "requestStart"/"requestEnd" events by using the bind() method.

    3. Export the Grid's data to Excel through the built-in command.

    4. The "requestStart"/"requestEnd" events do not trigger when the read request is activated.

    A Dojo sample for reproduction: https://dojo.telerik.com/eyiDIGeM

    ### Expected/desired behavior

    The  "requestStart"/"requestEnd" events must trigger when exporting the Grid to Excel.

    ### Environment

    * **Kendo UI version: 2024.3.806
    * **jQuery version: 3.7.0
    * **Browser: all

    Unplanned
    Last Updated: 08 Aug 2024 08:34 by ADMIN
    Created by: Bruno
    Comments: 0
    Category: Grid
    Type: Feature Request
    2

    column-command template does not access datasource as an ordinary column template.

    <kendo-grid name="grid">
        <columns>
            <column field="ProductID" title="ID" />
            <column title="Column" template="#=columnTemplate(data.ProductID)#" />
            <column title="ColumnCommand">
            <commands>
                <column-command name="change" template="#=columnTemplate(data.ProductID)#"></column-command>
            </commands>
        </column>
        </columns>
        <datasource type="DataSourceTagHelperType.Custom" server-filtering="true">
            <transport>
                <read url="@Url.Action("ServerFiltering_GetProducts", "MultiSelect")" />
            </transport>
        </datasource>
    </kendo-grid>
    
    <script>
        function columnTemplate(productID) {
            if (productID % 2 == 0)
                return 'even';
            else
                return 'odd';
        }
    </script>

    Reproduction of the problem:
    https://netcorerepl.telerik.com/myurdlbI16kA1TM213

    Current behavior:
    There is no way to have a dynamic template for column commands that depends on datasource.

    Expected/desired behavior:
    Having column-command template as column template, making it possible to access data from datasource.

    Environment:
    Kendo UI version: 2024.2.514

    Workaround:
    As an alternative solution, I'm using data-bound event, performing a for loop to all rows, but it needs to go line by line, which is not the best solution for large data.

    Unplanned
    Last Updated: 29 Jul 2024 15:59 by Kaya
    Created by: Kaya
    Comments: 1
    Category: Form
    Type: Feature Request
    1
    Add support for "UIHint" in the form, in order to enable using a Telerik UI Core component in a partial view as editor of a Form field
    Unplanned
    Last Updated: 24 Jun 2024 11:49 by Piotr
    Created by: Piotr
    Comments: 0
    Category: Spreadsheet
    Type: Feature Request
    1
    Expose a "bind-to" TagHelper attribute. Similar to the HTML Helper Spreadsheet counterpart.
    Unplanned
    Last Updated: 20 Jun 2024 11:56 by Brent
    Created by: Brent
    Comments: 0
    Category: MultiColumnComboBox
    Type: Feature Request
    0

    Add an option to turn off the auto selection of a matching record after typing in the component's input area and then clicking away.

    Currently, the component automatically selects the respective item with text matching the input. For example: https://demos.telerik.com/aspnet-core/combobox/serverfiltering

    1. Type in Chang in the input area and then click away.
    2. After clicking away, the text Chang remains in the input and if you reopen the list, the ComboBox shows the item with text Chang as selected.

    Unplanned
    Last Updated: 13 Jun 2024 18:28 by Mark
    Created by: Mark
    Comments: 0
    Category: Grid
    Type: Feature Request
    2
    Provide built-in Date only filtering for the Grid.

    Currently, this can be achieved with custom javascript:
    https://docs.telerik.com/kendo-ui/knowledge-base/filter-by-date
    Unplanned
    Last Updated: 13 Jun 2024 07:39 by ADMIN

    The current suggestions are IMHO quite complicated and require a lot of client-side code.

    I would like to have a way to display the total of the series in the center.

    The content should change depending on the selected categories.
    Maybe using a template with access to the values.

    The size of the content should scaled to optimally fill the empty center.

    Kind regards Erwin