Jakarta Telerik UI For JSP

1 Answer 138 Views
General Disccussions
Dima
Top achievements
Rank 1
Dima asked on 24 Jan 2023, 06:22 PM
Is Telerik UI For JSP compatible with Jakarta EE9 or 10?

1 Answer, 1 is accepted

Sort by
0
Georgi Denchev
Telerik team
answered on 27 Jan 2023, 09:28 AM

Hello, Dima,

The JSP Wrappers aren't tested with Jakarta EE, so it is indeed possible that there are compatibility issues. The Kendo UI library itself is compatible with any Framework as it is using JavaScript at its core.

The JSP wrappers are transformed into JavaScript code once the application is compiled. If you're having issues with the wrappers, then my recommendation would be to use the standard jQuery components instead.

The server logic can be written using Jakarta EE9/10 or any other framework as it will be simply handling the requests.

Example

The following example uses the JSP wrappers:

<kendo:textBox name="textbox">
    <kendo:textBox-label content="Name" floating="true"></kendo:textBox-label>
</kendo:textBox>

The following example is the exact same as the above one:

<input id="textbox" />

<script>
$("#textbox").kendoTextBox({
  label: {
   content: "Name",
   floating: true
  }
});
</script>

Additional Information

I'll speak to our Product Managers regarding the support of Jakarta EE and I'll let you know in case they provide me with some additional information.

Best Regards,
Georgi Denchev
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Marcel
Top achievements
Rank 1
commented on 06 Mar 2023, 10:34 AM

Hello Georgi,

do you have any news regarding the Jakarta EE support?

We have to provide a working solution for our clients. Your proposal to change the JSP-Wrapper in favor of plain jQuery is not feasible for us, as all JSPs would have to be rewritten.

Thank you very much in advance.

Best Regards

Georgi Denchev
Telerik team
commented on 09 Mar 2023, 09:06 AM

Hi, Marcel,

I still don't have any concrete information regarding the JSP wrappers.

I'll write back here as soon as I have any details on the matter.

Best Regards,

Georgi

Tags
General Disccussions
Asked by
Dima
Top achievements
Rank 1
Answers by
Georgi Denchev
Telerik team
Share this question
or