Hi Jacques, thank you for all the screenshot-reports. They will be really usefull to address the remaining issues. Developing the Tomahawk theme was a nice chat-based collaboration experience between me in Napoli, Italy and Erik in Dallas, Texas.
Regarding the lookup icon: This is not related to the theme itself but must be fixed in the FTL files. What happens is that the FTL files renders the lookup fields with a different HTML from what is rendered by the form widget. In order to make OFBiz more consistent we need to have the FTL generate the same HTML structure as the form widget and not to have the theme do all the work to handle all variants of things. The lookups in the FTL in https://ofbiz-vm.apache.org/catalog/control/main have this HTML: <div> <label for="keywordSearchCategoryId">Category ID:</label> <input type="text" name="SEARCH_CATEGORY_ID" id="keywordSearchCategoryId" size="15" maxlength="20" value=""/><a href="javascript:call_fieldlookup2($('keywordSearchCategoryId'),'LookupProductCategory');"><img src='/images/fieldlookup.gif' width='15' height='14' alt="Click here For Field Lookup" /></a> </div> but if you go in https://ofbiz-vm.apache.org/assetmaint/control/EditFixedAsset?fixedAssetId=DEMO_PROJECTOR you will see that the lookups have this HTML: <div class="field-lookup"><ul> <li><input type="text" name="parentFixedAssetId" size="25" id="EditFixedAsset_parentFixedAssetId" autocomplete="off"/></li><li> <a href="javascript:call_fieldlookup2(document.EditFixedAsset.parentFixedAssetId,'LookupFixedAsset');"> <span id="EditFixedAsset_parentFixedAssetId_indicator" style="display: none" class="indicator"><img /></span> </a></li></ul></div> Using this HTML *all* the themes already handle it very well. Every theme can specify a different icon and tomahawk uses a very nice card icon with a transparent background. -Bruno 2010/3/3 Jacques Le Roux <[email protected]>: > Hi, > > I have created a new improvement issue for the Tomahawk theme > https://issues.apache.org/jira/browse/OFBIZ-3530 > > I wonder if there is currently a WIP or a Jira created for the lookups > button (should be transparent). > I can work on it else. > > This theme is wonderful, and almost perfet from the start, great > enhancement. > I think will commit the layered lookups today, the 10.04 will look and > respond brightly > > Thanks guys! > > Jacques > > >
