Extending Customercare module in Admin
Posted: Tue Feb 12, 2013 8:04 am
Hi,
I need to add one more tab in CustomerCare module in admin.. For this i've done the following things,
1. created the customerCareModule.gwt.xml in resources/admin folder.
2. entry added in gwt / mycompanyAdmin.gwt.xml like this <inherits name="com.mycompany.admin.customerCareModule" />
3. The customercare module created , and the corresponding presenter, display and view are created..
In Module i used the below code ,
setSection(
"FEEDBACK",
"feedback",
"com.mycompany.admin.client.view.customer.FeedbackView",
"feedbackPresenter",
"com.mycompany.admin.client.presenter.customer.FeedbackPresenter",
customerPermissions
);
While runnig the ant task, it doesn't throw any errors and in admin no changes are reflected..
Am i missing anything like xml configuration.. or somethis else..??
Kindly help me on this to solve this issue....
Thanks in advance!!
I need to add one more tab in CustomerCare module in admin.. For this i've done the following things,
1. created the customerCareModule.gwt.xml in resources/admin folder.
2. entry added in gwt / mycompanyAdmin.gwt.xml like this <inherits name="com.mycompany.admin.customerCareModule" />
3. The customercare module created , and the corresponding presenter, display and view are created..
In Module i used the below code ,
setSection(
"FEEDBACK",
"feedback",
"com.mycompany.admin.client.view.customer.FeedbackView",
"feedbackPresenter",
"com.mycompany.admin.client.presenter.customer.FeedbackPresenter",
customerPermissions
);
While runnig the ant task, it doesn't throw any errors and in admin no changes are reflected..
Am i missing anything like xml configuration.. or somethis else..??
Kindly help me on this to solve this issue....
Thanks in advance!!