Re: inmethod grid - Ajaxically update child grid from Master grid

2014-07-17 Thread Martin Grigorov
Hi, On Wed, Jul 16, 2014 at 11:12 PM, Mihir Chhaya mihir.chh...@gmail.com wrote: Hello, I am using inMethod data grid with Wicket 1.5. I have a page to show master grid (MasterPanel). MasterPanel has child grid (ChildPanel) to display child records. ChildPanel accepts MasterBean as one

Re: Inmethod Grid on IE9

2013-07-23 Thread Jesse Long
Hi Jose, I too had the same issue, and I also dont know how to fix it. Please let us know what you did to get it to work. My work around is to set this for IE 9 only: overflow-y: hidden; overflow-x: scroll; If there is a better solution, please let us know. Thanks, Jesse On 18/07/2013

Re: Inmethod Grid on IE9

2013-07-18 Thread Jose Mauricio Meraz Mercado
It seems there was something wrong with my IE, now it is working fine Thanks 2013/7/12 Jose Mauricio Meraz Mercado jmm...@gmail.com Hi, Currently on the application we are developing we are using InMethod grids, when those grids have a horizontal scroll bar there is a strange behavior

Re: Inmethod Grid on IE9

2013-07-18 Thread Dan Simko
Hi, my IE has the same problem. But unfortunately I do not have any idea how to fix (except to remove horizontal scrollbar). On Thu, Jul 18, 2013 at 5:02 PM, Jose Mauricio Meraz Mercado jmm...@gmail.com wrote: It seems there was something wrong with my IE, now it is working fine Thanks

Re: InMethod Grid DropDownChoiceColumn DropDownChoicePanel

2013-05-17 Thread Martin Grigorov
Hi, Better use some Pastebin service instead of using images because we cannot modify your code to make it working. The problem is that you use : new Model(selectedValue) as a main model for the DropDownChoice. You should use something like : new PropertyModel(this, selectedValue), assuming

Re: InMethod Grid DropDownChoiceColumn DropDownChoicePanel

2013-05-17 Thread shashikant.kulkarn...@gmail.co
Sorry for the image. I will try your solution. Here is the entire method which creates columns. I have 3 drop down choices in a row. If I select all the 3 at the same time I need to get the changed value of all of them. Please suggest. private

Re: inmethod grid column resize error alert

2013-04-09 Thread saty
This is being caused by inmethod grid being set to disabled, the error looks unnecessary though. Not sure if there is way to suppress it. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inmethod-grid-column-resize-error-alert-tp4657852p4657858.html Sent from the

Re: inmethod grid column resize error alert

2013-04-09 Thread Ernesto Reinaldo Barreiro
can you create a quick-start? and attach it to an issue in github? On Tue, Apr 9, 2013 at 9:44 PM, saty satya...@gmail.com wrote: This is being caused by inmethod grid being set to disabled, the error looks unnecessary though. Not sure if there is way to suppress it. -- View this

Re: inmethod grid column resize error alert

2013-04-09 Thread saty
ok, will do. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inmethod-grid-column-resize-error-alert-tp4657852p4657860.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: inmethod grid cachedPageCount

2013-03-04 Thread Ciocoiu Elvis
Thank you Paul, But in my case I'm using IDataSource from immethod grid to retrieve the current page. In client code after inserting the new record in the database I'm obtaining the corresponding page number (greater than the one cached by inmethod grid) and let the grid display itself

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
Any thoughts on this please? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inmethod-grid-refresh-issue-tp4656910p4656936.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
Hello Saty You should check methods markItemDirty(IModel model), markAllItemsDirty() and update(). This are the methods you are supposed to be calling when refreshing the grid's content. You should also make sure that the equals() method of your model objects return false when both objects

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
Thanks Marc, i will take a look at these methods if they can help, however my equals method can not help here as i said previously some columns are derived in the sense they dont return an attribute of the object but a value which is derived from the context (and object state) in which the method

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
Ok, I see. Either way if it is a DataGrid, calling markAllItemsDirty() and update() from your ajax request should do the job. -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 4:35 PM, saty satya...@gmail.com wrote: Thanks Marc, i will take a look at these methods if they can help, however

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
grid.markAllItemsDirty(); grid.update(); This does not help, for some reason grid is smart not to regenerate a row for a model it already did. I can see my getXXX method is called by grid only first time and than its never get called again so the column shows what was calculated for the first

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
The problem must be in your row models. What does your IDataSource implementation look like? -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 4:55 PM, saty satya...@gmail.com wrote: grid.markAllItemsDirty(); grid.update(); This does not help, for some reason grid is smart not to

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
public class DataSource implements IDataSourceMyModel { private FilterMyModel myModelFilterChain; public DataSource(FilterChainMyModel myModelFilterChain) { this.myModelFilterChain= myModelFilterChain; }

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
What's the code for MyModel? -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 5:14 PM, saty satya...@gmail.com wrote: public class DataSource implements IDataSourceMyModel { private FilterMyModel myModelFilterChain; public DataSource(FilterChainMyModel myModelFilterChain)

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
Its a regular java bean with properties and setter and getter methods. Grid uses the expression to map a column to a particular property on row model (MyModel). Thanks -- View this message in context:

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
Just managed to get a workaround to fix the problem. I have to add a dummy property to the model object and calculate that property within my data source and than use that property to map to the calculated column. However since i can not change the state of original shared model object, so i have

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
In your IDataSource code, you left out the implementation public IModelMyModel model(MyModel object);, I'm quite suspicious that your models are the source of the problem. I'm assuming that you are using PropertyColumns in your grid, with these columns, your getter method should be getting called

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
yes i am using property columns in grid to map columns to properties of model. Data Source is a very simple implementation just filter model objects in a cache into a list of filtered model objects. Context is user and also his filter settings. If a user can not see value from source x so his

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
Also i put a print on every getter but it only prints on first call on a set of rows, if you filter among those rows its never get called, i suspect the grid has rows cached and its assuming nothing changed so using those rows again as a subset of previously created rows. Thanks -- View this

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
You should start debugging your project instead of using print to see what is really happening (call stack, variable values...). PropertyColumn always calls the get method of your model object: code @Override public IRenderableI newCell(IModelI rowModel) { return new IRenderableI() { public void

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
Actually i have overridden public Component newCell(WebMarkupContainer parent, String componentId, IModel rowModel) { ... } to use a separate panel for cell content, due to other functions, will not make any difference? Thanks -- View this message in context:

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
I bet we are getting to the source of the problem. Non light-weight columns like yours, create the components just once when the grid is first rendered. So the model instances you pass when you create the Component will remain the same even if you update the grid. I believe non-lightweight

Re: inmethod-grid refresh issue

2013-03-04 Thread saty
Thanks Marc, This is indeed the issue, i am going to make it light weight for now and provide an alternate mechanism to launch the other features that are stuffed in here at present. Thank for helping me out. -- View this message in context:

Re: inmethod grid cachedPageCount

2013-02-27 Thread Paul Bors
Well, reading your post a second time around... If you really want to add a record and then paginate to the page that contains it, you'd have to re-run your SQL right? I think it would make more sence to KISS it. Change your DataProvider by re-running the SQL and provide the record ID (primary

Re: inmethod grid cachedPageCount

2013-02-25 Thread Paul Bors
I once implemented something similar where I had to add records to a DataTable. What I ended up doing is twickying the DataProvider to allow adding rows to the current page. ie: I would add new rows to the current page and flush them to the DB on Save. I did not have to care about the page number

Re: inmethod grid 6.0-SNAPSHOT doesn't work in IE8

2013-01-17 Thread Dan Simko
Hi, I finally found out where problem is. IE8 doesn't support 'bind' function. I just committed fix from: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Function/bind Best regards, Dan On Wed, Sep 5, 2012 at 10:36 PM, Dan Simko wicke...@gmail.com wrote: sorry,

Re: inmethod grid 6.0-SNAPSHOT doesn't work in IE8

2012-09-05 Thread Dan Simko
sorry, attachment is here http://wickeria.com/screenshot.png On Wed, Sep 5, 2012 at 10:27 PM, Dan Simko wicke...@gmail.com wrote: Hi, online example (http://www.wicket-library.com/inmethod-grid) is working great in my IE8, but when I run latest version from

RE: InMethod grid, Hidden Field in column does not get updated

2011-11-18 Thread Warren Bell
Any takers, this one has me stumped. Is there anything special with how a HiddenField gets updated after an Ajax call. The HiddenField is in the same panel as a TextField. The TextField gets updated but the HiddenField does not. I have checked and the values have changed on the model object for

Re: inmethod grid problem in IE8

2011-11-10 Thread Duy Do
After upgrade the app to version 1.5.2, the problem has gone. Cheers, Duy On Mon, Sep 19, 2011 at 3:27 PM, Martin Grigorov mgrigo...@apache.orgwrote: Also try with IE9/10. They may give you better error description. On Sun, Sep 18, 2011 at 1:18 PM, Duy Do doquoc...@gmail.com wrote: Hi

Re: inmethod grid - Is is possible to have column with AJAX link to perform some action?

2011-10-24 Thread Martin Grigorov
Hi, You can create a column that renders a Panel and this panel can contain anything you need. On Mon, Oct 24, 2011 at 6:03 AM, Chris Colman chr...@stepaheadsoftware.com wrote: Is it possible in inmethod grid to create a column where each row contains a link (nice to have an icon even instead

RE: inmethod grid - Is is possible to have column with AJAX link to perform some action?

2011-10-24 Thread Chris Colman
Ah, I was thinking too hard about it again. Once again the Wicket solution is so simple I looked right past it :) -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Monday, 24 October 2011 6:28 PM To: users@wicket.apache.org Subject: Re: inmethod grid

Re: inmethod grid problem in IE8

2011-09-19 Thread Martin Grigorov
Also try with IE9/10. They may give you better error description. On Sun, Sep 18, 2011 at 1:18 PM, Duy Do doquoc...@gmail.com wrote: Hi Attila, I'm using version 1.4.18 of Wicket, inmethod-grid. I will try to test the example of inmethod grid and let you know the result. Thank you for your

Re: inmethod grid problem in IE8

2011-09-18 Thread Duy Do
Any suggestion? On 9/17/2011 10:59 AM, Duy Do wrote: Hi Wicketers, I have a problem with inmethod-grid in IE8 as below error. This issue cause the grid display incorrectly. Is it a bug? And how to fix it? Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1;

Re: inmethod grid problem in IE8

2011-09-18 Thread Attila Király
Repeating my previous answer to you: give more details. For example: which wicket, inmethod-grid versions are you using? Is the problem reproducable with the wicketstuff inmethod grid examples web app too? Attila 2011/9/18 Duy Do doquoc...@gmail.com Any suggestion? On 9/17/2011 10:59 AM,

Re: inmethod grid problem in IE8

2011-09-18 Thread Duy Do
Hi Attila, I'm using version 1.4.18 of Wicket, inmethod-grid. I will try to test the example of inmethod grid and let you know the result. Thank you for your help. Regards, Duy On 9/18/2011 4:06 PM, Attila Király wrote: Repeating my previous answer to you: give more details. For example:

Re: inmethod grid problem in IE8

2011-09-17 Thread Attila Király
Hi Duy, which wicket, inmethod-grid versions are you using? Regards, Attila 2011/9/17 Duy Do doquoc...@gmail.com Hi Wicketers, I have a problem with inmethod-grid in IE8 as below error. This issue cause the grid display incorrectly. Is it a bug? And how to fix it? Webpage error details

Re: inmethod-grid bugs?

2011-07-06 Thread Martin Grigorov
Which version do you use ? On Wed, Jul 6, 2011 at 9:02 AM, Duy Do doquoc...@gmail.com wrote: Hi all, I'm working on inmethod-grid to add a filter on top of it. Everything works fine if I don't navigate through other pages of the grid. Once I go to other page and filter the results, I get

Re: inmethod-grid bugs?

2011-07-06 Thread Duy Do
Hi Martin, I use version 1.4.17. It's same in version 1.5-SNAPSHOT on wicketstuff. Thank you for your quick response. On 7/6/2011 2:07 PM, Martin Grigorov wrote: Which version do you use ? On Wed, Jul 6, 2011 at 9:02 AM, Duy Dodoquoc...@gmail.com wrote: Hi all, I'm working on

Re: inmethod-grid bugs?

2011-07-06 Thread Attila Király
Please open an issue in wicketstuff issuetracker at github for this. Thanks. On Jul 6, 2011 9:16 AM, Duy Do doquoc...@gmail.com wrote: Hi Martin, I use version 1.4.17. It's same in version 1.5-SNAPSHOT on wicketstuff. Thank you for your quick response. On 7/6/2011 2:07 PM, Martin Grigorov

Re: inmethod-grid bugs?

2011-07-06 Thread Attila Király
My guess is that you are using a custom DataProviderAdapter with a custom AbstractPageableView. If this is the case, the workaround is to override AbstractPageableView.wrapQuery() to wrap the IQuery into an IGridQuery similar to DataGridBody.Data.wrapQuery(). I am working on a solution to solve

Re: inmethod-grid bugs?

2011-07-06 Thread Duy Do
I just used DataProviderAdapter to wrap a custom SortableDataProvider with PagingToolbar. As your suggestion, I will try to override AbstractPageableView.wrapQuery() to wrap the current IQuery into IGridQuery. Thanks, Duy On 7/7/2011 5:00 AM, Attila Király wrote: My guess is that you are

Re: inmethod-grid generics

2011-07-03 Thread Duy Do
Attila, thank you for your information. On 7/3/11 1:37 AM, Attila Király wrote: Hi Duy, Generics were added only to the 1.5 branch of inmethod-grid. There is no plan to backport this to the 1.4 branch. Attila 2011/7/2 Duy Dodoquoc...@gmail.com Hi wicketers, I found inmethod-gric generics

Re: inmethod-grid generics

2011-07-02 Thread Attila Király
Hi Duy, Generics were added only to the 1.5 branch of inmethod-grid. There is no plan to backport this to the 1.4 branch. Attila 2011/7/2 Duy Do doquoc...@gmail.com Hi wicketers, I found inmethod-gric generics for wicket 1.5 on wicketstuff but can not find one for wicket 1.4.x. Is there

RE: Inmethod Grid Select All or Reload Grid

2011-04-20 Thread Chris Colman
that first thing tomorrow morning when I hit the office. -Original Message- From: Attila Király [mailto:kiralyattila...@gmail.com] Sent: Tuesday, 19 April 2011 3:26 AM To: users@wicket.apache.org Subject: Re: Inmethod Grid Select All or Reload Grid Can you provide a minimal example webapp

Re: Inmethod Grid Select All or Reload Grid

2011-04-20 Thread Marc Nuri San Félix
Hello. Of course, objects updated in the database shouldn't be equal to those previously displayed in the table (they aren't equal). If you don't comply to this you'll have problems not only with inmehtod grid. The equals method of my beans always include at least this: if (this.id !=

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Attila Király
2011/4/18 GJT taulant.gju...@helvetic.com Hi there I started using the Inmethod DataGrid because I need resizable tables and I need to be able to select multi entries. First, I had the problem that I couldn't select all entries and the multi select didin't work properly. In this forum I

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread GJT
I am using wicket 1.4.16 and inmethod-grid 1.4.17 For example, I have a list of flights. I select every flight I want to change. So I press a button which opens a modal window. There I change the times of the selected flights. After saving, the table should load the new data

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Marc Nuri San Félix
Try this: +++ grid.markAllItemsDirty(); grid.update(); // - This adds the grid to AjaxRequestTarget, so target.addComponent(grid) is not necessary +++ Regards -- Marc Nuri On Mon, Apr 18, 2011 at 10:15, GJT taulant.gju...@helvetic.com wrote: I am using wicket 1.4.16 and inmethod-grid 1.4.17

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread GJT
I tried that before and I tried it again, but it doesn't work. I think the problem is somewhere with my LoadableDetachableModel which contains a constructor, equals(Object), hashCode() and load() Marc Nuri wrote: Try this: +++ grid.markAllItemsDirty(); grid.update(); // - This adds the

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Marc Nuri San Félix
Have you debugged your project to see if the IDatasource is queried when you perform the Ajax reload?? If you reload the page does the data update?? -- Marc Nuri On Mon, Apr 18, 2011 at 13:19, GJT taulant.gju...@helvetic.com wrote: I tried that before and I tried it again, but it doesn't work.

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread GJT
After debugging, I found out the with the hashCode method, the columns don't load. If I take out the hashCode method, the columns loads the data again. But as I said, the selection doesn't work anymore. -- View this message in context:

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Marc Nuri San Félix
For what you're saying, I believe you've got something messed up in your Bean's hashCode and equals method. Inmethod's Datagrid keeps a Set (HashSet) of IModel objects to keep track of which items are selected. If you've implemented correctly the equals method in your bean and believe that there's

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Attila Király
Can you provide a minimal example webapp showing the problem? Attila 2011/4/18 GJT taulant.gju...@helvetic.com After debugging, I found out the with the hashCode method, the columns don't load. If I take out the hashCode method, the columns loads the data again. But as I said, the selection

Re: inmethod grid

2010-07-02 Thread nino martinez wael
Ok i'll put in my stuff when I get time, hopefully during next week.. 2010/7/2 Charles Deal chuckdea...@gmail.com Some of my changes alter the inmethod core to facilitate inheritance too. If the change is in the name of a more extensible component, than I say go for it. On Thu, Jul 1, 2010

Re: inmethod grid

2010-07-01 Thread Charles Deal
I believe Matej is the only developer. I also have code to contribute to the project. Considering it is a WicketStuff project, I suppose that we could make the changes ourselves. I posted my changes as patches in order to get some feedback, but I received no comments for or against my proposed

Re: inmethod grid

2010-07-01 Thread nino martinez wael
I'd say we give Matej til tomorrow, and then we put in our changes? I tried to get a hold of Matej on facebook, but no answer.. And I know at least one who would like to use my changes.. 2010/7/1 Charles Deal chuckdea...@gmail.com I believe Matej is the only developer. I also have code to

Re: inmethod grid

2010-07-01 Thread Martijn Dashorst
Matej is busy getting rich from his iPhone application called Air Video (http://inmethod.com). Note that the website is running brix cms. Martijn On Thu, Jul 1, 2010 at 2:49 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: I'd say we give Matej til tomorrow, and then we put in our

Re: inmethod grid

2010-07-01 Thread nino martinez wael
Heh, I guess he don't mind the additions me and Charles have made then. Only thing about my code are that my delete button are using a workaround to be functional, otherwise i'd have to change Matejs core code so it supports inheritance better.. Nice that his site are running brix, and also

Re: inmethod grid

2010-07-01 Thread Charles Deal
Some of my changes alter the inmethod core to facilitate inheritance too. If the change is in the name of a more extensible component, than I say go for it. On Thu, Jul 1, 2010 at 1:16 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Heh, I guess he don't mind the additions me and

Re: InMethod Grid

2010-06-20 Thread Douglas Ferguson
Looks like it is Apache 2.0, which I'd be willing to guess would be required for something to show up on wicketstuff. https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/inmethod-grid-parent/pom.xml D/ On Jun 20, 2010, at 8:41 AM, Avraham Rosenzweig wrote:

Re: InMethod Grid

2010-06-20 Thread Jeremy Thomerson
It is ASL 2, but the Apache license is *not* required for WicketStuff. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 20, 2010 12:10 PM, Douglas Ferguson doug...@douglasferguson.us wrote: Looks like it is Apache 2.0, which I'd be willing to

Re: inmethod-grid filtering

2010-06-08 Thread nino martinez wael
well sort of.. I've made a query model (cant remember the inmethod term rigth now) that can do searches, it's not a top or bottom bar for inmethod grid, but it does do somesort of filtering.. What had you in mind? 2010/6/8 Josh Chappelle jchappe...@4redi.com: Hi, Has anyone added

RE: inmethod-grid filtering

2010-06-08 Thread Josh Chappelle
the filtering functionality. Thanks, Josh -Original Message- From: nino martinez wael [mailto:nino.martinez.w...@gmail.com] Sent: Tuesday, June 08, 2010 12:51 PM To: users@wicket.apache.org Subject: Re: inmethod-grid filtering well sort of.. I've made a query model (cant remember

Re: inmethod grid / Delete/add a row?

2010-04-28 Thread Swanthe Lindgren
The row model is probably easily accessible from your proposed delete column, but I don't know how to rerender a single row. //Swanthe On 2010-04-27 17:48, nino martinez wael wrote: True... I am in the process of doing my own delete column, and expect to have it working by tomorrow. I just

Re: inmethod grid / Delete/add a row?

2010-04-28 Thread Thierry Peng
Hello I solved this problem some months ago and created a SubmitCancelDeleteColumn. A custom Grid Class provides the possibility to add a row. I had to fork the inmethod-grid because some changes were necessary. Drop me an email if you want the source code of this fork and the client code.

Re: inmethod grid / Delete/add a row?

2010-04-27 Thread Swanthe Lindgren
That is a part of the inmethod grid I find very hard, as its based solely on a list of models. I haven't even found a way to know which row is selected, even less which row is next to the selected row, which can be very useful information when you wish to insert a row or select the row

Re: inmethod grid / Delete/add a row?

2010-04-27 Thread nino martinez wael
True... I am in the process of doing my own delete column, and expect to have it working by tomorrow. I just need to be able to mark the item dirty, somehow I either use the wrong model or the grid does not pick it up. On either account it does not remove the delete row until a manual refresh as

Re: InMethod Grid: resizing rowcount

2010-03-16 Thread Pointbreak
On Mon, 15 Mar 2010 16:06 +0100, Thierry Peng p...@glue.ch wrote: Pointbreak schrieb: On Mon, 15 Mar 2010 15:06 +0100, Thierry Peng p...@glue.ch wrote: Pointbreak schrieb: The public interface of the inmethod DataGrid/DefaultDataGrid does not seem to provide functionality to

Re: InMethod Grid: resizing rowcount

2010-03-16 Thread Erik van Oosten
I can confirm this. It took me a few days of debugging before I found out :( Another solution is to just replace the inmethod grid with a freshly created instance after data changes. You can share the DataSource, and you may have to copy over the set of selected items. Regards, Erik.

Re: InMethod Grid: resizing rowcount

2010-03-15 Thread Thierry Peng
Pointbreak schrieb: The public interface of the inmethod DataGrid/DefaultDataGrid does not seem to provide functionality to expand the number of rows after an ajax-call that e.g. adds data to the underlying datasource. Is there a way to tell the DataGrid that the underlying datasource may have

Re: InMethod Grid: resizing rowcount

2010-03-15 Thread Pointbreak
On Mon, 15 Mar 2010 15:06 +0100, Thierry Peng p...@glue.ch wrote: Pointbreak schrieb: The public interface of the inmethod DataGrid/DefaultDataGrid does not seem to provide functionality to expand the number of rows after an ajax-call that e.g. adds data to the underlying datasource. Is

Re: InMethod Grid: resizing rowcount

2010-03-15 Thread Thierry Peng
Pointbreak schrieb: On Mon, 15 Mar 2010 15:06 +0100, Thierry Peng p...@glue.ch wrote: Pointbreak schrieb: The public interface of the inmethod DataGrid/DefaultDataGrid does not seem to provide functionality to expand the number of rows after an ajax-call that e.g. adds data to the

Re: InMethod grid AbstractColumn#getHeaderCssClass() problem.

2010-02-01 Thread Matej Knopp
But the css class is in the output. Can't it be a styling problem? I.e. the css being by more specific rule? Can you try something like th.centerAlign * { text-align: center !important; } Or even more specific clas th.centerAlign div.imxt-a { text-align:center !important; } If that doesn't

Re: InMethod grid AbstractColumn#getHeaderCssClass() problem.

2010-02-01 Thread Warren Bell
Your first suggestion worked: th.centerAlign * { text-align: center !important; } Sorry about that, I just don't know my css very well. Just a suggestion, but maybe the JavaDocs should mention something about that? Also, what is the future of InMethod? Warren Matej Knopp wrote: But

Re: inmethod grid sorting on FireFox

2009-12-07 Thread Matej Knopp
I just tried the sorting with grid examples in Firefox 3.5.5 and it works just fine. -Matej On Mon, Dec 7, 2009 at 10:20 PM, Charles Deal chuckdea...@gmail.com wrote: I'm using Wicket 1.4.1 with inmethod grid 1.4.1. We have successfully used the inmethod grid in a few different scenarios but

Re: inmethod grid sorting on FireFox

2009-12-07 Thread Charles Deal
Yeah, I figured as much. I thought I was using a stock Header row/event, but I'll double check that in the morning. I'll also be upgrading to 1.4.3 and 1.4-SNAPSHOT in the morning to make sure there is not some patch that I am missing. On Mon, Dec 7, 2009 at 4:51 PM, Matej Knopp

Re: inmethod grid generics patch

2009-05-08 Thread Matej Knopp
Hi, it's not abandoned. There's a project created for it in wicketstuff jira that can be used to submit patches. -Matej On Fri, May 8, 2009 at 11:49 PM, Brill Pappin br...@pappin.ca wrote: according to this post; http://tinyurl.com/qlghyf the inmethod grid it he wicketstuff modules was to

Re: inmethod grid generics patch

2009-05-08 Thread Matej Knopp
Found the patch, will assign it to jira issue. And possibly apply after review. -Matej On Fri, May 8, 2009 at 11:54 PM, Matej Knopp matej.kn...@gmail.com wrote: Hi, it's not abandoned. There's a project created for it in wicketstuff jira that can be used to submit patches. -Matej On Fri,

Re: inmethod grid generics patch

2009-05-08 Thread Brill Pappin
That would be great! If you need an area to focus on, it's the generics that type things like getSelectedItems() etc. and some of the other common overrides. - Brill Pappin On 8-May-09, at 5:57 PM, Matej Knopp wrote: Found the patch, will assign it to jira issue. And possibly apply

Re: inmethod grid converter/formatter?

2009-05-07 Thread Ryan McKinley
what about just implementing AbstractLightWeightColumn#newCell? this lets you write text directly to the output... On May 7, 2009, at 4:15 PM, Brill Pappin wrote: I'm spiking on the inmethod grid components from wicketstuff (1.4- SNAPSHOT) I need to be able to format the data in columns

Re: inmethod grid converter/formatter?

2009-05-07 Thread Brill Pappin
that would certainly work, but I'd lose the editor column I'm using ;) All i really need is to be able to add a display formatter so i can truncate the content with an ellipsis. Even a method i could override when its outputting the label content would work. If there is such a method, I'm

Re: inmethod grid and add/delete examples

2009-02-12 Thread Will Jaynes
On Wed, Feb 11, 2009 at 9:58 AM, Will Jaynes wjay...@gmail.com wrote: I have just started to look at the inmethod datagrid in wicketstuff. The one thing that the examples don't show are how to add and delete items. Are there such examples somewhere? Will I'm really missing a lot with

Re: inmethod grid and add/delete examples

2009-02-12 Thread Warren Bell
The books Wicket in Action and Enjoying Web Development with Wicket helped me a lot when I first started using Wicket. Warren On Wed, Feb 11, 2009 at 9:58 AM, Will Jaynes wjay...@gmail.com wrote: I have just started to look at the inmethod datagrid in wicketstuff. The one thing that the

Re: inmethod grid question

2008-11-14 Thread ulrik
Hi, Thank you! I will give it a try. I'll get back with the result Matej Knopp-2 wrote: Hi, something like this should work: grid.markItemDirty(itemThatHasChanged); grid.update(); -Matej On Fri, Nov 14, 2008 at 6:18 PM, ulrik [EMAIL PROTECTED] wrote: Hello I have the

Re: inmethod / grid website?

2008-10-30 Thread Nino Saturnino Martinez Vazquez Wael
It would be great if you could write a bit about it on wicketstuff wiki.. And which license are it under? It looks really cool btw. Matej Knopp wrote: There is branch for Wicket 1.3 in Wicketstuff SVN. -Matej On Wed, Oct 29, 2008 at 10:41 PM, Edvin Syse [EMAIL PROTECTED] wrote: What

Re: inmethod / grid website?

2008-10-30 Thread Edvin Syse
Thanks, that worked great. I'm really impressed by this component, and I think it would be very good for Wicket in general that this gets more available to people, including some examples. I'd be happy to write examples and wiki-pages once I understand a bit more of it, btw. -- Edvin Matej

Re: inmethod / grid website?

2008-10-30 Thread Matej Knopp
The license is ASL2. As for wiki, I wouldn't mind if someone put a brief info to wicketstuff wiki. I can't do that, I can't get to wicketstuff. Some firewall issue. -Matej On Thu, Oct 30, 2008 at 7:29 AM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: It would be great if you

Re: inmethod / grid website?

2008-10-29 Thread Edvin Syse
What version of Wicket is this compiled against? I tried using it with 1.3.5 and it seems AbstractGrid is trying to call a method called init in org.apache.wicket.MetaDataKey, which doesn't exist. -- Edvin Martin Grigorov skrev: Jars: http://wicketstuff.org/maven/repository/com/inmethod/

Re: inmethod / grid website?

2008-10-29 Thread Matej Knopp
There is branch for Wicket 1.3 in Wicketstuff SVN. -Matej On Wed, Oct 29, 2008 at 10:41 PM, Edvin Syse [EMAIL PROTECTED] wrote: What version of Wicket is this compiled against? I tried using it with 1.3.5 and it seems AbstractGrid is trying to call a method called init in

Re: inmethod / grid website?

2008-10-21 Thread Robby O'Connor
They may have screwed up their context descriptor or perhaps just didn't deploy it? Best bet would be email their tech contect (see domain name whois for info.) --rob Martin Voigt wrote: Hi, this may be the wrong place to ask, but anyways. What happened to the inmethod/ grid web site?

Re: inmethod / grid website?

2008-10-21 Thread Martin Voigt
Yea, was just that it's Matej who did the grid stuff (at least to my knowledge), so I thought it would make sense to ask it here, as I'm sure I'm not the only one using grid ;) Regards, Martin 2008/10/21 Robby O'Connor [EMAIL PROTECTED]: They may have screwed up their context descriptor or

Re: inmethod / grid website?

2008-10-21 Thread Jörn Zaefferer
I second that, please get the site fixed! Jörn On Tue, Oct 21, 2008 at 12:27 PM, Martin Voigt [EMAIL PROTECTED] wrote: Yea, was just that it's Matej who did the grid stuff (at least to my knowledge), so I thought it would make sense to ask it here, as I'm sure I'm not the only one using grid

Re: inmethod / grid website?

2008-10-21 Thread Erik van Oosten
We should really have a FAQ here. Anyways: you can find the inmethod stuff in wicket-stuff now. There is no official release so you'll have to compile the sources yourself or grab a recent jar from wicket-stuff's bamboo server. Regards, Erik. Martin Voigt wrote: Hi, this may be the

Re: inmethod / grid website?

2008-10-21 Thread Matej Knopp
Hi, I'm sorry about it, been a bit busy lately. The grid is in Wicket Stuff SVN. It's likely that it will get to Wicket 1.5 extension. I wanted to put info on wicketstuff wiki (where it imho belongs) but Wicket stuff firewall is blocking me. If anyone could do that for me it would be nice.

Re: inmethod / grid website?

2008-10-21 Thread Martin Grigorov
Jars: http://wicketstuff.org/maven/repository/com/inmethod/ Demo: http://wicketstuff.org/grid-examples/ Update your bookmarks. On Tue, 2008-10-21 at 11:53 +0200, Martin Voigt wrote: Hi, this may be the wrong place to ask, but anyways. What happened to the inmethod/ grid web site?

Re: Inmethod Grid with wicket 1.3

2008-10-02 Thread lesterburlap
Jim Pinkham wrote: I'm getting this error at runtime I don't understand: NoSuchMethodError: org.apache.wicket.MetaDataKey: method init()V not found at com.inmethod.grid.common.AbstractGrid$4.init(AbstractGrid.java:908) at

  1   2   >