Sandbox: New screenlet screen widget
------------------------------------ Key: OFBIZ-1626 URL: https://issues.apache.org/jira/browse/OFBIZ-1626 Project: OFBiz Issue Type: New Feature Components: framework Reporter: Adrian Crum Priority: Minor Attachments: screenlet_widget.patch I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Crum updated OFBIZ-1626: ------------------------------- Attachment: screenlet_widget.patch The attached patch includes the screenlet screen widget. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12567128#action_12567128 ] [hidden email] edited comment on OFBIZ-1626 at 2/8/08 9:51 AM: ------------------------------------------------------------ The attached patch includes the screenlet screen widget. Apply the patch, then navigate to https://127.0.0.1:8443/assetmaint/control/findFixedAssets for a demonstration. was (Author: [hidden email]): The attached patch includes the screenlet screen widget. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Crum updated OFBIZ-1626: ------------------------------- Attachment: COLLAPSE.JPG EXPAND.JPG A couple of screen shots demonstrating the screenlet widget's ability to include form widget navigation in the screenlet title bar, and the ability to collapse screenlets. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12567136#action_12567136 ] Adrian Crum commented on OFBIZ-1626: ------------------------------------ The screenlet widget supports sub-widgets in the same way as a <container> element. The screenlets in the screen shots are defined as follows: <screenlet name="searchCriteria" title="${uiLabelMap.CommonSearchCriteria}" collapsible="true"> <container style="screenlet-body"> <include-form name="FindFixedAssets" location="component://assetmaint/widget/forms/FixedAssetForms.xml"/> </container> </screenlet> <screenlet title="${uiLabelMap.CommonSearchResults}" navigation-form-name="ListFixedAssets"> <include-form name="ListFixedAssets" location="component://assetmaint/widget/forms/FixedAssetForms.xml"/> </screenlet> The "navigation-form-name" attribute tells the widget to look for the specified form in its sub elements and put the form's pagination menu in the screenlet title bar. There is also a "navigation-menu-name" attribute for specifying a menu widget sub element to be included in the screenlet title bar. In the case of both attributes being used, the "navigation-menu-name" attribute takes precedence. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12567138#action_12567138 ] Adrian Crum commented on OFBIZ-1626: ------------------------------------ I suppose we could eliminate the need for the <container style="screenlet-body"> element if there was an additional attribute, like padding="true | false". It could default to true, and be set to false for cases like the table in the screen shot. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Crum updated OFBIZ-1626: ------------------------------- Attachment: screenlet_widget.patch Updated patch includes the padded="true | false" attribute. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12567189#action_12567189 ] Jacques Le Roux commented on OFBIZ-1626: ---------------------------------------- I like the idea, did not review yet. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12567200#action_12567200 ] Daniel MartÃnez commented on OFBIZ-1626: ---------------------------------------- I think it's a great feature Adrian, it has my vote. At first I didn't see the box (it is also small ;). Maybe it would be more obvious at beginning of text? > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12567387#action_12567387 ] Adrian Crum commented on OFBIZ-1626: ------------------------------------ I have completed the code for this. I will hold off on committing it until there is more feedback, or if there are no objections. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12567406#action_12567406 ] Hans Bakker commented on OFBIZ-1626: ------------------------------------ This looks pretty good! you have my vote..... +1 > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Crum closed OFBIZ-1626. ------------------------------ Resolution: Fixed Committed, rev 620699. > Sandbox: New screenlet screen widget > ------------------------------------ > > Key: OFBIZ-1626 > URL: https://issues.apache.org/jira/browse/OFBIZ-1626 > Project: OFBiz > Issue Type: New Feature > Components: framework > Reporter: Adrian Crum > Priority: Minor > Attachments: COLLAPSE.JPG, EXPAND.JPG, screenlet_widget.patch, screenlet_widget.patch > > > I'm working on developing a screenlet screen widget. Details are in comments and attached files. Please review and comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
Free forum by Nabble | Edit this page |