Added check availability functionality on new create profile page of e commerce.
-------------------------------------------------------------------------------- Key: OFBIZ-2000 URL: https://issues.apache.org/jira/browse/OFBIZ-2000 Project: OFBiz Issue Type: New Feature Components: ecommerce Reporter: Rishi Solanki Priority: Minor After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. Affected files for this feature are ; CustomerEvents.xml ----> ecommerce profile.js ---> ecommerce NewCustomer.ftl ---> ecommerce (for new one) Regards - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] surya kusumakar updated OFBIZ-2000: ----------------------------------- Attachment: CheckAvailUserName.patch To implement the functionality on Ecommerce profile pages so that user can check the availability of username he/she has entered on CreateProfilePage using Ajax request. Special thanks to Rishi Solanki . --- Kirti Dhakad Surya Kusumakar Onima Kasliwal > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12640173#action_12640173 ] Rishi Solanki commented on OFBIZ-2000: -------------------------------------- Surya, Kirti, and Onima, Your work is absolutely working as per requirement. Here are few improvements which need to be rectified before it goes into trunk. - You have included CustomerScreens.xml in the patch (No need to include it in your patch) - The uiLabel you created in the EcommerceUiLabel.xml is "CommonCheckAvailability" we generally prefer the Component name as prefix. Like "EcommerceCheckAvailability". - in the request you have use to go for secured port, there is no need to send this request at secured port. - In checkAvailableUserName function in JS there is need some indentation fixes. - Finally we need to remove the link and can call the Ajax.Request on change event of username. Do the needful and upload the patch ASAP. For me you all have done a great job. -- Regards Rishi Solanki > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12640428#action_12640428 ] awdesh singh parihar commented on OFBIZ-2000: --------------------------------------------- Great Work But i would like to suggest one thing please use env-name="" instead of value = "${}" under entity-one condition. > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Surya Kusumakar updated OFBIZ-2000: ----------------------------------- Attachment: CheckAvailableUserName.patch Implemented the User Availability Check using Jsonservice instead of Jsonsimple.Also removed the check availability button and implemented the check functionality on "change" Event instead of "click" Event. Thanks to Rishi for his support. __ Onima, Kirti, Surya and Harsha. > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailableUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Surya Kusumakar updated OFBIZ-2000: ----------------------------------- Attachment: (was: CheckAvailableUserName.patch) > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Surya Kusumakar updated OFBIZ-2000: ----------------------------------- Comment: was deleted > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Surya Kusumakar updated OFBIZ-2000: ----------------------------------- Attachment: CheckAvailUserName.patch Implemented the User Availability Check using Jsonservice instead of Jsonsimple.Also removed the check availability button and implemented the check functionality on "change" Event instead of "click" Event. Thanks Rishi for his support. __ Onima Kasliwal Kirti Dhakad Surya Kusumakar Harsha Chadhar. > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Surya Kusumakar updated OFBIZ-2000: ----------------------------------- Attachment: CheckAvailUserName.patch Did the required changes. ---- Surya Kusumakar Kirti Dhakad Harsha Chadhar Onima Kasliwal > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Surya Kusumakar updated OFBIZ-2000: ----------------------------------- Attachment: CheckAvailUserName.patch Did the required changes in service checkAvailableUsername. --- Harsha Chadhar Surya Kusumakar Onima Kasliwal Kirti Dhakad > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Harsha Chadhar updated OFBIZ-2000: ---------------------------------- Attachment: CheckAvailUserName.patch Resolved the comments issued on CR-899. > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12649336#action_12649336 ] harshacha edited comment on OFBIZ-2000 at 11/20/08 3:54 AM: ----------------------------------------------------------------- Resolved the comments issued on CR-899. Problem occured while adding license was (Author: harshacha): Resolved the comments issued on CR-899. > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12649336#action_12649336 ] harshacha edited comment on OFBIZ-2000 at 11/20/08 4:10 AM: ----------------------------------------------------------------- Resolved the comments issued on Check User Availability functionality in Ecommerce. Problem occured while adding license was (Author: harshacha): Resolved the comments issued on CR-899. Problem occured while adding license > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12674109#action_12674109 ] Jacques Le Roux commented on OFBIZ-2000: ---------------------------------------- Is somebody taking care of this issue ? > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12674153#action_12674153 ] Vikas Mayur commented on OFBIZ-2000: ------------------------------------ Hi Jacques, I think the patch probably need a little more rework. I will engage some body soon to look after it. BTW, This patch has also modifications to the framework files so I would appreciate if you can assign it to yourself. > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux reassigned OFBIZ-2000: -------------------------------------- Assignee: Jacques Le Roux > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Assignee: Jacques Le Roux > Priority: Minor > Attachments: CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Richa Goyal updated OFBIZ-2000: ------------------------------- Attachment: CheckAvailUsername.patch I have updated the patch as per suggested by reviewers.Please review it and provide your suggestions. > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Assignee: Jacques Le Roux > Priority: Minor > Attachments: CheckAvailUsername.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12674240#action_12674240 ] Jacques Le Roux commented on OFBIZ-2000: ---------------------------------------- Hi Richa, Could you please use <fail-property instead of <fail-message in checkAvailableUsername. I suggest a <property key="CommonError... labels together. Else looks ready to be commited (did not test yet) Thanks > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Assignee: Jacques Le Roux > Priority: Minor > Attachments: CheckAvailUsername.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Richa Goyal updated OFBIZ-2000: ------------------------------- Attachment: CheckAvailUsername.patch Updated the patch, Used <fail-property> instead of <fail-message> & added a new UiLabel to display the message. -- Richa Goyal > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Assignee: Jacques Le Roux > Priority: Minor > Attachments: CheckAvailUsername.patch, CheckAvailUsername.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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-2000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12674527#action_12674527 ] Jacques Le Roux commented on OFBIZ-2000: ---------------------------------------- Hi Richa, I can't see how to test this from the UI, please advice, thanks > Added check availability functionality on new create profile page of e commerce. > -------------------------------------------------------------------------------- > > Key: OFBIZ-2000 > URL: https://issues.apache.org/jira/browse/OFBIZ-2000 > Project: OFBiz > Issue Type: New Feature > Components: ecommerce > Reporter: Rishi Solanki > Assignee: Jacques Le Roux > Priority: Minor > Attachments: CheckAvailUsername.patch, CheckAvailUsername.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch, CheckAvailUserName.patch > > > After adding this functionality while creating a profile from e commerce new profile pages, user will be able to check his/her selected userLoginId is availabel or not. Instead after submitting the whole form can check it just by clicking on a check availability link. For this implementation can use Ajax.request for submitting the user name and finally getting back the error list from the server. If got the error appear it else hide. > Affected files for this feature are ; > CustomerEvents.xml ----> ecommerce > profile.js ---> ecommerce > NewCustomer.ftl ---> ecommerce (for new one) > Regards > - Rishi Solanki -- 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 |