- Posts: 39
- Thank you received: 0
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Development and suggestions about third part tool integration.
Cordova, Xamarin, Basic4Android topics are listed here.
Cordova, Xamarin, Basic4Android topics are listed here.
Cordova and forms editing
- Marat Faskhiev
- Topic Author
- Offline
- Junior Member
-
Less
More
9 years 1 week ago #11978
by Marat Faskhiev
Replied by Marat Faskhiev on topic Cordova and forms editing
- Marat Faskhiev
- Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 39
- Thank you received: 0
9 years 1 week ago #11979
by Marat Faskhiev
Replied by Marat Faskhiev on topic Cordova and forms editing
Also I found another issue at iOS version:
1. I edited form field at pdf file
2. Closed keyboard
3. Clicked closed
4. There was no popup as at Android version which suggests to save pdf file. And getFileState method returns "File has not been modified".
Should I do something additional to save pdf file?
1. I edited form field at pdf file
2. Closed keyboard
3. Clicked closed
4. There was no popup as at Android version which suggests to save pdf file. And getFileState method returns "File has not been modified".
Should I do something additional to save pdf file?
9 years 1 week ago - 9 years 1 week ago #11980
by emanuele
Replied by emanuele on topic Cordova and forms editing
Hi,
we fixed the issue on pdf close while editing forms.
Also added the alert on close action if the pdf has been modified.
Now you can download the updated version
Thank you for your feedback
we fixed the issue on pdf close while editing forms.
Also added the alert on close action if the pdf has been modified.
Now you can download the updated version
Thank you for your feedback
Last edit: 9 years 1 week ago by emanuele.
- Marat Faskhiev
- Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 39
- Thank you received: 0
9 years 1 week ago #11984
by Marat Faskhiev
Replied by Marat Faskhiev on topic Cordova and forms editing
Thank you. It works fine now.
- Marat Faskhiev
- Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 39
- Thank you received: 0
IP: 192.168.0.71
9 years 2 days ago #12038
by Marat Faskhiev
Replied by Marat Faskhiev on topic Cordova and forms editing
Hi,
I noticed an issue in this code:
And this:
In the following case b_outline is true:
1. Open form
2. Click on free space of the form. Toolbar with Close button will be closed
3. Click again on free space of the form. Toolbar with Close button will be opened
4. At this moment b_outline is true
5. Click Close button
6. viewWillDisappear will be invoked. But because b_outline is true willCloseReader delegate will be not invoked
7. The same for viewDidDisappear. Because b_outline is true didCloseReader delegate will be not invoked
Could you check this issue? We are using didCloseReader to notifiy js side that pdf editor was closed.
I noticed an issue in this code:
Code:
if(!b_outline)
{
[self.navigationController.navigationBar setTranslucent:defaultTranslucent];
if (_delegate) {
[_delegate willCloseReader];
}
//[m_ThumbView vClose] should before [m_view vClose]
[m_Thumbview vClose];
[m_Gridview vClose];
[m_view vClose];
m_slider = nil;
}
And this:
Code:
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
if(!b_outline)
{
if (_delegate) {
[_delegate didCloseReader];
}
}
}
In the following case b_outline is true:
1. Open form
2. Click on free space of the form. Toolbar with Close button will be closed
3. Click again on free space of the form. Toolbar with Close button will be opened
4. At this moment b_outline is true
5. Click Close button
6. viewWillDisappear will be invoked. But because b_outline is true willCloseReader delegate will be not invoked
7. The same for viewDidDisappear. Because b_outline is true didCloseReader delegate will be not invoked
Could you check this issue? We are using didCloseReader to notifiy js side that pdf editor was closed.
IP: 192.168.0.71
8 years 11 months ago #12059
by emanuele
Replied by emanuele on topic Cordova and forms editing
Hi,
we fixed this issue, now you can download the updated Cordova project.
thank you for your feedback
we fixed this issue, now you can download the updated Cordova project.
thank you for your feedback
Time to create page: 0.395 seconds