Hi Team,
I would like to request resources such as a demo and documentation which integrate UI for PHP with Laravel PHP.
Thank you!
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
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}')
;
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) {
Thank you for your advice.
Yours,
Ronny