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

2019-05-07 Thread nino martinez wael
n(){Wicket.Ajax.ajax({"u":"./show?3-1.0-outerForm-actionsContainer-actions-7-action-actionForm-formSubmit=1","m":"POST","c":"formSubmitbe","f":"actionFormbd","sc":"actionsContainer:actions:7:action:

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

2019-05-07 Thread nino martinez wael
howto use it via Bootstrap confirmation.. Does anyone have an idea howto solve this problem? Link to bootstrap confirmation: https://bootstrap-confirmation.js.org/ -- Best regards / Med venlig hilsen Nino Martinez

Re: thanks for wonderful work with Wicket 8.

2019-05-03 Thread nino martinez wael
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://bootstr

Re: thanks for wonderful work with Wicket 8.

2019-05-02 Thread nino martinez wael
nd recompiles it, when I created this component I was looking > around and found nothing similar. Or a wicket wrapper for > http://bootstrap-notify.remabledesigns.com/. And some other Wicket things > that might benefit community. But this decisions do not depend on me, > > -- > Regards - Ernesto Reinaldo Barreiro > -- Best regards / Med venlig hilsen Nino Martinez

Automatic CSS marking of invalid form inputs / labels

2019-05-02 Thread nino martinez wael
anybody done a better / more optimised version? -- Best regards / Med venlig hilsen Nino Martinez

Re: [8.3] Nested Forms within a table?

2019-04-25 Thread nino martinez wael
ists. > /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 :) > > On Wed, 24 Apr 2019

Re: [8.3] Nested Forms within a table?

2019-04-24 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 AM

Re: [8.3] Nested Forms within a table?

2019-04-24 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

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
Med venlig hilsen Nino Martinez

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
#attr-fae-form Their reason for this, I think are to use tables for organizing tabular editable data. But as a form cannot be hierarchical inside a tr they just store it besides it in a td..And connect the inputs via the form attribute. -- Best regards / Med venlig hilsen Nino Martinez

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

2019-01-25 Thread nino martinez wael
pplication.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 martinez wael &l

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

2019-01-24 Thread nino martinez wael
ing @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
withUsername("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
t; > @Override > @Bean(name = "authenticationManager") > public AuthenticationManager authenticationManagerBean() throws > Exception { > return super.authenticationManagerBean(); > } > } > } > > The RestSecurityConfigwould be what you would do f

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
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 user

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

2019-01-24 Thread nino martinez wael
mitAll(); http.headers().frameOptions().disable(); But that just disables actuator and messes with the Wicket side of the security.. Any one have some clues= -- Best regards / Med venlig hilsen Nino Martinez

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.martine

Wicket 8.1 + PAX Wicket 5 ConcurrentModificationException

2019-01-07 Thread nino martinez wael
ConcurrentModificationException: https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java#L1172 (thanks for helping out) -- Best regards / Med venlig hilsen Nino Martinez

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

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

2018-12-13 Thread nino martinez wael
>>> > >>> > >> > 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: > >>> > >>>> Hi, >

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

2018-12-10 Thread nino martinez wael
RT, 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 it here, I

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 > > Am 06.12.18

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
t; To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > -- Best regards / Med venlig hilsen Nino Martinez

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

2018-12-03 Thread nino martinez wael
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...@gmail.com>

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 breaks

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

2018-11-28 Thread nino martinez wael
ainer.add(MarkupContainer.java:239)[136:org.apache.wicket.core:8.1.0] > at > org.apache.wicket.markup.repeater.RefreshingView.addItems(RefreshingView.java:191)[136:org.apache.wicket.core:8.1.0] > at > org.apache.wicket.markup.repeater.RefreshingView.onPopulate(RefreshingView.java:97)[136:org.apache.wicket.core:8.1.0] > at > org.apache.wicket.markup.repeater.AbstractRepeater.onBeforeRender(AbstractRepeater.java:124)[136:org.apache.wicket.core:8.1.0] > at > org.apache.wicket.Component.beforeRender(Component.java:937)[136:org.apache.wicket.core:8.1.0] > at > org.apache.wicket.MarkupContainer.onBeforeRenderChildren(MarkupContainer.java:1753)[136:org.apache.wicket.core:8.1.0] > ... 56 more -- Best regards / Med venlig hilsen Nino Martinez > > > -- Best regards / Med venlig hilsen Nino Martinez

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

2018-11-28 Thread nino martinez wael
53)[136:org.apache.wicket.core:8.1.0] ... 56 more -- Best regards / Med venlig hilsen Nino Martinez

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
will need to use this filter org.apache.wicket.protocol.ws.javax.JavaxWebSocketFilter correct? On Thu, Aug 17, 2017 at 10:05 AM, Martin Grigorov <mgrigo...@apache.org> wrote: > On Thu, Aug 17, 2017 at 10:51 AM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > > >

Re: [Wicket 8m7] websockets?

2017-08-17 Thread nino martinez wael
s.. 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
IWebSocketPushMessage will 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" <nino.martinez.w...@gmail.com> > wrote: > > > Bu

Re: [Wicket 8m7] websockets?

2017-08-17 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 <martin.grigo...@gmail.com> wrote: > Yes. > The API is the same. > > On Aug 17, 2017 08:44, &

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 <mgrigo...@a

Re: [Wicket 8m7] websockets?

2017-08-16 Thread nino martinez wael
/main/java/org/apache/wicket/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 loo

[Wicket 8m7] websockets?

2017-08-16 Thread nino martinez wael
that shows some change at clientside? -- Best regards / Med venlig hilsen Nino Martinez

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

2017-03-02 Thread nino martinez wael
to be done? -- Best regards / Med venlig hilsen Nino Martinez

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 > JQueryResou

Re: Wicket 6.23 Jquery reference settings

2017-01-19 Thread nino martinez wael
s roll your own ResourceReference 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: > > &

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
.. On 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
t; model) { //Delete the stuff! } }); add(dataTable); -- Best regards / Med venlig hilsen Nino Martinez

Re: wicket 6.22 set mimetype for resource?

2016-09-20 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 <nino.martinez.w...@gmail.com> wrote: > I have no web.xml it's pax wicket running on karaf.. > > Can I overwrite Application#getMimeType(String)? from wic

Re: wicket 6.22 set mimetype for resource?

2016-09-19 Thread nino martinez wael
> Have fun > Sven > > > On 19.09.2016 16:27, nino martinez wael wrote: >> >> Hi >> >> How can I set a specific mimetype for a resource(packaged resource)? >> >> in this case I nee

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-23 Thread nino martinez wael
; of the CssUrlReplacer. > > kind regards > > Tobias > >> Am 16.06.2016 um 08:12 schrieb nino martinez wael >> <nino.martinez.w...@gmail.com>: >> >> Ok it looks like it could be something like that. BUT,i've changed >> nothing from

Re: stop wicket from rewriting references in my css file

2016-06-16 Thread nino martinez wael
; (I)ResourceSettings#(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 marti

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 <nino.martinez.w...@gmail.com> 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

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-09 Thread nino martinez wael
inaction.com/2008/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: > >> H

remove listitem from listview backed by loadabledetachablemodel inside a form

2016-06-08 Thread nino martinez wael
.Making a shallow model copy that only keeps changes on disk? Or something completely different like manipulating the markup with jquery or something? -- Best regards / Med venlig hilsen Nino Martinez - To unsubscribe, e-mail: users

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

2016-05-31 Thread nino martinez wael
gt; https://twitter.com/mtgrigorov > > On Mon, May 30, 2016 at 12:52 PM, nino martinez wael < > nino.martinez.w...@gmail.com> wrote: > >> PAX-Wicket 3.0.4, running Wicket OSGI style >> >> Main goal for this release are to bring PAX-Wicket to working state on &

[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
pertyModel supports maps. Check > 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>

Backing components with map as model?

2016-04-29 Thread nino martinez wael
design.. Could someone point me to an example? Thanks. -- Best regards / Med venlig hilsen Nino Martinez - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

[7.2] ContextRelativeResourceReference

2016-04-01 Thread nino martinez wael
oundException: The requested resource was not found: /css/lavish-bootstrap.css -- Best regards / Med venlig hilsen Nino Martinez - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

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 <nino.martinez.w...@gmail.com> wrote: > Now this is really strange! I can confirm that load are being called. > I will digg further

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 <nino.martinez.w...@gmail.com> wrote: > IT would appear so. BUT we actually do not have a direct link between > A and B, in ou

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

2016-03-16 Thread nino martinez wael
at 9:08 AM, nino martinez wael <nino.martinez.w...@gmail.com> 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,

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

2016-03-16 Thread nino martinez wael
herently) wrong with that. > > Sven > > On 16.03.2016 08:48, nino martinez wael wrote: >> >> Hi >> >> Any ideas on how a loadableDetachableModel can become in attached >> state

[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
r.com/mtgrigorov > > 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

[7.2] multiple pages Access Denied

2016-03-11 Thread nino martinez wael
Page B in another tab apparently triggers this. It does not matter if there is ajax or not on page B -- Best regards / Med venlig hilsen Nino Martinez - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Wicket Bootstrap & wicket 7.2

2016-03-10 Thread nino martinez wael
> Yes. I use latest version of both in my project. > On Mar 10, 2016 12:09 AM, "nino martinez wael" <nino.martinez.w...@gmail.com> > wrote: > >> I've added an issue here: >> >> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/590 >> >>

Re: Wicket Bootstrap & wicket 7.2

2016-03-09 Thread nino martinez wael
wrote: > On Mar 9, 2016 11:59 PM, "nino martinez wael" <nino.martinez.w...@gmail.com> > 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 wicke

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
ike Dojo, Scriptaculous, etc. > > 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.. >

Wicket cheat sheet updated?

2016-01-07 Thread nino martinez wael
, and that project solves it ? -- Best regards / Med venlig hilsen Nino Martinez - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

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 nino.martinez.w...@gmail.com wrote: argh! that was supposed to be inmethod grid On Fri, Aug 21, 2015 at 11:39 AM, nino martinez wael nino.martinez.w...@gmail.com wrote: I was cruising by, seems ingrid live examples

Re: New Wicket Website

2015-08-21 Thread nino martinez wael
-mail: users-h...@wicket.apache.org -- Regards - Ernesto Reinaldo Barreiro -- Best regards / Med venlig hilsen Nino Martinez - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail

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 nino.martinez.w...@gmail.com 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: 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 sfe...@bluesystem.hu 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

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
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 nino.martinez.w...@gmail.com Hi Guys

Re: Wicket merchandise

2013-09-19 Thread nino martinez wael
, 2013 at 9:23 PM, Martin Grigorov mgrigo...@apache.org wrote: Sven Meier +1 On Wed, Sep 18, 2013 at 10:10 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hi Guys long time no see.. Apparently there are some money left on the wicket merchandise shop (http

Re: Wicket merchandise

2013-09-19 Thread nino martinez wael
could you set up nominees one something like this : http://www.easypolls.net/ ? 2013/9/18 Martin Grigorov mgrigo...@apache.org Sven Meier +1 On Wed, Sep 18, 2013 at 10:10 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hi Guys long time no see.. Apparently there are some

Wicket merchandise

2013-09-18 Thread nino martinez wael
nominees and handle the vote.. I'll send the merchandise to the lucky (or hard working) winner :) I'll follow on the side line.. -- Best regards / Med venlig hilsen Nino Martinez

Re: SessionStore

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

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

2012-09-28 Thread nino martinez wael
thanks everyone.. 2012/9/28 Timo Schmidt wic...@xomit.de 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#MigrationtoWicket6.0-Refactorings See

Re: Performance tuning Wicket[1.5]...

2012-08-31 Thread nino martinez wael
an unnecessary filter (character encoding fix for tomcat/wicket).. Other than that there werent many hotspots. regards Nino 2012/8/27 nino martinez wael nino.martinez.w...@gmail.com Yup, I'll do that another round.. Although I'll use visualvm... 2012/8/27 Martin Grigorov mgrigo

Re: Performance tuning Wicket[1.5]...

2012-08-31 Thread nino martinez wael
-bug-30-june-1-july-2012-fix/ -Tom On 31.08.2012, at 12:19, nino martinez wael nino.martinez.w...@gmail.com 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. 2012/8/31 Alex Shubert alex.shub

Re: Performance tuning Wicket[1.5]...

2012-08-29 Thread nino martinez wael
for tomcat/wicket).. Other than that there werent many hotspots. regards Nino 2012/8/27 nino martinez wael nino.martinez.w...@gmail.com Yup, I'll do that another round.. Although I'll use visualvm... 2012/8/27 Martin Grigorov mgrigo...@apache.org Fire Yourkit/JProfiler and see what they say

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 mgrigo...@apache.org Fire Yourkit/JProfiler and see what they say. On Mon, Aug 27, 2012 at 2:45 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hi Im seeing a load on our server

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

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: 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 mgrigo...@apache.org 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 nino.martinez.w

Re: 1.5 Stared blind patterndateconverter

2012-04-17 Thread nino martinez wael
this happens! 2012/4/17 nino martinez wael nino.martinez.w...@gmail.com 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

Re: 1.5 Stared blind patterndateconverter

2012-04-16 Thread nino martinez wael
. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Best regards / Med venlig hilsen Nino Martinez

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 nino.martinez.w...@gmail.com Yes are using ajax, but it's the same when not using ajax.. 2012/3/23 Michal Wegrzyn michal.wegr...@onior.com Are you using ajax? Maybe you are adding appender but form container is not added

attributeappender not rendered / processed

2012-03-23 Thread nino martinez wael
().add(attributeAppender); However the string in getCssClass() are never appended, first I tried in the fieldset in the form, then the form and now lastly the container however theres no difference, nothing are appended.. -- Best regards / Med venlig hilsen Nino Martinez

RE: attributeappender not rendered / processed

2012-03-23 Thread nino martinez wael
. 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 Subject: attributeappender not rendered / processed Hi Im wondering

Re: attributeappender not rendered / processed

2012-03-23 Thread nino martinez wael
: nino martinez wael [mailto:nino.martinez.w...@gmail.com] Sent: Friday, March 23, 2012 15:48 To: users@wicket.apache.org Subject: attributeappender not rendered / processed Hi Im wondering what could cause a attributeappender not to be rendered? One thing I guess

Re: Serialize exceptions

2012-03-22 Thread nino martinez wael
...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Best regards / Med venlig hilsen Nino Martinez

Re: Serialize exceptions

2012-03-22 Thread nino martinez wael
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:51:55,739 ERROR [org.apache.wicket.serialize.java.JavaSerializer] - Error

Serialize exceptions

2012-03-21 Thread nino martinez wael
Hi I get a serialize exception in a panel of mine its correct that one of the contained fields cannot be serialized, however this field are injected and should not be touched by the checker, the field are marked with the @inject annotation. I'm using guice for injection.. Any thing obvious wrong

  1   2   3   4   5   6   7   8   9   10   >