Hi,
I am using My account web part to edit the user settings. I need to make the user edit his information without refresh the whole page, using AJAX feature. And is there any way to change TABS text . for example : orders to : my orders
Thanks
In the Localization app add new records for these keys and add the text you want in there. In the code in the MyProfile webpart these keys are defined as localization keys.
MyAccount.MyPersonalSettings
MyAccount.MyDetails
MyAccount.MyAddresses
MyAccount.MyOrders
MyAccount.MyCredit
MyAccount.ChangePassword
MyAccount.MyNotifications
MyAccount.MyMessages
MyAccount.MyFriends
MyAccount.MyAllSubscriptions
myaccount.mymemberships
MyAccount.MyCategories
Thanks Brednden,
What about use Ajax updates , after click an update button , I need to just update that area, and not to refresh whole page.
I tried that using Ajax settings for My Account web part. But it seems not that easy to do.
On the my account webpart, at the bottom, click the use update panel. The webpart will then be wrapped in an update panel and not do a full page postback.
I tried that , But no chance, the button is renders the whole page again , not partial render. What is i missed?
Thanks for your help
Ok after looking at the webpart more, the tabs are actual links which means navigation will take place vs. a postback so an update panel won't do anything since it's navigating to a different URL. You'd have to update the webpart's code to accommodate that so it doesn't redirect and only posts back.
It seems that way, Thanks.
Please, sign in to be able to submit a new answer.