Completed
Last Updated: 06 Feb 2024 07:50 by ADMIN
The Grid's row reordering functionality is missing from the PHP wrappers.
Completed
Last Updated: 06 Feb 2024 07:50 by ADMIN
Created by: Gabriel
Comments: 0
Category: Grid
Type: Bug Report
2

Bug report

DataSourceResult.php does not work with php 8.1.

TicketID:
1571981

Environment
**Kendo UI version: [all]
Browser: [all]

Completed
Last Updated: 06 Feb 2024 07:50 by ADMIN

Bug report

The following files are included in the UI for PHP source distribution:

kendoui\wrappers\php\lib\Kendo\UI\PDFViewerDplProcessing.download.php
kendoui\wrappers\php\lib\Kendo\UI\PDFViewerDplProcessing.read.php
kendoui\wrappers\php\lib\Kendo\UI\PDFViewerDplProcessing.upload.php

The files are also duplicated with:

PDFViewerDplProcessingDownload.php,
PDFViewerDplProcessingRead.php
PDFViewerDplProcessingUpload.php

Expected/desired behavior

The DplProcessing should not be included in the UI for PHP source distribution

Environment

  • Kendo UI version: 2022.3.1109
  • Browser: [all ]
Unplanned
Last Updated: 09 Aug 2023 10:55 by Krasimir
Created by: Krasimir
Comments: 1
Category: UI for PHP
Type: Feature Request
1
Some classes are not complying with the psr-4 autoloading standard, so either the file name or the PHP class names must be changed.
Unplanned
Last Updated: 03 Aug 2023 14:11 by AKR
Created by: AKR
Comments: 0
Category: UI for PHP
Type: Feature Request
1

Hi Team,

I would like to request resources such as a demo and documentation which integrate UI for PHP with Laravel PHP

Thank you!

Unplanned
Last Updated: 18 Jan 2023 12:52 by ADMIN

Hi,

Use two or more DatePicker widget in the same page. In some moment it produces next error:

next IDs have duplicates in DOM: 2 items #nav-up

Same may apply for other Date related widgets.

Completed
Last Updated: 09 Jan 2023 12:18 by ADMIN
Release R1.2023-Increment.3(18.Jan.2023)

Hi,

As stated in changelog of version 2022.2.802  'state' prefix removed from CSS state classes.

But php wrappers do not reflect these changes. For example, wrapper for TabStripItem still requires old class name, as a result TabStrip selection is broken:


<?php

namespace Kendo\UI;

class TabStripItem extends \Kendo\SerializableObject {
    public function createElement() {
        $element = new \Kendo\Html\Element('li');

        if ($this->getProperty('selected')) {
            $element->attr('class', 'k-state-active');
        }

Completed
Last Updated: 11 Nov 2022 09:18 by ADMIN

Hi,

Please, take a look and run code given in the link below:

https://dojo.telerik.com/UwefedaL/2

When you remove column from group in the Grid, the new empty column is created, which should not:

 

 

Need More Info
Last Updated: 28 Oct 2022 07:46 by ADMIN

Hi,

PanelBarItem and TabStipItem wrapper classes missbehave with PHP version >= 8 when contentUrl function not called and related property not set.

We are using UI for PHP R3 2022 (version 2022.3.913.)

Thank you.

Completed
Last Updated: 01 Jul 2022 11:30 by ADMIN
Created by: Abilio
Comments: 4
Category: Date/Time Pickers
Type: Bug Report
1

Enhancement 

The current modern type TimePicker does not provide localization 

Reproduction of the problem
https://dojo.telerik.com/aKIHAcIb

Open the TimePicker popup. The action buttons "Now", "Cancel" and "Set" are not translated.


Expected/desired behavior
Those action buttons need to be exposed for translation.

Environment
**Kendo UI version: 2021.3.914
**jQuery version: 1.12.4
**Browser: [all]

Completed
Last Updated: 09 May 2022 16:01 by ADMIN
Release 2022.R2
Created by: Abilio
Comments: 0
Category: MultiColumnComboBox
Type: Bug Report
0

Bug report

When Telerik UI for PHP MultiColumnComboBox is initialized a div element is rendered instead of an input

Reproduction of the problem

  1. Open locally the PHP demos and inspect the MultiColumnComboBox

Current behavior

The element with the widget id is a <div> Screencast that demonstrates the rendering with UI for PHP and UI for jQuery.

Expected/desired behavior

The element with the widget id should be an <input/> as it is in Kendo UI for jQuery and also ComboBox (in both Kendo for jQuery and PHP wrappers)

Environment

  • Kendo UI version: 2022.1.301
  • Browser: [all]
Unplanned
Last Updated: 03 May 2022 11:24 by ADMIN
Created by: Matthew
Comments: 1
Category: UI for PHP
Type: Feature Request
0

Give users the ability to add custom editors in the Kendo Grid using the existing PHP library. It would be extremely helpful to create the edit control using existing functions (e.g. DateTimePicker) and pass it into the column so that users can leverage all of the existing PHP calls to set up their component and pass it into the grid column. 

For example:

$datePicker= new \Kendo\UI\DateTimePicker('edScheduleDt');
$datePicker->componentType('classic')
  ->interval(15)
  ->dateInput(true)
  ->change('myOnChange')
  ->close('myOnClose')
;

$scheduleDateCol = new \Kendo\UI\GridColumn();
$scheduleDateCol ->field('ScheduleDate')
  ->title('Scheduled')
  ->width(214)
  ->editor($datePicker)
  ->format('{0:M/d/yyyy h:mm tt}')
;

Completed
Last Updated: 29 May 2020 07:47 by ADMIN
Created by: Rick
Comments: 3
Category: MaskedTextBox
Type: Bug Report
2

So i'm trying to use a MaskedTextBox for saving a phone number, but if the string only exists of digits and no other characters in the initial value it will always remove any leading zeros.

This gives me problems for when edit forms where a phone number of 0771234567 is loaded but 771234567 is displayed instead. If someone then clicks save all changes the leading zero is removed. I don't want it just for display either or always put a zero in front because it can also be multiple zeros depending on exit code used e.t.c. (the numbers will be used to call people they are not just for display.)

1.<?php
2.    $Phonenumber = new \Kendo\UI\MaskedTextBox('Phonenumber');
3.    $Phonenumber ->value('0003333');
4. 
5.    echo $Phonenumber ->render();
6.?>

The code above will display '3333' as initial value instead of the desired '0003333', if i use '000test' instead then it works as intended and display '000test'

I don't understand the advantage of always removing leading zeros in this situation, i'd rather do this myself using php if neccesary.

I'm hoping i'm just missing something very simple, no kind of mask seems to help.

The example below will display 3333 as result, where if i would use 000test instead of 0003333 it would show 000test
The example below will display 3333 as result, where if i would use 000test instead of 0003333 it would show 000test
Unplanned
Last Updated: 04 Nov 2019 15:41 by ADMIN

Dear support team

 

I have an interesting phenomenon. We are using a MultiSelect widget with remote data binding. In theory, the data looks like this:

Key: 099

Value: Test1

Key: 100

Value: Test2

etc.

I can select all values just fine and they are posted to the form on the receiving end. When reloading the form, we pre-populate the selected items, by calling ->setValue() with an Array of strings: 099,100.

However, the generated Javascript code for the multiselect will change that to [99,100]. So the 099 will not get selected when shown.

Is this something I can avoid? Do I need to specify anything special for the Key column (so far I have only specified the name of the field and marked it as an IDcolumn).

 

Here is the generated javascript code, as you can see, the value is set to 99, but gets passed in the PHP array as '099':

 <select id="berufsgruppeMultiSelect[]" name="berufsgruppeMultiSelect[]" style="width:500px;"></select><script>jQuery(function(){jQuery("#berufsgruppeMultiSelect\\[\\]").kendoMultiSelect({"dataSource":{"type":"odata-v4","serverFiltering":true,"serverSorting":true,"serverPaging":true,"transport":{"read":{"url":function(data) {return "http://aiislab1.bsl.ch.almanid.com:8180/iswebservice/OData4Service.svc/Attributes('687')/CTVRecords?lang=en&$select=V_Long&SESSIONID=" + encodeURIComponent(cookieSessionID) + "";},"contentType":"application\/json;odata.metadata=minimal","dataType":"json","type":"GET"},"parameterMap":function(options, type) {
if (type === 'read') {
if (options.filter) {
for(var index in options.filter.filters) {
var Filter = options.filter.filters[index];
Filter.value = boolean2string(Filter.value);

if ($.isArray(Filter.filters)) {
for(var arrayIndex in Filter.filters) {
var ArrayFilter = Filter.filters[arrayIndex];
ArrayFilter.field = 'tolower(' + ArrayFilter.field + ')';
ArrayFilter.value = ArrayFilter.value.toLowerCase();
}
} else {
Filter.field = 'tolower(' + Filter.field + ')';
Filter.value = Filter.value.toLowerCase();
}
}
} else {
                    options.filter = {logic: 'and', filters: [{field: 'tolower(Language)', operator: 'contains', value: 'en'}]};
                }
if (options.sort) {
var sortCount = 0;
for(var index in options.sort) {
var Sorter = options.sort[index];
sortCount = 1;

}
}
if (typeof sortCount === 'undefined' || sortCount === 0) {
options.sort = [{field: 'V_Long', dir: 'asc'}];
}
}
return kendo.data.transports['odata-v4'].parameterMap(options, type);}
},"schema":{"model":{"fields":[{"field":"Key"},{"field":"V_Long"}],"id":"Key"}}},"dataTextField":"V_Long","dataValueField":"Key","value":[99],"valuePrimitive":true,"filtering":function (e) {
            if (e.filter) {
                var value = e.filter.value
                var newFilter = {
                    logic: 'and',
                    filters: [
                        { field: 'tolower(Language)', operator: 'contains', value: 'en' },
                        {
                            logic: 'or',
                            filters: [
                                { field: 'id', operator: 'contains', value: value },
                                { field: 'V_Long', operator: 'contains', value: value }
                            ]
                        }
                    ]
                }
                e.sender.dataSource.filter(newFilter)
                e.preventDefault()
            }
            e.preventDefault()
        },"placeholder":"alle Berufsgruppen","itemTemplate":"#: id# (#: V_Long#)","tagTemplate":"#: id# (#: V_Long#)"});});</script>

 

Thank you for your advice.

Yours,

Ronny

Pending Review
Last Updated: 16 Jul 2018 20:15 by ADMIN
Created by: Rinck
Comments: 3
Category: UI for PHP
Type: Feature Request
78
I've been playing around with the ImageBrowser (Editor) and would love to see a variation of the ImageBrowser as a standalone widget. If I could use it without the Editor to simply select or upload an image file that would really add value to some of my applications (for which I now have to use a different tool: elFinder).

Since the ImageBrowser already exists, hopefully this would be an easy addition to the KendoUI toolset! :)
Pending Review
Last Updated: 11 Jan 2017 08:43 by Telerik Admin
Created by: Imported User
Comments: 0
Category: UI for PHP
Type: Feature Request
1
Found issue in ImageBrowser.php, for thumbnail, getThumbnail uses setImageHeaders, which send whole image size, not thumbnail size, causing thumbnail loading delay or fail (depending on browser)
Completed
Last Updated: 09 May 2016 11:24 by ADMIN
kindly vote guys..........(Y)