hi
I am develop web page for search(just like google).When we click on
button result are display on the screen that's why we using gwtext in
which we use pagingmemoryProxy.Result are display on grid panel and
page no are also shown.But we want to give link to the cell,so when we
click on the first result next window is shown,but how can be do the
link?.B'coz that function is return only obj,so how we convert into
widget?
Thnx in advance
code is given below:-
PagingMemoryProxy proxy = new PagingMemoryProxy(getCompanyData());
RecordDef recordDef = new RecordDef(
new FieldDef[]{
new StringFieldDef("company"),
new FloatFieldDef("price"),
new FloatFieldDef("change"),
}
);
private Object[][] getCompanyData() {
img.setUrl("C:\\1391\\01\\9101033.jpg");
img.setSize("75px","75px");
Object[][] obj = new Object[][]{
new Object[]{img, new Double(71.72), new Double
(0.02)
}
};
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---