Wicket 8 and Edge : Known compatibilities problem ?

2019-01-24 Thread andre seame
Hello, I have a wicket application that is Ok with Mozilla. My company will to use windows 10 and Edge. I did some test and I have an error message : You need a new application to see this page. Is this a know bug for edge ? A bad configuration of my HTML code ? a New security option of the net

RE: hyperlink to a file on the server but ouside of the wicket war ? (solved)

2016-10-07 Thread andre seame
See ResourceLink component. On Oct 5, 2016 6:18 PM, "andre seame" wrote: > Hello, > > > I have a windows server with TOMCAT and a wicket application in > d:\apache-tomcat\webapps\mywcketapplication.war > > > On this server, I have a shared disk where someone

hyperlink to a file on the server but ouside of the wicket war ?

2016-10-05 Thread andre seame
Hello, I have a windows server with TOMCAT and a wicket application in d:\apache-tomcat\webapps\mywcketapplication.war On this server, I have a shared disk where someone has put \\myserver\TestResults\image_timestamp.png. The wicket application can access to the file throught : d:/TestRsul

RE: Having an array that manage the header raw and cells or adding colunm action to a cell array ?

2016-08-29 Thread andre seame
643136/rWBpAHsz_400x400.jpeg]<https://twitter.com/mtgrigorov> Martin Grigorov (@mtgrigorov) | Twitter<https://twitter.com/mtgrigorov> twitter.com The latest Tweets from Martin Grigorov (@mtgrigorov). Funemployed. R&D guy. Freelancer in the Scala/Java/Web/Wicket universe. Bulgaria

Having an array that manage the header raw and cells or adding colunm action to a cell array ?

2016-08-29 Thread andre seame
Hello, I have already written a HTML page 1 with a repeater that works on line level. In the header of the array, I have a complex header, with the name of the column, filtering and sorting capabilities. Each line of the array has the same number of cells I have already written a HTML page 2

RE: wicket-async-task or asynchronous task with wicket

2016-05-11 Thread andre seame
Hello, I found : http://wicketinaction.com that points https://github.com/raphw/wicket-async-task. Is this code the best way of doing asynchronous code with wicket ? Thanks, PHL. De : andre seame Envoyé : mercredi 11 mai 2016 16:25 À : users

wicket-async-task

2016-05-11 Thread andre seame
Hello, When loading data from database, I would like to create my own (textual) progression bar. I create a small code (from World Clock Example) that uses ajax. The code does not work. In fact, the wicket renderer does not nothing, it wait

Easy way to have a progression bar during repeater

2016-05-11 Thread andre seame
Hello, In first approximation, inDataTableFilterToolbarPage the code is : 1) Get Data from "external Database" (in fact, the example build more or less random data) and put in memory list 2) Use repeater wicket code to display the list to the end user. Therefore the Wicket Html is just : [

RE: How to extends repeater.data.table.HeadersToolbar (How to resolve CssAttributeBehavior) ?

2016-04-25 Thread andre seame
super(table); // ... do custom stuff } Have fun Sven On 25.04.2016 00:45, andre seame wrote: > I would like to modify > > org.apache.wicket.extensions.markup.html.repeater.data.table.HeadersToolbar.ht

How to extends repeater.data.table.HeadersToolbar (How to resolve CssAttributeBehavior) ?

2016-04-24 Thread andre seame
I would like to modify org.apache.wicket.extensions.markup.html.repeater.data.table.HeadersToolbar.html and org.apache.wicket.extensions.markup.html.repeater.data.table.HeadersToolbar.java. So I would to create myHeadersToolbar that extends org.apache.wicket.extensions.markup.html.repeater.da

Expected: 'filterForm:tableWithFilterForm:topToolbars:toolbars:3:headers:3:header:blockh:tf_h'. Found with similar names: 'filterForm:tf_h'

2016-04-13 Thread andre seame
Hello, The error message is: Unexpected RuntimeException Last cause: Unable to find component with id 'tf_h' in [WebMarkupContainer [Component id = blockh]] Expected: 'filterForm:tableWithFilterForm:topToolbars:toolbars:3:headers:3:header:blockh:tf_h'. Found with similar nam

Test with IMarkupResourceStreamProvider and using IMarkupResourceStreamProvider for input

2016-03-30 Thread andre seame
Hello, 1°) According the advices of this mailing list, I try to use IMarkupResourceStreamProvider as described in https://ci.apache.org/projects/wicket/guide/7.x/guide/single.html#advanced_5 When using something like: public class AutoMarkupGenPanel extends Panel implements IMarkupResourceStre

RE: HTML markup file generated by code or HTML markup file with parameter

2016-03-26 Thread andre seame
Mar 25, 2016 at 12:19 PM, andre seame wrote: > >> Hello, >> >> Question? >> I would like to create a component.java that is associated to a HTML >> markup file component.html, but a part of the markup file must be dynamic. >> >

HTML markup file generated by code or HTML markup file with parameter

2016-03-25 Thread andre seame
Hello, Question? I would like to create a component.java that is associated to a HTML markup file component.html, but a part of the markup file must be dynamic. Why? A standard form is associated to a HTML markup file like: ... ... .. ... But, I would like to group the input fields with othe

RE: Misunderstanding : Unable to find component with id 'phl' or A child with id 'phl' already exists:

2016-03-22 Thread andre seame
The ajout method is a debug method. The main objective is that the method HeadersToolbar//HeadersToolbar(final DataTable/RefreshingView>//Iterator>>//populateItem(Item> item) is able to modify the content of "getheader" that is the X1 object (X1 is a for debug). In case 1 - I use "ajout" and

Misunderstanding : Unable to find component with id 'phl' or A child with id 'phl' already exists:

2016-03-21 Thread andre seame
Hello, I try to modify the header of a table. So according to the advice of this mailing list, I write public class DataTableFilterToolbarPage extends WebPage { /** * constructor */ public DataTableFilterToolbarPage() { List> columns = new ArrayList>();

RE: Is there any pointers to change the markup header of a column or propertyColumn ?

2016-03-14 Thread andre seame
; > for example > > @Override > public void populateItem(Item> item, String componentId, > IModel rowModel) { > item.add(new YYYPanel(item, componentId, rowModel)); > } > > Then you create the YYYPanel.java and the html file > XXXPropertyColumn$YYYPanel.html

Is there any pointers to change the markup header of a column or propertyColumn ?

2016-03-09 Thread andre seame
Hello, In DataTableFilterToolbarPag, we use columns.add(new PropertyColumn ... I would like to modify the content of the header of this column. Must I do "replace the header component of the header of column" ? But how to do that? Must i my own column objects? I imlagine that the header (

RE: Bug in example ? repeater.DataTableFilterToolbarPage

2016-03-09 Thread andre seame
You have right, the "size" was broken. Thanks PHL. De : Martin Grigorov Envoyé : vendredi 4 mars 2016 07:26 À : users@wicket.apache.org Objet : Re: Bug in example ? repeater.DataTableFilterToolbarPage Hi, On Fri, Mar 4, 2016 at 1:44 AM, a

Bug in example ? repeater.DataTableFilterToolbarPage

2016-03-03 Thread andre seame
Hello, I try to understand the DataTableFilterToolbarPage. In Versin 6.21 and 6.22. I have 2 problems : * If I use the date filter to get 2 anwsers, I got exception. * If I suppress the exception (see the following paragraph), the "Pager" is not updated. So I have the 2 answer on the f

Filtering capabilities in TH (Array Header) or for dataview.

2016-02-26 Thread andre seame
Hello The DataTableFilterToolbarPage demonstrates the capability of filtering dates for a Datatable. Great. I would like to have an array of . Column 1 and 2 are sortable (ASC or DESC). Column 3 and 4 (the dates) are sortable and filterable. I would like to have a different presentation as Dat

Quesitont about .repeater.DataTableFilterToolbarPage : mutliple fitered

2016-02-19 Thread andre seame
Hello, The repeater.DataTableFilterToolpage demonstrates a unique filter. My questions are : - I

Repater : How to colspan cell on a line

2016-01-22 Thread andre seame
Hello, By using the simple example of repeater, it is easy to create a HTML table of contacts. Example 1 In my case, the data are not contacts but a list of tasks. So I would like to have : <.. colspan = 2 ...>Liste of tasks of January 2016 => The line i

RE: Publish Javadoc or big number of Static pages

2014-01-14 Thread andre seame
of those 200 static HTML pages? > Do you need to authenticate the user first or something before they can > view the static content? > > > On Fri, Jan 10, 2014 at 12:23 PM, andre seame wrote: > > > > > > > Hello, > > > > > > > > I &g

Publish Javadoc or big number of Static pages

2014-01-10 Thread andre seame
Hello, I have a wicket site to manage different points on the project. I receive 200 HTML pages for the developer teams. These pages are "javadoc" pages. I add some dynamic pages built over the static pages with wicket. And I will to publish all pages with wicket. As I have static HTML pag