Unplanned
Last Updated: 26 Jul 2023 17:21 by Greg Henry
Created by: Dima
Comments: 2
Category: UI for JSP
Type: Feature Request
2

During migration from Java EE to Jakarta EE (jakarta.servlet.jsp-api:3.1.0 and jakarta.servlet-api:6.0.0) I got exception java.lang.ClassNotFoundException: javax.servlet.jsp.tagext.DynamicAttributes.

I think it's because of migration namespaces from javax.* to jakarta.* .

Could you provide Telerik for UI which support jakarta.* namespace.

I am using kendo-taglib-2023.1.117.jar 

Completed
Last Updated: 15 Nov 2022 11:12 by ADMIN

Bug report

The 'k-state-' classes are supposed to be updated when UI for JSP is used. However, the classes are still present in some of the ItemsTag.java files, thus the classes are added to the rendering.

Reproduction of the problem

  1. Run the JSP demos locally
  2. Open a TabStrip demo and inspect it

Current behavior

Both classes 'k-state-active' and 'k-active' are applied (screencast).
Other classes that appear in the ITemTag.java files are k-state-disabled and k-state-selected. Components that should be revised are - - ContextMenu,

  • Menu,
  • PanelBar,
  • TreeView

Expected/desired behavior

The state classes should be upgraded when using the UI for JSP wrappers according to the new rendering.
https://docs.telerik.com/kendo-ui/styles-and-layout/components-rendering-overview#state-classes

Environment

  • Kendo UI version: 2022.3.913
  • Browser: [all ]
Pending Review
Last Updated: 10 Mar 2020 19:24 by ADMIN
Created by: Tanmay
Comments: 1
Category: Editor
Type: Bug Report
0

 

It is showing Unknown tag (kendo:editor-pdf).

 

 

I want to use pdf with pagesize a4 but I am not able to use kendo:editor-pdf tag.

I am using kendo-taglib-2012.3.1322.jar.

Completed
Last Updated: 26 Nov 2018 09:13 by ADMIN

This is a regression since R3 2018 - GitHub issue.
The issue is reproducible when title is set as window tag attribute:

<kendo:window name="mywindow" title="mytitle">
    <kendo:window-content>
        <div id="warning-new-container">
            Message
        </div>
    </kendo:window-content>
</kendo:window>

Loading a page with the above configuration throws the following exception:
Unable to convert string [mytitle] to class [com.kendoui.taglib.window.TitleTag] for attribute [title]: [Property Editor not registered with the PropertyEditorManager]

Workaround:
Instead of using title attribute, set the title through window-title tag:

<kendo:window name="mywindow">
    <kendo:window-title text="mytitle" />
    <kendo:window-content>
        <div id="warning-new-container">
            Message
        </div>
    </kendo:window-content>
</kendo:window>




Pending Review
Last Updated: 08 Aug 2017 15:05 by Thomas
Created by: Thomas
Comments: 0
Category: UI for JSP
Type: Feature Request
1
Currently only "true" is possible. Like in HTML5 / Javascript passing an array of custom values (like documented) should be possible
Declined
Last Updated: 17 Jun 2017 08:04 by amir
Created by: Johan
Comments: 7
Category: UI for JSP
Type: Feature Request
19
I would like to see wrappers for Java Server Faces. The focus of Java EE development is on JSF and i.m.o. not on JSP. Look e.g at PrimeFaces (a lot of UI components). They are now developing as a spin off PrimeUI,  a Javascript UI component library.
Pending Review
Last Updated: 07 Sep 2016 17:48 by Gilbert
<kendo:grid-filterable extra="true"> 
<kendo:grid-filterable-operators> 
<kendo:grid-filterable-operators-enums neq="Is NOT equal to:" eq="Is equal to:" /> 
</kendo:grid-filterable-operators> 
</kendo:grid-filterable>

AND

<kendo:grid-filterable extra="true"> 
<kendo:grid-filterable-operators> 
<kendo:grid-filterable-operators-enums eq="Is equal to:" neq="Is NOT equal to:" /> 
</kendo:grid-filterable-operators> 
</kendo:grid-filterable>

always gives the same result: neq is always the first element in the filter combobox and eq est the second item.

Would be nice to control display order from the <kendo:grid-filterable-operators-enums /> JSP tag
Pending Review
Last Updated: 11 May 2016 11:46 by ADMIN
Created by: Dr Lambda
Comments: 2
Category: UI for JSP
Type: Feature Request
10
Play framework is probably the fastest growing framework in the Java space due to its container-less deployment and non-blocking IO features.
I think its an ideal vehicle for Kendo/Kendo MVVM to visit Java land for the first time!
Normally this means adopting logic-less mustache templating (see https://github.com/pk11/play-scalate/)  but other options may exist.
Pending Review
Last Updated: 29 Oct 2015 17:01 by ADMIN
Created by: Karl
Comments: 1
Category: UI for JSP
Type: Feature Request
4
Consider “Java” wrappers for the KendoUI . The use case for “Java” wrappers is for existing Java server side applications that embed the UI code in the Java classes (no JSP / JSF), similar to the Vaadin philosophy, but without having to adopt Vaadin and yet be able to incrementally enhance existing / stable, line of business web applications, without a complete rewrite.
Pending Review
Last Updated: 13 Jan 2015 14:29 by Kalle
Created by: Kalle
Comments: 0
Category: UI for JSP
Type: Feature Request
1
Allow generation of kendo:grid columns using JSP tags, such as c:forEach. Currently throws an error as grid:column needs its immediate parent to be a grid:columns tag.