Hi Rene,Yes, you are right. I also notice the toolbar display is somehow different, maybe something is broken since the last upgrade...The Datable/Grid also has something strange with the navigation button. I will check this asap....Thanks and best regards,Sebastien
--
You received this message because you are subscribed to the Google Groups "wicket-jquery-ui" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wicket-jquery-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wicket-jquery-ui/e1e5b807-c83a-4497-80d6-283d94423861o%40googlegroups.com.
Hi René,So there were 2 issues:1/ the bad display was because I forgot to update the cdn link for kendo-all (profesional version); So the built-in theme did not match the javascript library (this was affecting the demo website only)2/ the editor that does not takes the table into account was because the sanitize policy did not allow it. I changed the policy but that will be in the next release. In the meantime you can apply it on your code like this:final Editor editor = new Editor("editor", Model.of("<p>test</p>")) {
private static final long serialVersionUID = 1L;
@Override
protected PolicyFactory newPolicyFactory()
{
return new HtmlPolicyBuilder()
.allowStyling()
.allowCommonBlockElements()
.allowCommonInlineFormattingElements()
.allowElements("a").allowAttributes("href", "target").onElements("a")
.allowElements("table", "tbody", "thead", "th", "tr", "td")
.allowAttributes("size").onElements("font")
.allowAttributes("class", "style").globally()
.toFactory();
}
};i will redeploy the demo website later today.Thanks again for pointing the issue,Best regards,Sebastien
On Wed, Jun 10, 2020 at 9:50 PM René Aravena <rene....@gmail.com> wrote:
Ok Sebastien, thank you.--Rene
El lunes, 8 de junio de 2020, 16:42:27 (UTC-5), René Aravena escribió:Hi, Sebastien,I've been testing the kendo editor in the demo page (http://www.7thweb.net/wicket-jquery-ui/kendo/editor/) and when you use an html table and you fill the cells with some data when you click on the Display button, the result doesn't show the table (tr,td) tags, but only <p> or nothing, in other words, you lose an important part of the html structure, do you have any idea about?Thank you.René.
You received this message because you are subscribed to the Google Groups "wicket-jquery-ui" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wicket-j...@googlegroups.com.