21
Web Server - Ask For Help / Re: Need to Trap CLOSE of MEMFORM
« Last post by osquiabro on October 10, 2025, 12:06:23 PM »create your own button for close.
22
Web Server - Ask For Help / Need to Trap CLOSE of MEMFORM
« Last post by rjolda on October 10, 2025, 04:01:36 AM »Hi
C11
NT 14.31
I have a MEMFORM. Generate form tag is Checked ON. The button which calls this form sets the action to CHANGE.
On the form, I turn on a light over the selected BIN.
I have a Button which the user presses to confirm that they have placed an item in the lit up bin. This turns OFF the bin light.
However, If the user decides to NOT do the operation - and press the CLOSE button, I need to trap that and turn off that bin light.
SO far, I have not been able to trap any events or stages in the web form.
Do I need to trap the ajax for the CLOSE button and use that to check the bin light status?
If so, how and where would I do that?
Other suggestions?
Thanks,
Ron
C11
NT 14.31
I have a MEMFORM. Generate form tag is Checked ON. The button which calls this form sets the action to CHANGE.
On the form, I turn on a light over the selected BIN.
I have a Button which the user presses to confirm that they have placed an item in the lit up bin. This turns OFF the bin light.
However, If the user decides to NOT do the operation - and press the CLOSE button, I need to trap that and turn off that bin light.
SO far, I have not been able to trap any events or stages in the web form.
Do I need to trap the ajax for the CLOSE button and use that to check the bin light status?
If so, how and where would I do that?
Other suggestions?
Thanks,
Ron
23
Web Server - Ask For Help / Printing Picture on PDF Report very SLOW a- any way to speed up the printing?
« Last post by rjolda on October 09, 2025, 07:07:59 AM »Hi,
Clarion C11
NT 14.36
I have a report which prints to PDF using Net Talk Extension to report procedure with SV PDF Generator.
When I do not include a picture on the report it is blazing fast.
When I DO include a picture on the report it bogs down and takes about 4 seconds.... but it does print correctly.
Picture is 3.4 Mb ( from phone camera). It is full color - however, I don't need to print color as most places will probably print b/w.
So any way to speed up the printing with the photo?
Should I use a different PDF generator??
I did some digging and PDF can be printed as an image and a few other things. However, I don't see any settings for PDF print.
Any insight or suggestions appreciated.
Thanks,
Ron
Clarion C11
NT 14.36
I have a report which prints to PDF using Net Talk Extension to report procedure with SV PDF Generator.
When I do not include a picture on the report it is blazing fast.
When I DO include a picture on the report it bogs down and takes about 4 seconds.... but it does print correctly.
Picture is 3.4 Mb ( from phone camera). It is full color - however, I don't need to print color as most places will probably print b/w.
So any way to speed up the printing with the photo?
Should I use a different PDF generator??
I did some digging and PDF can be printed as an image and a few other things. However, I don't see any settings for PDF print.
Any insight or suggestions appreciated.
Thanks,
Ron
24
Web Server - Ask For Help / Re: Uploading a picture file from mobile device
« Last post by rjolda on October 05, 2025, 03:32:12 AM »HI,
Used the FileUpload field and managed to get it correct and working.
Ron
Used the FileUpload field and managed to get it correct and working.
Ron
25
Web Server - Ask For Help / Uploading a picture file from mobile device
« Last post by rjolda on October 04, 2025, 05:03:34 PM »Hi,
NT 14.31 and C11.0
I would like to give my customers the ability to take a photo on their mobile device ( not using webcam but using the mobile device camera which saves the picture to their device). I would then like to let them be able to select that picture file and upload it to the server. I apparently would need a Form. Will this work on a mobile device?
Any suggestions or help?
Thanks,
Ron
NT 14.31 and C11.0
I would like to give my customers the ability to take a photo on their mobile device ( not using webcam but using the mobile device camera which saves the picture to their device). I would then like to let them be able to select that picture file and upload it to the server. I apparently would need a Form. Will this work on a mobile device?
Any suggestions or help?
Thanks,
Ron
26
Web Server - Ask For Help / Re: Checkboxes weird out on mobile device
« Last post by rjolda on October 02, 2025, 03:24:48 PM »Hi
I kept digging as the checkboxes and radio options kept acting strange. Finnally got to the bottom of this. I found that I was sending a New Value to server on the CLient-Side. I ticked OFF all buttons for wWhen Field Selected in Browser. AND, I clicked OFF "Send new value to server". Now it is finally BEHAVING AS IT SHOULD!.
Ron
I kept digging as the checkboxes and radio options kept acting strange. Finnally got to the bottom of this. I found that I was sending a New Value to server on the CLient-Side. I ticked OFF all buttons for wWhen Field Selected in Browser. AND, I clicked OFF "Send new value to server". Now it is finally BEHAVING AS IT SHOULD!.
Ron
27
Web Server - Ask For Help / Re: Checkboxes weird out on mobile device
« Last post by rjolda on September 29, 2025, 02:21:22 PM »I found that opening the form as a POPUP made it act weird.
I unchecked the POPUP mode and it settled right down and acted correctly.
Interesting but that is what I found.
Ron
I unchecked the POPUP mode and it settled right down and acted correctly.
Interesting but that is what I found.
Ron
28
Web Server - Ask For Help / Re: Checkboxes weird out on mobile device
« Last post by rjolda on September 26, 2025, 04:02:54 AM »HI ,
I have 10 line items that the user can select Yes/NO for each item. I changed the check boxes to Radio buttons YES and NO. I set FlexBox layout for the form with Floating Prompt:
On small screens the buttons are centered and each button Yes and No on their own line. I wanted them to be on the SAME line (horizontal spread) just like on large screens.
NT script:
@media screen and (max-width: 640px) {
.nt-radio-div-buttons-hor {
flex-direction: column;
}
}
It apparently does this to make sure that all Radio buttons will show.
So, what I did is for MY form container - inside my custom.css:
@media screen and (max-width: 640px) {
.nt-radio-div-buttons-hor {
flex-direction: row;
}
}
I override the normal small screen behavior and get the buttons on the same line - side by side.
Took a little searching and experimenting but now it works!
Ron
I have 10 line items that the user can select Yes/NO for each item. I changed the check boxes to Radio buttons YES and NO. I set FlexBox layout for the form with Floating Prompt:
On small screens the buttons are centered and each button Yes and No on their own line. I wanted them to be on the SAME line (horizontal spread) just like on large screens.
NT script:
@media screen and (max-width: 640px) {
.nt-radio-div-buttons-hor {
flex-direction: column;
}
}
It apparently does this to make sure that all Radio buttons will show.
So, what I did is for MY form container - inside my custom.css:
@media screen and (max-width: 640px) {
.nt-radio-div-buttons-hor {
flex-direction: row;
}
}
I override the normal small screen behavior and get the buttons on the same line - side by side.
Took a little searching and experimenting but now it works!
Ron
29
Web Server - Ask For Help / Re: Checkboxes weird out on mobile device
« Last post by rjolda on September 25, 2025, 03:18:49 PM »HI Alberto,
Thanks for the input. It may be css but I solved it by making the fields RADIO BUTTONs instead of checkboxes. The checkboxes were nice but I didn't want the customers to complain that the app was locking them into services that they didn't want by keping them checked "yes". The YES and NO buttons are not as slick but are clearer.
Thanks,
ROn
Thanks for the input. It may be css but I solved it by making the fields RADIO BUTTONs instead of checkboxes. The checkboxes were nice but I didn't want the customers to complain that the app was locking them into services that they didn't want by keping them checked "yes". The YES and NO buttons are not as slick but are clearer.
Thanks,
ROn
30
Web Server - Ask For Help / Re: Checkboxes weird out on mobile device
« Last post by Alberto on September 25, 2025, 11:10:11 AM »Hi Ron, I think _touch_ has nothing to do with your issue
I was at the webinar today and I think you you should have show Bruce that your issue is only when you use a mobile browser size and not when you use the browser at desktop size, I think may be it has somthing to do with css.
Hope this helps
I was at the webinar today and I think you you should have show Bruce that your issue is only when you use a mobile browser size and not when you use the browser at desktop size, I think may be it has somthing to do with css.
Hope this helps
Recent Posts