Hi Michael,
- Created an application in 1.2 with a Plugin installed.
- Working fine both locally and in BIP.
- 1.2 version doesn't have Personalization feature.
- Already in BIP 1.3 Add On for Design Studio is installed.
- Now to make use of Personalization feature, upgraded client tool to 1.3 version.
- Through Client tool connected to BIP, and enabled the Personalization feature in the already developed application, by making use of the script "State.setPersonalization()" in the OnClick event of Button component. (Here migration of 1.2 to 1.3 happens).
- To check whether this Personalization is setting, I used the following check
for eg:- Onlick of Button
Test = true;
if (Test == true)
{
State.setPersonalization();
Text_1.setText("Personalization Set");
}
else
{
Text_1.setText("Personalization Not Set");
}
8. I find I am getting the "Personalization Set" message.
9. But even after that also the values are not saving for the next session.
10. But when I create an application newly in 1.3, Personalization works fine both locally and in BIP.
11. The plugin which was installed earlier, if it is used with a newly developed application (1.3) in BIP
then Personalization is not working in BIP, when it is removed from application Personalization works fine in BIP.
12. So I tried removing the Plugin from my 1.2 to 1.3 migrated application, but here I think
Personalization is setting, but it is not reflecting.
This is the issue I am facing, will you be able to give a solution for this.
Regards,
Arun Krishnan