Pagination AjaxFallBackDataTable without charging all rows on memory

2010-03-29 Thread Daniela Valero
request to the next page. Do you have any ideas to do this? -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!

Re: Pagination AjaxFallBackDataTable without charging all rows on memory

2010-03-29 Thread Daniela Valero
ontent to each page acording as user request to the next page. > > Do you have any ideas to do this? > > -- > | Daniela Valero > > "No hay vientos favorables para quien no sabe a donde quiere ir! > -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!

Re: Pagination AjaxFallBackDataTable without charging all rows on memory

2010-03-30 Thread Daniela Valero
Hi Igor, thanks for your answer! Yesterday I was trying to reinvent the nose, finally I realized that the framework does the work that I need. :D 2010/3/29 Igor Vaynberg > see IDataProvider > > -igor > > On Mon, Mar 29, 2010 at 1:17 PM, Daniela Valero > wrote: > >

Link to a panel

2010-03-31 Thread Daniela Valero
Good Afternoon users! I have a hierachy of panels inside my app, Home is the page, there are several childs one of them is a tab panel. I need to set a link to a panel child of home. how can i do this? -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!

Re: Link to a panel

2010-03-31 Thread Daniela Valero
cific tab? > > ** > Martin > > 2010/3/31 Daniela Valero : > > Good Afternoon users! > > > > I have a hierachy of panels inside my app, Home is the page, there are > > several childs one of them is a tab panel. I need to set a link to a > panel > > child of home. &

Re: Link to a panel

2010-03-31 Thread Daniela Valero
yes 2010/3/31 Martin Makundi > Ah.. no need to do anything. Is close button ajax button? > > ** > Martin > > 2010/3/31 Daniela Valero : > > Yes, Home is the Page class, it have a TabPanel. In the first tab, i have > a > > panel called Policy, there I am cal

Re: Link to a panel

2010-03-31 Thread Daniela Valero
forget pass the modal window as parameter to content of modal window. Now I can close my window naturaly pd: sorry by my grammar 2010/3/31 Martin Makundi > modal window has a close action: > > // On close > modalWindow.close(target); > > > ** > Marti

Re: Link to a panel

2010-03-31 Thread Daniela Valero
artin Makundi > >> modal window has a close action: >> >> // On close >> modalWindow.close(target); >> >> >> ** >> Martin >> >> 2010/3/31 Daniela Valero : >> > yes >> > >> > 2010/3/31 Martin M

ModalWindow insise a cell of AjaxDefaultDataTable can't be closed

2010-03-31 Thread Daniela Valero
:rows:3:cells:3:cell:modal:content:form:close not found on page com.consisint.frontend.pages.Home[id = 27], listener interface = [RequestListenerInterface name=IActivePageBehaviorListener, method=public abstract void org.apache.wicket.behavior.IBehaviorListener.onRequest()] How can I fix this problem? -- | Dani

Re: DataView, ReuseIfModelsEqualStrategy, Ajax

2010-04-06 Thread Daniela Valero
; myTextField.add(new AjaxFormComponentUpdatingBehavior("onfocus") { > > > > > > @Override > > > protected void onUpdate(AjaxRequestTarget target) { > > > HighlitableDataItem hitem = > > > (HighlitableDataItem) item; > > > hitem.toggleHighlite(); > > >// target.addComponent( ??? don' know what to > put > > > here, how to re-render the item) > > > > > > } > > > }); > > > > > > > > > Well, any idea > > > > > > thanks > > > > > > Arnaud > > > > > > -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!

Re: DataView, ReuseIfModelsEqualStrategy, Ajax

2010-04-06 Thread Daniela Valero
ed, > then onblur="$(this).parent().removeClass('highlightedfield');" > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Tue, Apr 6, 2010 at 3:02 PM, Daniela Valero > wrote: > > > Hi Jeremy, I'm doing something similar than Araun, bu

Javascript from panel does not work

2010-04-06 Thread Daniela Valero
and add a css background. I tried calling the javascript from Page parent, but it isn't work What I'm missing? -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!

Re: Javascript from panel does not work

2010-04-06 Thread Daniela Valero
I tried adding public void renderHead(IHeaderResponse response) { response.renderJavascriptReference("views/js/ToggleHighLigh.js"); response.renderJavascriptReference("views/js/jquery-1.3.2.min.js"); } from IHeaderResponse, but it isn't work

Re: Javascript from panel does not work

2010-04-07 Thread Daniela Valero
S that adds the onclick handler that highlights a row > when it is clicked? I'm assuming it much be "ToggleHighLigh.js"? > It is in that file, it contains a onClick JQuery function -> ${this}.toggleClass("myClass"). > > -- > Jeremy Thomerson > ht

Re: Javascript from panel does not work

2010-04-07 Thread Daniela Valero
7;I am loaded'); > > in your js files. > > If you need the jQuery date picker try wicketsruff/jwicket. There you will > find a ready to use implementation of jQuery's DatePicker. And it works in > Panels. > > Stefan > > -Ursprüngliche Nachricht---

Re: Javascript from panel does not work

2010-04-07 Thread Daniela Valero
I got on firebug the same message from css file, but it is working fine. (it is being called from Page parent) 2010/4/7 Daniela Valero > You are right stefan, the JS file is not being loaded, on firebug i got > > Failed to load source for: > http://localhost:8080/Front

Re: Javascript from panel does not work

2010-04-07 Thread Daniela Valero
tell you. Please load your resources > correctly. Either use a ResourceReference with a class to create the URL > correctly, or wrap your script tags in tags. > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Wed, Apr 7, 2010 at 8:42 AM, Daniela

Re: Javascript from panel does not work

2010-04-07 Thread Daniela Valero
views/js/jquery-1.3.2.min.js";); } 2010/4/7 Daniela Valero > I wrapped my JS on wicket:link, and I wrote the absolute url, like this > > http://localhost:8080/FrontEnd/views/js/jquery-1.3.2.min.js"</a>;> > > Now, the files are loaded, I can see it from firebu

Re: Javascript from panel does not work

2010-04-07 Thread Daniela Valero
, but the javadoc > will > point you to the newer class. > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Wed, Apr 7, 2010 at 9:07 AM, Daniela Valero > wrote: > > > I wrote the header constributor, and nothing > > > > > > publ

Re: Javascript from panel does not work

2010-04-07 Thread Daniela Valero
ot;); if ($(event.target).is('.row')) { $(event.target).toggleClass('highlighted'); } }); }); I check and the JS are being loaded. I put a JS message and it works, but my JQuery does not work on panels 2010/4/7 Daniela Valero > Thanks!

Re: Javascript from panel does not work

2010-04-08 Thread Daniela Valero
esto en mi tabla (es por ello que cuando apago el servidor si me funciona la cosa en la tabla) Se hizo la luz! -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!

Re: Question on close button of modal windows

2010-04-14 Thread Daniela Valero
------ > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!

change the resources folder location

2010-04-14 Thread Daniela Valero
Hi everybody Is there a way to load JS resources from another location using the ResourseReference or its childs? ie: WebContent/views/js/ ? -- | Daniela Valero "No hay vientos favorables para quien no sabe a donde quiere ir!