this interface describes more of a data-grid/matrix type data. it can be easily created by a listview/repeater embedded in a listview/repeater much like gridview/datatables do now. just a different itnerface.

-Igor


On 8/24/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote:

Is there any way of building tables in wicket that models somethings exactly like its done in Swing Tables where i can code close to this:

    public MyTableModel(TabularObject t) {
       
    }
   
    public int getRowCount() {
       
    }
   
    public int getColumnCount() {
       
    }
   
    public String getColumnName(int column) {
       
       
    }
   
    public Class<?> getColumnClass(int columnIndex) {
        return String.class;
       
    }
   
    public boolean isCellEditable(int rowIndex, int columnIndex) {
        return false;
    }
   
    public Object getValueAt(int rowIndex, int columnIndex) {
      
       
    }
   
DataTable is the closest Class to Tables i have seen

--
"It takes insanity to drive in sanity" - Me

Aladejebi Ayodeji A.,
DabarObjects Solutions
Email: [EMAIL PROTECTED]
Mobile: +234 803 589 1780
Web: www.dabarobjects.com

Community:
www.cowblock.net

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to