WebMarkupContainer not refreshing after form error

2010-12-13 Thread taygolf
Hey guys, I have a unique error. I have a form and I have a few fields in that form wrapped in a webMarkupContainer to refresh once a selection has been made. This handles default values based on another form value nicely and everything works fine. My problem is that I also have required fields

tooltip inside webMarkupContainer refreshing

2010-11-10 Thread taygolf
Hey guys. I have a ListView that contains a list of employee names. This list is wrapped in a webMarkupContainer which allows the user to add and delete names from the listview. All of this works properly. I have setup a tooltip that allows the user to hover over the employee name and it will

Re: tooltip inside webMarkupContainer refreshing

2010-11-10 Thread taygolf
wow you are my hero!!! I have been stuck on this all week and could not figure out what I was doing wrong. Of course it was something simple like that that I completely over looked. Thanks for the help for sure! T -- View this message in context:

JS and CSS issues with Panel or WebMarkupContainer

2010-05-24 Thread taygolf
Hey guys, I have a webpage that contains several panels. Some of these panels have WebMarkupContainers that allow the user to add stuff to a listview and be refreshed without refreshing the page. My problem is applying JS and CSS to the data in the WebMarkupContainer. I am trying to use

Re: DateTextField and DatePicker returning wrong date

2010-05-06 Thread taygolf
no that is not the issue although I did see that issue and I am happy that it is fixed. My issue is that dealing with the boolean applyTimeZoneDifference for PatternDateConverter. It doesn't matter if I set applyTimeZoneDifference to true or false. The difference is still applied. I would like

Re: DateTextField and DatePicker returning wrong date

2010-05-05 Thread taygolf
anyone have any help here? I really think this is a bug inside wicket but I may be doing something wrong. Any opinions would be greatly appreciated T -- View this message in context:

DateTextField and DatePicker returning wrong date

2010-05-04 Thread taygolf
Hey guys, I guess I am confused on how DateTextField and DatePicker work Here is my code DateTextField dateTextField = new DateTextField(textField, new PropertyModelDate(this, value), new PatternDateConverter(MM/dd/, false)); DatePicker dp = new DatePicker(){ public boolean

Re: CSS not loading on WebMarkupContainer refresh

2010-04-22 Thread taygolf
absolutely. I have tried two things and they both work the same way. first using a wicket id add(new StyleSheetReference(stylesheet, CustomerPanel.class, jquery.tooltip.css)); link rel=stylesheet type=text/css wicket:id=stylesheet / and straight html link rel=stylesheet type=text/css

Re: CSS not loading on WebMarkupContainer refresh

2010-04-22 Thread taygolf
ok I just added a label outside of the webmarkupcontainer and added the tooltip stuff to it and it works perfectly. So the problem is the webmarkupcontainer. Everytime it is refreshed through ajax instead of refreshing the entire page, I lose the connection between the css and the html inside

Re: CSS not loading on WebMarkupContainer refresh

2010-04-22 Thread taygolf
I am using wicket 1.3.7 currently so I can not use the CSSPackageResource. Is there a way to just use PackageResource? I know that I need to upgrade but right now that is not possible. Also why can't I just add the CSS file to my html with a link and be done with it like this: link

CSS not loading on WebMarkupContainer refresh

2010-04-21 Thread taygolf
Hey guys. I have a page that contains 4 panels. In one of these panels I have a listview that is inside a WebMarkupContainer. The user click on an ajax link which opens up a modal. The user fills out the form and clicks submit. On submit the new information is added to the list view and the

Re: Ajax update DefaultDataTable using textfield

2008-10-10 Thread taygolf
). Thanks T Timo Rantalaiho wrote: On Thu, 09 Oct 2008, taygolf wrote: Basically what I want to do is have a textfield on my page. when the user types a letter in the textfield I want to take that letter and update the query that I send to my dataprovider. The dataprovider will then update

Ajax update DefaultDataTable using textfield

2008-10-09 Thread taygolf
Hey guys, I am trying to update a DefaultDataTable using a textfield and ajax. I have done it to a ListChoice before but for some reason I can not get it to work with a DefaultDataTable. Basically what I want to do is have a textfield on my page. when the user types a letter in the textfield I

AJAX target cache issues I think please help

2008-08-05 Thread taygolf
Hey guys I have a small problem. I have 2 fields. One named type and one named subtype. They both are textfields with buttons next to them. When the user clicks the button a modal window comes up and asks the user to select a value. The value is selected and when the user clicks ok the modal

listchoice filtered by textfield ajax help

2008-07-10 Thread taygolf
Hey guys, I have a question for yall. I want to have a listchoice that holds a list of options that can be selected by the user. Then I want to have an optional textfield. IF the textfield is blank I want all choices to show up in the listchoice. If it is not blank I want to filter the choices

modal CloseButtonCallback returning old value

2008-06-30 Thread taygolf
hey guys. I have a problem that is stumping me. I have 2 textfields one called type and one called subtype. THey both have modal windows that are opened to show the list of values that can be selected for them. Of course I have it setup where the user can not select a subtype before they select a

lossing form data on ajax repaint

2008-06-25 Thread taygolf
Hey guys. I have a small problem. I have a group of textfields that are created on the fly from the database by using a panel. All of the textfields use modal windows as popups to populate them with data except for 2. These 2 are manually filled in my the user. All of the textfields are in a

What is DateTextFields Max and Min date or range?

2008-06-23 Thread taygolf
Hey guys I have been looking and I wanted to know what the DateTextField max and min dates were. so if my user wanted to click back to say December 1950 could they? I know it is not very practical and I do not think this will happen but I wanted to see how far back they could go and how far ahead

Re: DateTextField and DatePicker are not using the same date pattern

2008-06-20 Thread taygolf
Yes it is doing the same thing to me. The formats are off unless I use S- for my date style which is not really what I want to use. Have you found a fix for this? Thanks T Eric Rotick wrote: Further to this I've now checked the source and the DatePicker does correctly pick up the date

Re: autocomplete: no popup when field is empty

2008-06-18 Thread taygolf
I am still having issues with this. I am using 1.4-m2 with your newest additions. It is much better but it really only half way gives the user what he is asking for. He wants to list to show up on an empty input. The way you have it implemented is the user has to click on the textfield and then

Re: How can I customize Autocomplete?

2008-06-05 Thread taygolf
automatically which I am sure is what most users wanting this feature want as well. please respond and help me customize my settings to do this or please add this feature in the next release Thanks T taygolf wrote: Hey everyone. I am wanting to customize autocomplete textfield a little and I am

How can I customize Autocomplete?

2008-06-03 Thread taygolf
Hey everyone. I am wanting to customize autocomplete textfield a little and I am not sure what I need to do to get the behavior I would like. I am using the 1.4-m2 jars for my development because I am really wanting the choices to show up with an empty textfield. Basically I would like the Div

Re: autocomplete show div while textfield is empty

2008-06-02 Thread taygolf
no one??? taygolf wrote: Hey guys. I have been playing with autocompletetextfield and I really like it now that the ie bug is fixed with the 1.4 milestone. The only question I have about it is how do I make the list visible all the time. Basically I want the div to be visible all

Re: autocomplete show div while textfield is empty

2008-06-02 Thread taygolf
Got it. It is being released in the new 1.4-m2 that came out today. Thanks T taygolf wrote: no one??? taygolf wrote: Hey guys. I have been playing with autocompletetextfield and I really like it now that the ie bug is fixed with the 1.4 milestone. The only question I have

autocomplete show div while textfield is empty

2008-05-27 Thread taygolf
Hey guys. I have been playing with autocompletetextfield and I really like it now that the ie bug is fixed with the 1.4 milestone. The only question I have about it is how do I make the list visible all the time. Basically I want the div to be visible all the time no matter what has been entered

Re: autocomplete: no popup when field is empty

2008-05-27 Thread taygolf
has this been implemented yet? I just posted a similar question to this and I would like to show the list of choices even if the textfield is blank as well. Thanks T Johan Compagner wrote: showListOnEmptyInput looks descriptive enough for me :) On Wed, Apr 23, 2008 at 4:49 PM, Gerolf

Re: AutoCompleteTextField type mismatch in line 227

2008-05-08 Thread taygolf
Yes I am just starting to try and get the autocompletetextfield working on my app and I am using wicket 1.3. as well and it is doing the same thing. It is throwing a js type mismatch error. Works fine in firefox but not in IE. Did you figure out the problem? T Niels Bo wrote: Hi I just

Re: AjaxLazyLoadPanel question

2008-05-06 Thread taygolf
no one? taygolf wrote: Hey guys, I have a question about the lazyloadpanel. I have a modal window. in that modal window I have a form with a ListChoice and an ajaxbutton. What I want to do is have the entire modal window or the entire form lazyload. the ListChoice can be very large

Re: AjaxLazyLoadPanel question

2008-05-06 Thread taygolf
would be appreciated Thanks T taygolf wrote: no one? taygolf wrote: Hey guys, I have a question about the lazyloadpanel. I have a modal window. in that modal window I have a form with a ListChoice and an ajaxbutton. What I want to do is have the entire modal window or the entire

AjaxLazyLoadPanel question

2008-05-05 Thread taygolf
Hey guys, I have a question about the lazyloadpanel. I have a modal window. in that modal window I have a form with a ListChoice and an ajaxbutton. What I want to do is have the entire modal window or the entire form lazyload. the ListChoice can be very large sometime and I want do not want the

Can I use LazyLoad or something like it with a modal?

2008-04-16 Thread taygolf
Ok here is my issue. I have a modal that has a lot of information in it and it has to get back a large amount of data from the database and it is taking about 4 seconds to load because of all the data. I wish I was allowed to fliter the data more so there was not so much information but I do not

Re: Can I use LazyLoad or something like it with a modal?

2008-04-16 Thread taygolf
time to something other than a static time. In other words can i set it to sleep until the query is done? Thanks T Gerolf Seitz wrote: take a look at AjaxLazyLoadPanel. this might do the trick. Gerolf On Wed, Apr 16, 2008 at 4:52 PM, taygolf [EMAIL PROTECTED] wrote: Ok here is my

Re: MOdal window feedback panel something strange is going on

2008-04-15 Thread taygolf
a blank value. I wonder why. I am really stumped on this one. Any help would be greatly appreciated. T Mr Mean wrote: Can you take a look in the ajax debug window to see if you get an error? Maurice On Mon, Apr 14, 2008 at 4:35 PM, taygolf [EMAIL PROTECTED] wrote: Hey guys. I am

Re: MOdal window feedback panel something strange is going on

2008-04-15 Thread taygolf
ideas I would appreciate it Thanks T Nino.Martinez wrote: Could you create a quickstart? taygolf wrote: Nope I am not getting an error in the ajax debug. From what I can see the popup is sending back the correct value when I go through my normal steps but when I have the feedback panel

MOdal window feedback panel something strange is going on

2008-04-14 Thread taygolf
Hey guys. I am not sure that this has anything to do with the feed back panel or not but I wanted to mention it. Here is what I have. I have a modal window with required textfields in it. The textfields have another modal window that creates a 'popup' and the user selects the value they want

Re: ListView not updating when changed

2008-03-27 Thread taygolf
to trigger an ajax request, but i am not sure how and if xmlhttprequest works across windows... -igor On Thu, Mar 27, 2008 at 7:56 AM, taygolf [EMAIL PROTECTED] wrote: I would have thought there was another way to do this. I can not refresh the whole page because I have other textfields

RE: ListView not updating when changed

2008-03-26 Thread taygolf
-Original Message- From: taygolf [mailto:[EMAIL PROTECTED] Sent: Dienstag, 25. März 2008 15:03 To: users@wicket.apache.org Subject: ListView not updating when changed ok here is what I have. i have a listview that I want to update on the fly. The user clicks a link and that link opens

Re: ListView not updating when changed

2008-03-26 Thread taygolf
problem. Can I refresh the markup container from the popup? if so how? I was thinking maybe a AjaxSubmit button on the popup page but I am not sure. Anyway a little help with this would be awesome Thanks T igor.vaynberg wrote: On Wed, Mar 26, 2008 at 6:57 AM, taygolf [EMAIL PROTECTED] wrote

Re: ListView not updating when changed

2008-03-26 Thread taygolf
the current page? do you submit the form in it via ajax or a regular post? -igor On Wed, Mar 26, 2008 at 3:00 PM, taygolf [EMAIL PROTECTED] wrote: THanks for explaining it to me igor. I have been doing some searching about my other problem. Again my new problem is that I really do not want

ListView not updating when changed

2008-03-25 Thread taygolf
ok here is what I have. i have a listview that I want to update on the fly. The user clicks a link and that link opens a popup. in that popup the user will put in the information required and hit submit. once the information is submitted I am saving it in a session list of models. So the model

Delete from RepeatingView from Panel Page

2008-03-21 Thread taygolf
Hey guys I really have learned a lot about wicket over the last month from this board and I really appreciate it. I am stuck on how to solve a problem and I wanted some input on the direction I should go. I have a link that says add employees. When that link is clicked a popup is created with a

Re: link onClick add panel

2008-03-11 Thread taygolf
wanting to do. Thanks T taygolf wrote: I have a problem and I have thought of 2 ways to get it done but I can not make either work nor am I sure which one is the best. I want the user to be able to add as many customers as they want. So I have thought of 2 ways to do this. 1) I have

Re: link onClick add panel

2008-03-06 Thread taygolf
ajax or setresponsepage to trigger a refresh on the parentpage. If you are using ModalWindow as your popup you might need to add a WindowClosedCallbackHandler to redraw the listview. Maurice On Wed, Mar 5, 2008 at 9:52 PM, taygolf [EMAIL PROTECTED] wrote: I have a problem and I have

link onClick add panel

2008-03-05 Thread taygolf
I have a problem and I have thought of 2 ways to get it done but I can not make either work nor am I sure which one is the best. I want the user to be able to add as many customers as they want. So I have thought of 2 ways to do this. 1) I have a link that when clicked creates a popup with all

autosuggest options in wicket

2008-03-04 Thread taygolf
Hey everyone. I am not sure wicket deals with anything like this but I wanted to check before I decided to go the javascript route. I want an autosuggest textfield for a listchoice. So say I have a a listchoice that is supposed to show customer names from a table in the database and say there

Re: get Form information after submit

2008-03-03 Thread taygolf
and will give us both something to work with... -igor On Fri, Feb 29, 2008 at 12:48 PM, taygolf [EMAIL PROTECTED] wrote: teststring in onSubmit is always null no matter what I have entered in the textfield. Any help with this would be most appreciated. Thanks T igor.vaynberg

Re: get Form information after submit

2008-03-03 Thread taygolf
new to me but so far it looks like it is head above everything else. Thanks so much for your help T igor.vaynberg wrote: On Mon, Mar 3, 2008 at 5:33 AM, taygolf [EMAIL PROTECTED] wrote: I am just really confused by all of this. I do not understand why there is not a way to get all

Re: get Form information after submit

2008-02-28 Thread taygolf
: no, it wont change, just have the panel forward the model to the textfield. -igor On Wed, Feb 27, 2008 at 1:50 PM, taygolf [EMAIL PROTECTED] wrote: Thanks igor I really appreciate the help. My code was really close but I was not creating: private object selection1; private object

Re: get Form information after submit

2008-02-27 Thread taygolf
, Feb 26, 2008 at 12:52 PM, taygolf [EMAIL PROTECTED] wrote: ok I know I am missing something simple but I do not know what. I have a form with a CompoundPropertyModel. I am creating several textfields using panels so it is all on the fly and can be created from a query. Anyway I now

Re: Open new page after submit a form

2008-02-27 Thread taygolf
did you find a way to do what you want? I am looking to do close to the same thing. Thanks T Newgro wrote: Hi *, i have a wicket page with a form and some other components. On click on a button i want to submit the form and go to another page of my application. The problem i have is

Re: get Form information after submit

2008-02-27 Thread taygolf
, Feb 27, 2008 at 7:34 AM, taygolf [EMAIL PROTECTED] wrote: I have been looking at that today but I am still lost. Basically what I want to do is have a form with panels in it. the panel will add a textfield everytime it is called. and it will set the markupId to a unique id that I am

Re: get Form information after submit

2008-02-27 Thread taygolf
textfield(tf, new propertymodel(this,text))); } } -igor On Wed, Feb 27, 2008 at 11:16 AM, taygolf [EMAIL PROTECTED] wrote: yes all of my experiance is in JSP so I guess I am just confused about how forms work in wicket compared to JSP. Maybe you can help me understand

get Form information after submit

2008-02-26 Thread taygolf
ok I know I am missing something simple but I do not know what. I have a form with a CompoundPropertyModel. I am creating several textfields using panels so it is all on the fly and can be created from a query. Anyway I now want to submit my form and get the values in the Post page but I am not

Panels and feedback messages

2008-02-21 Thread taygolf
ok I am wanting to have a custom feedback message for a testfield that is created in a panel. I know how to do this for a simple textfield in a form but I am createing these textfields on the fly using nested panels so I wanted to know how to do this. Right now I am only adding one panel but I