On Wednesday, August 25, 2010, Phil Scadden <[email protected]> wrote: > I want to get navigation history icons displayed in a quite complex > toolbar. I am doing this with: > var nav = new OpenLayers.Control.NavigationHistory(); > var action1 = new GeoExt.Action({ > text: "previous", > control: nav.previous, > disabled: true > }); > > > var action2 = new GeoExt.Action({ > text: "next", > control: nav.next, > disabled: true > }); > var mapTBar = new Ext.Toolbar({ > defaults: { > scale: 'medium', > iconAlign:'top' > }, > items: [ > { > xtype: 'buttongroup', > title: 'Navigation', > defaults: { > scale: 'medium', > iconAlign:'top' > }, > items: [panZoomButton,action1,action2] > etc. > > > The problem is that I only see text, not the default icons (which are in > theme/default/img directory. - the OL navigationhistory examples work > fine if I save the source and run it from same place). It seems I need > to override an ext stylesheet somewhere but where?
Hi. You need to set iconCls in the Actions and have CSS for your icon classes. See the API doc of Ext.Button, it should be documented there. Cheers, -- Eric Lemoine Camptocamp France SAS Savoie Technolac, BP 352 73377 Le Bourget du Lac, Cedex Tel : 00 33 4 79 44 44 96 Mail : [email protected] http://www.camptocamp.com _______________________________________________ Users mailing list [email protected] http://www.geoext.org/cgi-bin/mailman/listinfo/users
