Re: Bootstrap Confirmation [wicket-bootstrap-extensions 3.0.0-M10] + AjaxCheckBox

2019-05-07 Thread nino martinez wael
-actionForm-actionType&id=1","m":"POST","c":"actionTypebc","e":"change"});})();(function(){Wicket.Ajax.ajax({"u":"./show?3-1.0-outerForm-actionsContainer-actions-7-action-actionForm-formSubmit&id=1","m":&q

Bootstrap Confirmation [wicket-bootstrap-extensions 3.0.0-M10] + AjaxCheckBox

2019-05-07 Thread nino martinez wael
Does not stop Wicket event (the invocation of the click event on ajaxcheckbox) from happening, any idea on howto stop it when the user selects cancel? updateAjaxAttributes in AjaxCheckBox does support a precondition via ajaxCallListener but that needs to return true of false. But I cannot see howt

Re: thanks for wonderful work with Wicket 8.

2019-05-03 Thread nino martinez wael
ith spring boot :) On Fri, May 3, 2019 at 8:45 AM Ernesto Reinaldo Barreiro wrote: > Hi, > > On Fri, May 3, 2019 at 8:39 AM nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > I could use the > > > > Or a wicket wrapper for > > > http

Re: thanks for wonderful work with Wicket 8.

2019-05-02 Thread nino martinez wael
I could use the Or a wicket wrapper for > http://bootstrap-notify.remabledesigns.com/. :) On Thu, Apr 11, 2019 at 10:58 AM Ernesto Reinaldo Barreiro < reier...@gmail.com> wrote: > Hi Andrea, > > > > PS: we are voting for the first milestone of Wicket 9 to be released. If > > you have the chan

Automatic CSS marking of invalid form inputs / labels

2019-05-02 Thread nino martinez wael
So Ive been using this: https://cwiki.apache.org/confluence/display/WICKET/Automatic+styling+of+form+errors For a while, but it seems to be doing something wrong. IT traverses all the form components on the page and not only the ones for the submitted form (and adding them again ).. Have anybody

Re: [8.3] Nested Forms within a table?

2019-04-25 Thread nino martinez wael
rk for purists. > /rant off :) On Wed, Apr > 24, 2019 at 8:24 AM Maxim Solodovnik wrote: > if something "look like a > duck, walk like a duck and sound like a duck" - > it is duck :) > CSS > table are tables, but with no HTML '' tags :) > >

Re: [8.3] Nested Forms within a table?

2019-04-23 Thread nino martinez wael
able are tables, but with no HTML '' tags :) > > On Wed, 24 Apr 2019 at 13:22, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > if its CSS its not a table right? > > > > > > > > On Wed, Apr 24, 2019 at 7:25 A

Re: [8.3] Nested Forms within a table?

2019-04-23 Thread nino martinez wael
if its CSS its not a table right? On Wed, Apr 24, 2019 at 7:25 AM Maxim Solodovnik wrote: > Actually you can :) > But you need CSS tables for this :) > > On Wed, 24 Apr 2019 at 11:53, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > I agree wit

Re: [8.3] Nested Forms within a table?

2019-04-23 Thread nino martinez wael
s it is. > > > > WDYT? > > Sven > > > > Am 23.04.19 um 10:01 schrieb nino martinez wael: > > > Hi > > > > > > When nesting forms, the form tag are changed to an div and it is hard > > coded: > > > org/apache/wicket/markup/html/form/F

[8.3] Nested Forms within a table?

2019-04-23 Thread nino martinez wael
Hi When nesting forms, the form tag are changed to an div and it is hard coded: org/apache/wicket/markup/html/form/Form.java:1597 ... tag.setName("div"); ... If only I could change the tag to be tr, it would produce valid html. Are it deliberate to be hardcoded? -- Best regards / Med venlig h

Re: [8.x] form Input HTML5 form attribute?

2019-04-12 Thread nino martinez wael
orms.html#association-of-controls-and-forms > > Actually wicket do support nested forms for many years > > On Wed, 10 Apr 2019 at 16:05, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hi > > > > I am going through our designers html drafts and

[8.x] form Input HTML5 form attribute?

2019-04-10 Thread nino martinez wael
Hi I am going through our designers html drafts and can see they are wanting to use a hierarchical separated form from inputs.. Apparently its part of the HTML5 specification, is this something wicket supports? https://www.w3.org/TR/2011/WD-html5-20110525/association-of-controls-and-forms.html#a

Re: Wicket Spring boot versus actuator (wicket 8.2.0) + spring security (boot 2.1.2)

2019-01-25 Thread nino martinez wael
rties/MyWicketApplication.properties. > > In out previous project we used I18n.init() method but I'm thinking more > Wicket-y way, > maybe using BundleStringResourceLoader ? But so far no luck making that > work... > > Zbynek > > On Fri, Jan 25, 2019 at 6:34 AM nino mart

Re: Wicket Spring boot versus actuator (wicket 8.2.0) + spring security (boot 2.1.2)

2019-01-24 Thread nino martinez wael
sing @MountPath?). > The .loginProcessingUrl() points to "/fake-url" because the authentication > itself is called from Wicket login page > via AuthenticatedWebSession.get().signIn(). Or do you use other mechanism > in your Wicket login page? > > Zbynek > > On Thu, Jan 24,

Re: Wicket Spring boot versus actuator (wicket 8.2.0) + spring security (boot 2.1.2)

2019-01-24 Thread nino martinez wael
quot;actuator") .password(passwordEncoder().encode("actuator")).roles("ACTUATOR") .build()); return manager; } } On Thu, Jan 24, 2019 at 3:19 PM nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Thanks will try it

Re: Wicket Spring boot versus actuator (wicket 8.2.0) + spring security (boot 2.1.2)

2019-01-24 Thread nino martinez wael
@Bean(name = "authenticationManager") > public AuthenticationManager authenticationManagerBean() throws > Exception { > return super.authenticationManagerBean(); > } > } > } > > The RestSecurityConfigwould be what you would do for actu

Re: Wicket Spring boot versus actuator (wicket 8.2.0) + spring security (boot 2.1.2)

2019-01-24 Thread nino martinez wael
lar thing, the trick here is to use two > WebSecurityConfigurerAdaptes. > > Zbynek > > On Thu, Jan 24, 2019 at 2:55 PM nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hope its okay to use the wicket user mailing list for this:) > > > > First

Re: Wicket Spring boot versus actuator (wicket 8.2.0) + spring security (boot 2.1.2)

2019-01-24 Thread nino martinez wael
with yml is something like: > > management: > endpoints: > web: > exposure: > include: "*" > > On Thu, Jan 24, 2019 at 2:55 PM nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hope its okay to use the wicket

Wicket Spring boot versus actuator (wicket 8.2.0) + spring security (boot 2.1.2)

2019-01-24 Thread nino martinez wael
Hope its okay to use the wicket user mailing list for this:) First of all thanks to MarcGiffing for making the project. But I cannot get actuator endpoints to work with spring security and wicket spring boot.. I've tried a lot of things.. IN my WebSecurityConfigurerAdapter: http .authorizeRequ

Re: Wicket 8.1 + PAX Wicket 5 ConcurrentModificationException

2019-01-07 Thread nino martinez wael
Hi again, I've checked our own code again.. And on our team decided to have a seperate list of wicket components in a wicket page.. After refactoring this to use IVisitor it went away.. So please disregard previous mail:) On Mon, Jan 7, 2019 at 11:00 AM nino martinez wael < nino.ma

Wicket 8.1 + PAX Wicket 5 ConcurrentModificationException

2019-01-07 Thread nino martinez wael
Hi everyone, im one of the maintainers of pax wicket, and since we have upgraded to wicket 8.1 I am regularly getting this, the project I am getting this on are not using apache commons LinkedMap: 2019-01-07T09:58:04,024 | ERROR | org.ops4j.pax.wicket.util.serialization.PaxWicketObjectOutputStream

Re: Wicket Modal with a different javascript modal

2018-12-18 Thread nino martinez wael
I would roll my own implementation for that and hook into the ajax parts On Tue, 18 Dec 2018, 21:29 Entropy Our front-end developer doesn't like some of the behavior of the wicket > modal > with respect to 508 compliance. He has an alternative modal implementation > he'd prefer us to use. Is th

Re: Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-12-13 Thread nino martinez wael
> intuitive: > >>> > >>> > >> > https://github.com/nmwael/wicket/blob/master/wicket-examples/src/main/java/org/apache/wicket/examples/tree/BeginnersTreePage.java > >>> On Fri, Dec 7, 2018 at 5:48 PM Sven Meier wrote: > >>> > >&g

Re: Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-12-10 Thread nino martinez wael
/ to the ART, which is not allowed during rendering > getModelObject().add(node.getObject()); > } > return super.newContentComponent(id, node); > } > > Have fun > Sven > > Am 10.12.18 um 08:41 schrieb nino martinez wael: > > I have replicated

Re: Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-12-09 Thread nino martinez wael
s clearly that you add a component to the ART while > it is already rendering the response. > This is not allowed, and this wasn't allowed in previous version. > > You'll have to provide a quickstart to prove that it worked previously. > > Regards > Sven > > A

Re: Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-12-06 Thread nino martinez wael
@svenme...@apache.com what/how do I need to check during the call? For now I have a breakpoint the place in the code where it fails, but I need to figure out what closes the request target.. On Mon, Dec 3, 2018 at 10:55 AM nino martinez wael < nino.martinez.w...@gmail.com> wrote:

Re: http://examples7x.wicket.apache.org/ is down

2018-12-06 Thread nino martinez wael
yup it seems to be up again.:) On Thu, Dec 6, 2018 at 7:35 AM Maxim Solodovnik wrote: > Works for me (except for websockets) > what are your steps? > > On Thu, 6 Dec 2018 at 13:34, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: >

Re: http://examples7x.wicket.apache.org/ is down

2018-12-05 Thread nino martinez wael
the same with http://examples8x.wicket.apache.org/ On Wed, Nov 21, 2018 at 9:42 AM Martin Grigorov wrote: > Yes, it is a known problem. > Yesterday I shared a link to a ticket for Apache Infra about in dev@ : > https://issues.apache.org/jira/browse/INFRA-17280 > > On Wed, Nov 21, 2018 at 10:22 A

Re: Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-12-03 Thread nino martinez wael
hat pops a veil if the request are too long to load.. And some custom form handling aswell (auto show an marker for error'd form fields).. PS writing this for other to see, if they hit this challenge.. -Regards Nino On Thu, Nov 29, 2018 at 8:50 AM nino martinez wael < nino.martinez.w..

Re: Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-11-28 Thread nino martinez wael
currently unable to reproduce in examples, something must be wrong in my code.. I'll comeback if it turns out otherwise.. Thanks for helping :) On Thu, Nov 29, 2018 at 6:54 AM nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Yes I understand.. Let me see if it br

Re: Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-11-28 Thread nino martinez wael
Yes I understand.. Let me see if it breaks in wicket examples, or I can make it so.. Do you know another way to make a node/folder expand during construction time? Feels like the expand method are meant for ajax calls only. -regards Nino On Wed, Nov 28, 2018 at 4:16 PM sven wrote: > > > Hi Nino

Wicket 6.x -> Wicket 8.x extensions NestedTree expand fails ( Components can no longer be added)

2018-11-28 Thread nino martinez wael
Hi In wicket 6 this worked, there are another input field (ajax activated) that triggers the update : ChildAwareNestedTree profilePartitionTree = new ChildAwareNestedTree("skillsetSelect", provider, sharedExpansionState) { @Override protected Component newContentCompone

Spring cloud config or just config integration?

2018-10-04 Thread nino martinez wael
Have any one tried or seen a ui front that pops up in front of your normal app if it's not configured? In pax wicket we have one.. But are not able to find one at the spring stack? Regards Nino

Re: [Wicket 8m7] websockets?

2017-08-17 Thread nino martinez wael
need to use this filter org.apache.wicket.protocol.ws.javax.JavaxWebSocketFilter correct? On Thu, Aug 17, 2017 at 10:05 AM, Martin Grigorov wrote: > On Thu, Aug 17, 2017 at 10:51 AM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > so in it's simplest fo

Re: [Wicket 8m7] websockets?

2017-08-17 Thread nino martinez wael
hes.. It would be nice if there were a simple filter or way to determine if the websocket push were relevant for the actually push.. The current implementation does feel a little lowlevel.. On Thu, Aug 17, 2017 at 9:36 AM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Thank

Re: [Wicket 8m7] websockets?

2017-08-17 Thread nino martinez wael
call WebSocketBehavior#onPush() > where you can update any components > > We should add this to the guide! > > Martin > > On Aug 17, 2017 09:28, "nino martinez wael" > wrote: > > > But how do I then refresh the target from serverside? WebSocketBeha

Re: [Wicket 8m7] websockets?

2017-08-16 Thread nino martinez wael
But how do I then refresh the target from serverside? WebSocketBehavior does not have an method that lets me get a target? On Thu, Aug 17, 2017 at 7:45 AM, Martin Grigorov wrote: > Yes. > The API is the same. > > On Aug 17, 2017 08:44, "nino martinez wael" > wro

Re: [Wicket 8m7] websockets?

2017-08-16 Thread nino martinez wael
is there way to repaint an component like with ajax targets (target.add(component))? On Wed, Aug 16, 2017 at 1:57 PM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > I'snt there something more simple? > > On Wed, Aug 16, 2017 at 1:54 PM, Martin Grigorov &

Re: [Wicket 8m7] websockets?

2017-08-16 Thread nino martinez wael
t/examples/websocket > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Aug 16, 2017 at 2:52 PM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hi > > > > I am looking into Wicket 8 and w

[Wicket 8m7] websockets?

2017-08-16 Thread nino martinez wael
Hi I am looking into Wicket 8 and websockets using pax wicket, in my case I am using jetty 9.3.14. I want to do a simple websocket sample.. However I cannot find something as simple as a AjaxSelfUpdatingTimerBehavior as an websocket behavior.. So whats the simplest way todo a websocket example t

[wicket 6.22] org.wicketstuff.jwicket.tooltip.BeautyTips

2017-03-02 Thread nino martinez wael
Hi Im trying to use beautytips.. But are getting a null pointer when the component renders, i've done this: BeautyTips lokalnrTooltip = new BeautyTips("Brugerens 5-cifrede lokalnr, eller et 6-7 cifret fiktiv nr. Skal altid udfyldes!"); lokalnr.add(lokalnrTooltip); Anything else needs to be done?

http://examples8x.wicket.apache.org/websockets/ partial down?

2017-02-20 Thread nino martinez wael
Does not seem to work? Also clicking source code gives an internal error.. Once there where disk space problems..? -- Best regards / Med venlig hilsen Nino Martinez

Re: Wicket 6.23 Jquery reference settings

2017-01-19 Thread nino martinez wael
It could either be that its just missing or that wicket would not be compatible with 2.x og jquery... On Thu, Jan 19, 2017 at 10:11 AM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Yeah I know, just wanted to know why there's no nice setting in > JQueryResourceRe

Re: Wicket 6.23 Jquery reference settings

2017-01-19 Thread nino martinez wael
nce that loads any specific > version you need. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Thu, Jan 19, 2017 at 9:20 AM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hi from what I can see

Wicket 6.23 Jquery reference settings

2017-01-19 Thread nino martinez wael
Hi from what I can see wicket 6.23 ships with both jquery 1.x and 2.x, how can I tell wicket to use the 2.x version? Looking in JQueryResourceReference it only has version 1.x... -- Best regards / Med venlig hilsen Nino Martinez

Re: AbstractToolbar vs AjaxFallbackDefaultDataTable

2016-12-29 Thread nino martinez wael
Thu, Dec 29, 2016 at 9:37 AM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Hi > > I am having a little trouble, making my own toolbar. Currently on > pagination change my toolbar are added, but the old toolbar are not removed > / updated. So for every click on p

AbstractToolbar vs AjaxFallbackDefaultDataTable

2016-12-29 Thread nino martinez wael
Hi I am having a little trouble, making my own toolbar. Currently on pagination change my toolbar are added, but the old toolbar are not removed / updated. So for every click on pagination, additional toolbars are added. Short story: User clicks page 2 on AjaxFallbackDefaultDataTable User now see

Re: wicket 6.22 set mimetype for resource?

2016-09-19 Thread nino martinez wael
ok im trying the Application#getMimeType(String) approach.. Thanks On Mon, Sep 19, 2016 at 6:17 PM, nino martinez wael wrote: > I have no web.xml it's pax wicket running on karaf.. > > Can I overwrite Application#getMimeType(String)? from wicket application? > > And next thi

Re: wicket 6.22 set mimetype for resource?

2016-09-19 Thread nino martinez wael
.. On Mon, Sep 19, 2016 at 5:06 PM, Sven Meier wrote: > Hi, > > have you tried adding a mime-type to your web.xml > > http://stackoverflow.com/questions/10163917/changing-mime-type-for-xml-gz-in-tomcat > > ... or overwriting Application#getMimeType(String)? > > Have fun

wicket 6.22 set mimetype for resource?

2016-09-19 Thread nino martinez wael
Hi How can I set a specific mimetype for a resource(packaged resource)? in this case I need to set mimetype application/vnd.ms-fontobject Im having troubles with bootstrap and IE.. -- Best regards / Med venlig hilsen Nino Martinez ---

Re: stop wicket from rewriting references in my css file

2016-06-22 Thread nino martinez wael
> kind regards > > Tobias > >> Am 16.06.2016 um 08:12 schrieb nino martinez wael >> : >> >> Ok it looks like it could be something like that. BUT,i've changed >> nothing from stock options. Could that be enabled by default in 6.22 . >> Other op

Re: stop wicket from rewriting references in my css file

2016-06-15 Thread nino martinez wael
rceSettings#(get|set)CssCompressor(). > It sounds like it is currently set to an instance of CssUrlReplacer in your > app, as that rewrites all references in CSS. > > Met vriendelijke groet, > Kind regards, > > Bas Gooren > > Op 15 juni 2016 bij 12:11:12, nino martinez wael >

Re: stop wicket from rewriting references in my css file

2016-06-15 Thread nino martinez wael
I forgot to mention that it's wicket 6.22 On Wed, Jun 15, 2016 at 12:11 PM, nino martinez wael wrote: > Hi > > I currently have an issue where I add a shared css resource, but > wicket rewrites all references in the resource. I can't seem to find > the setting to tur

stop wicket from rewriting references in my css file

2016-06-15 Thread nino martinez wael
Hi I currently have an issue where I add a shared css resource, but wicket rewrites all references in the resource. I can't seem to find the setting to turn of that part of wickets processing? -- Best regards / Med venlig hilsen Nino Martinez

Re: remove listitem from listview backed by loadabledetachablemodel inside a form

2016-06-08 Thread nino martinez wael
08/10/repainting-only-newly-created-repeater-items-via-ajax/ > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Jun 8, 2016 at 7:43 PM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > >> Hi >> >&

remove listitem from listview backed by loadabledetachablemodel inside a form

2016-06-08 Thread nino martinez wael
Hi Are there a way to remove one or more list items from a listview backed by a loadabledetachablemodel that are inside a form? I seem to be stuck at only be able to remove the current clicked item.. This applies whether or not ajax are used.. I think it's because the detachable model are detache

Re: [Released] PAX-Wicket 3.0.4 now out!

2016-05-30 Thread nino martinez wael
f 4.x, while retaining compability the other containers >> >> Major features >> * Working with Karaf 4.x (Nino Martinez Wael) >> * Working wik Wicket 6.22 (Nino Martinez Wael) >> * Karaf Feature files for all samples (Nino Martinez Wael) >> * Alternative Wicket

[Released] PAX-Wicket 3.0.4 now out!

2016-05-30 Thread nino martinez wael
PAX-Wicket 3.0.4, running Wicket OSGI style Main goal for this release are to bring PAX-Wicket to working state on Apache Karaf 4.x, while retaining compability the other containers Major features * Working with Karaf 4.x (Nino Martinez Wael) * Working wik Wicket 6.22 (Nino Martinez Wael

Re: Backing components with map as model?

2016-04-29 Thread nino martinez wael
ck > PropertyModel and PropertyResolver's javadoc for examples. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Apr 29, 2016 at 8:13 AM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > >> Hi

Backing components with map as model?

2016-04-28 Thread nino martinez wael
Hi I weakly remember something about one being able to back a component with a map as model.. The usecase are that the datamodel er not ready but we have a pretty good picture of how the ui should look. So I want to be able to pseudo implement it in wicket without having to wait for the backend d

[7.2] ContextRelativeResourceReference

2016-03-31 Thread nino martinez wael
I am having a hard time getting the ContextRelativeResourceReference to work. I thought it was supposed to grab the specified resource from the web container relative to where the wicketapplication where mounted. In my case my directory layout are like the attached image. And I have configured j

Re: [7.2] LoadableDetachable model attached but object null?

2016-03-16 Thread nino martinez wael
Our backend threw a null, which gave problems in other places..SO this is not a wicket problem :) On Wed, Mar 16, 2016 at 9:18 AM, nino martinez wael wrote: > Now this is really strange! I can confirm that load are being called. > I will digg further, looks like it could be some k

Re: [7.2] multiple pages Access Denied

2016-03-16 Thread nino martinez wael
Our backend threw a null, which gave problems in other places..SO this is not a wicket problem :) On Fri, Mar 11, 2016 at 11:47 AM, nino martinez wael wrote: > IT would appear so. BUT we actually do not have a direct link between > A and B, in our testing we manually open a secondary tab a

Re: [7.2] LoadableDetachable model attached but object null?

2016-03-16 Thread nino martinez wael
at 9:08 AM, nino martinez wael wrote: > Hi Sven > > I agree. But in this case it seems that load are never being called > because state=attached.. :( > > I will check whether detached are ever being called. > > On Wed, Mar 16, 2016 at 8:52 AM, Sven Meier wrote: >> Hi

Re: [7.2] LoadableDetachable model attached but object null?

2016-03-16 Thread nino martinez wael
> > Sven > > On 16.03.2016 08:48, nino martinez wael wrote: >> >> Hi >> >> Any ideas on how a loadableDetachableModel can become in attached >> state but the refered object are null? Seems to be out of sync? >> > > >

[7.2] LoadableDetachable model attached but object null?

2016-03-16 Thread nino martinez wael
Hi Any ideas on how a loadableDetachableModel can become in attached state but the refered object are null? Seems to be out of sync? -- Best regards / Med venlig hilsen Nino Martinez - To unsubscribe, e-mail: users-unsubscr...@

Re: [7.2] multiple pages Access Denied

2016-03-11 Thread nino martinez wael
gt; On Fri, Mar 11, 2016 at 9:25 AM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > >> Hi >> >> I have something strange (as always). Two pages A and B >> >> If I open the two pages in the same session on two different tabs. >> Invok

[7.2] multiple pages Access Denied

2016-03-11 Thread nino martinez wael
Hi I have something strange (as always). Two pages A and B If I open the two pages in the same session on two different tabs. Invoking an ajax behavior (wicket modal panel) yields Access Denied stack tells me this: Behavior rejected interface invocation. Component: [AjaxLink [Component id = ad

Re: Wicket Bootstrap & wicket 7.2

2016-03-10 Thread nino martinez wael
of both in my project. > On Mar 10, 2016 12:09 AM, "nino martinez wael" > wrote: > >> I've added an issue here: >> >> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/590 >> >> Cant remenber if theres actually an example for it in the

Re: Wicket Bootstrap & wicket 7.2

2016-03-09 Thread nino martinez wael
11:59 PM, "nino martinez wael" > wrote: >> >> Have anyone used this in conjuction with wicket 7.2.. I had to upgrade >> to wicket 7.2 because of problems with [WICKET-6002].. >> >> But wicket bootstrap throws strange exceptions about missing fields >>

Wicket Bootstrap & wicket 7.2

2016-03-09 Thread nino martinez wael
Have anyone used this in conjuction with wicket 7.2.. I had to upgrade to wicket 7.2 because of problems with [WICKET-6002].. But wicket bootstrap throws strange exceptions about missing fields that it did not do in 7.1. -- Best regards / Med venlig hilsen Nino Martinez ---

Re: Wicket cheat sheet updated?

2016-01-08 Thread nino martinez wael
c. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Jan 8, 2016 at 8:25 AM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hi Guys > > > > I'ts been a while.. > > > > Have a

Wicket cheat sheet updated?

2016-01-07 Thread nino martinez wael
Hi Guys I'ts been a while.. Have anyone done an overview like this for the current version of wicket? https://cwiki.apache.org/confluence/download/attachments/87268/wicketcheatsheet.pdf?version=1&modificationDate=121245471&api=v2 Im mostly thinking of references to external projects.. IE I

Re: New Wicket Website

2015-08-21 Thread nino martinez wael
and its up again.. On Fri, Aug 21, 2015 at 11:40 AM, nino martinez wael wrote: > argh! that was supposed to be inmethod grid > > On Fri, Aug 21, 2015 at 11:39 AM, nino martinez wael > wrote: >> I was cruising by, seems ingrid live examples are down: >> >> http://w

Re: New Wicket Website

2015-08-21 Thread nino martinez wael
argh! that was supposed to be inmethod grid On Fri, Aug 21, 2015 at 11:39 AM, nino martinez wael wrote: > I was cruising by, seems ingrid live examples are down: > > http://www.wicket-library.com/inmethod-grid/data-grid/simple > > On Sun, Jul 12, 2015 at 9:23 AM, Ernesto Re

Re: New Wicket Website

2015-08-21 Thread nino martinez wael
I was cruising by, seems ingrid live examples are down: http://www.wicket-library.com/inmethod-grid/data-grid/simple On Sun, Jul 12, 2015 at 9:23 AM, Ernesto Reinaldo Barreiro wrote: > Thanks! > > On Sat, Jul 11, 2015 at 8:01 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: >

Re: Testing Wicket app with JMeter

2014-07-18 Thread nino martinez wael
Hi there's an article on the wicket wiki On 18 Jul 2014 15:34, "Sandor Feher" wrote: > Hi, > > I must perform some load test for our application and just found JMeter > which seems suit our needs. > My problem is that the first step is logging in to the app and can not get > JMeter to manage it.

Brix dead?

2014-04-17 Thread nino martinez wael
How are brix moving along...seems to be a little dead, not much going on in github? Regards Nino

Re: Wicket merchandise

2013-10-30 Thread nino martinez wael
gards to you all and I hope to do this again :) You can support this thing by buying from : www.*cafepress*.com/*apachewicket* If you feel the prices are too high, I have the base images available (somewhere) upon email request. 2013/9/18 nino martinez wael > Hi Guys > > lo

Re: Wicket merchandise

2013-09-18 Thread nino martinez wael
-) > > Pierre > > > > On Wed, Sep 18, 2013 at 9:23 PM, Martin Grigorov >wrote: > > > Sven Meier +1 > > > > > > On Wed, Sep 18, 2013 at 10:10 PM, nino martinez wael < > > nino.martinez.w...@gmail.com> wrote: > > > > > H

Re: Wicket merchandise

2013-09-18 Thread nino martinez wael
could you set up nominees one something like this : http://www.easypolls.net/ ? 2013/9/18 Martin Grigorov > Sven Meier +1 > > > On Wed, Sep 18, 2013 at 10:10 PM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hi Guys > > > > long tim

Wicket merchandise

2013-09-18 Thread nino martinez wael
Hi Guys long time no see.. Apparently there are some money left on the wicket merchandise shop (http://www.cafepress.com/apachewicket).. So I suggest that it's time for the community to nominee and vote on who should have a cap, tshirt or coffee mug for their effort.. So if someone would gather n

Re: SessionStore

2012-10-02 Thread nino martinez wael
Great wasnt sure if it were memory only.. 2012/10/2 Martin Grigorov > org.apache.wicket.pageStore.memory.HttpSessionDataStore > > On Tue, Oct 2, 2012 at 3:49 PM, nino martinez wael > wrote: > > Hi > > > > Are there a memory only session store? I am seeing a lot

Re: 1.5 -> 6 wheres org.apache.wicket.ajax.IAjaxCallDecorator?

2012-09-28 Thread nino martinez wael
thanks everyone.. 2012/9/28 Timo Schmidt > On Fri 28.09.2012 14:34, nino martinez wael wrote: > > So where is it? What should I do ? > > > > I could not find anything about it here: > > > https://cwiki.apache.org/WICKET/migration-to-wicket-60.html#Migrationto

Re: Performance tuning Wicket[1.5]...

2012-08-31 Thread nino martinez wael
30-june-1-july-2012-fix/ > >-Tom > > > On 31.08.2012, at 12:19, nino martinez wael > wrote: > > > No what I meant was that the system er performing as good as it can, > > without clustering etc. There weren't much stuff to optimize on. > > >

Re: Performance tuning Wicket[1.5]...

2012-08-31 Thread nino martinez wael
No what I meant was that the system er performing as good as it can, without clustering etc. There weren't much stuff to optimize on. 2012/8/31 Alex Shubert > Maybe bottleneck is somewhere else? SQL request maybe? Some eager > loading... > > On 29 August 2012 10:31, nino marti

Re: Performance tuning Wicket[1.5]...

2012-08-28 Thread nino martinez wael
ng fix for tomcat/wicket).. Other than that there werent many hotspots. regards Nino 2012/8/27 nino martinez wael > Yup, I'll do that another round.. Although I'll use visualvm... > > > 2012/8/27 Martin Grigorov > >> Fire Yourkit/JProfiler and see what they say. &g

Re: Performance tuning Wicket[1.5]...

2012-08-27 Thread nino martinez wael
Yup, I'll do that another round.. Although I'll use visualvm... 2012/8/27 Martin Grigorov > Fire Yourkit/JProfiler and see what they say. > > On Mon, Aug 27, 2012 at 2:45 PM, nino martinez wael > wrote: > > Hi > > > > Im seeing a load on our

Re: Form and behaviors

2012-08-15 Thread nino martinez wael
seems to be a bug in our app.. 2012/8/15 nino martinez wael > If a form is disabled does it not evaluate its behaviors? > > In my case I have a css appender which does not seem to be evaluated when > form are disabled > -- Best regards / Med venlig hilsen Nino Martinez

portlet support in 1.5 & 1.6?

2012-06-04 Thread nino martinez wael
So is there any? -- Best regards / Med venlig hilsen Nino Martinez

Re: wicket 6 beta 1

2012-05-23 Thread nino martinez wael
Would be Nice with a hint about that.. Regards On May 23, 2012 2:51 PM, "Martin Grigorov" wrote: > adding the page for ajax re-render actually rerenders the page with a > redirect. > So, the answer is NO. > > On Wed, May 23, 2012 at 3:44 PM, nino martinez wael > wro

wicket 6 beta 1

2012-05-23 Thread nino martinez wael
Hi Should'nt it be possible to this: target.add(*this*.getComponent().getPage()); target.appendJavaScript(" $('."+*this*.getComponent().getMarkupId()+ "').focus();"); However the appendJavaScript is omitted... -- Best regards / Med venlig hilsen Nino Martinez

Re: 1.5 Stared blind patterndateconverter

2012-04-16 Thread nino martinez wael
9:21" ! Gonna ask the joda guys why this happens! 2012/4/17 nino martinez wael > I could be something with the time zone: > > this fails aswell: > > PatternDateConverter converter=new PatternDateConverter("HH:mm", false); > Calendar instance = Calendar.

Re: 1.5 Stared blind patterndateconverter

2012-04-16 Thread nino martinez wael
I could be something with the time zone: this fails aswell: PatternDateConverter converter=new PatternDateConverter("HH:mm", false); Calendar instance = Calendar.getInstance(); instance.set(1900, 0, 1, 0, 0,0); Date dateModified=instance.getTime(); String result=converter.convertToString(dateMo

Re: attributeappender not rendered / processed

2012-03-28 Thread nino martinez wael
fyi it was a bug in our code 2012/3/23 nino martinez wael > Yes are using ajax, but it's the same when not using ajax.. > > > 2012/3/23 Michal Wegrzyn > >> Are you using ajax? Maybe you are adding appender but form container is >> not added to the ajax targe

Re: attributeappender not rendered / processed

2012-03-23 Thread nino martinez wael
Yes are using ajax, but it's the same when not using ajax.. 2012/3/23 Michal Wegrzyn > Are you using ajax? Maybe you are adding appender but form container is > not added to the ajax target? > > Best regards, > Michal Wegrzyn > > > -Original Message-

RE: attributeappender not rendered / processed

2012-03-23 Thread nino martinez wael
alue is null. Debug if there is a > need. > > Best regards, > Michal Wegrzyn > > > -----Original Message- > > From: nino martinez wael [mailto:nino.martinez.w...@gmail.com] > > Sent: Friday, March 23, 2012 15:48 > > To: users@wicket.apache.org > &g

attributeappender not rendered / processed

2012-03-23 Thread nino martinez wael
Hi Im wondering what could cause a attributeappender not to be rendered? One thing I guess would be if the component are not enabled.. heres my code: AttributeAppender attributeAppender = AttributeModifier.append( "class", new Model(getCssClass())); triggerSchedulePanel.getFormContainer().add(at

Re: Serialize exceptions

2012-03-22 Thread nino martinez wael
> > On Thu, Mar 22, 2012 at 7:56 AM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > > Hi heres a part of the stacktrace, im wondering why it bypasses the > proxy, > > I thought it would never venture beyond that: > > > > 2012-03-22 15:

Re: Serialize exceptions

2012-03-22 Thread nino martinez wael
Hi heres a part of the stacktrace, im wondering why it bypasses the proxy, I thought it would never venture beyond that: 2012-03-22 15:51:55,739 ERROR [org.apache.wicket.serialize.java.JavaSerializer] - Error serializing object class com.netdesign.wallboard.page.ViewerPage [object=[Page class = c

  1   2   3   4   5   6   7   8   9   10   >