This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
16
Web Server - Ask For Help / Forms behave strangely in version 14.17
« on: February 09, 2024, 11:17:36 AM »
Hi Bruce
I just installed version 14.17.
But something is wrong. If I take the example "BasicBrowseAndForm (1)" - press insert in the browser - the form appears but immediately disappears again.
I experience something similar in my own apps. Here, I may be allowed to type in the first field, but when I move on to the next field, the form closes.
Am I the only one experiencing this?
Regards Niels
I just installed version 14.17.
But something is wrong. If I take the example "BasicBrowseAndForm (1)" - press insert in the browser - the form appears but immediately disappears again.
I experience something similar in my own apps. Here, I may be allowed to type in the first field, but when I move on to the next field, the form closes.
Am I the only one experiencing this?
Regards Niels
17
Web Server - Ask For Help / Email from browse menu button
« on: January 25, 2024, 03:35:30 PM »
Hi
What is the best way to send an email ( or some other Clarion code) via a browse dropdown menu
regards NielsB
What is the best way to send an email ( or some other Clarion code) via a browse dropdown menu
regards NielsB
18
Web Server - Ask For Help / Refresh the entire browse or just a row after an event in a Browse menu
« on: January 23, 2024, 06:43:09 AM »
Hi Bruce
I would appreciate a way to refresh a browse after an event in a browse menu.
What do you think?
Regards Niels
I would appreciate a way to refresh a browse after an event in a browse menu.
What do you think?
Regards Niels
19
Web Server - Ask For Help / Add class to header on popup form
« on: January 12, 2024, 01:32:40 AM »
Hi Bruce
I need to remove (hide) the "Close" button (top right) on a popup form.
The popup form is called from a button on a form.
How do I add a class to the header so that I can hide the underlying close-button.
I've tried with "Class"-->"Main Heading" but that doesn't work when the form is called as a popup.
I have added an example.
Do you have a solution?
Regards Niels
I need to remove (hide) the "Close" button (top right) on a popup form.
The popup form is called from a button on a form.
How do I add a class to the header so that I can hide the underlying close-button.
I've tried with "Class"-->"Main Heading" but that doesn't work when the form is called as a popup.
I have added an example.
Do you have a solution?
Regards Niels
20
Web Server - Ask For Help / Form - make default sort order conditional
« on: December 17, 2023, 04:09:56 AM »
Hi
Any way to make the "This Column Is Default Sort Order" conditional?
This would make a browse used in many forms but with different fields. I use it in a matrix situation.
It doesn't have the highest priority, just a nice little feature.
Regards Niels
Any way to make the "This Column Is Default Sort Order" conditional?
This would make a browse used in many forms but with different fields. I use it in a matrix situation.
It doesn't have the highest priority, just a nice little feature.
Regards Niels
21
Web Server - Ask For Help / SOLVED: Web Service Method - parallel nested tables
« on: November 29, 2023, 03:28:21 AM »
If you (me) take the time to read the documentation, it says quite precisely how to solve the challenge. It's all about using queues. I also took the time to understand the code that the template generates and it all makes a lot of sense.
Now it's working like a dream!
Sorry for wasting your time.
Regards Niels
Now it's working like a dream!
Sorry for wasting your time.
Regards Niels
Quote
Hi
I have built a view with a join in a join and it works really well. Both the result and the documentation are exactly as I would like it to be.
But how do I get another file (Orders) into the same level as (Invoices) one of the existing ones.
Two joins in a view in the same level in clarion of course don't work, so how do I add another array to my result - and so the documentation comes with it.Code: [Select]Customer --> Region --> Invoices
--> Orders
NT 14.13
Regards Niels
22
Web Server - Ask For Help / Drag and Drop Row Ordering - refresh browse
« on: August 18, 2023, 12:57:07 AM »
Hi Bruce
Really love this new feature!
In addition to the new calculated line number, I have added a local calculated line number as an integer as a reference to the individual row.
But to make it work when I have moved a row, I need to update the entire browse. Is that possible and how?
Regards Niels
Really love this new feature!
In addition to the new calculated line number, I have added a local calculated line number as an integer as a reference to the individual row.
But to make it work when I have moved a row, I need to update the entire browse. Is that possible and how?
Regards Niels
23
Web Server - Ask For Help / Wishes to menu control on a browse.
« on: August 15, 2023, 11:20:49 PM »
Hej Bruce
I know it's early in version 14 to ask for more options, but this one could just be really good.
Would it be possible to add the same options on a browse menu item as on a button on a browse like "Send to server" Client Side code and all the refresh options?
Regards Niels
I know it's early in version 14 to ask for more options, but this one could just be really good.
Would it be possible to add the same options on a browse menu item as on a button on a browse like "Send to server" Client Side code and all the refresh options?
Regards Niels
24
Web Server - Ask For Help / Service Method always contains Field Prefix NT12.46
« on: November 17, 2022, 02:09:11 AM »
Hi Bruce
I would like to remove the Field Prefixes from the Returns (XML).
Therefore, I have removed the check in "Include Field Prefixes" but it makes no difference.
Result:
I have attached a test app.
Regards Niels
I would like to remove the Field Prefixes from the Returns (XML).
Therefore, I have removed the check in "Include Field Prefixes" but it makes no difference.
Result:
Quote
<?xml version="1.0" encoding="utf-8"?>
<databaseTest_response xmlns="database">
<test>
<test:name>Ole</test:name>
<test:name>Jens</test:name>
<test:name>Hans</test:name>
</test>
<skippedrecords>0</skippedrecords>
<resultcomplete>1</resultcomplete>
</databaseTest_response>
I have attached a test app.
Regards Niels
25
Web Server - Ask For Help / Compiler error when compiling blob text field as required on a form NT12.39
« on: April 27, 2022, 10:35:50 PM »
Hi Bruce
Can you make it possible to compile a blob text field as required in the validation, on a form.
Error: Variable expected
Regards Niels
Can you make it possible to compile a blob text field as required in the validation, on a form.
Error: Variable expected
Regards Niels
26
Web Server - Ask For Help / UPDATE:Child form breaks parent form
« on: February 21, 2022, 01:46:34 AM »
Hi Bruce
I have a form with a child form.
POPUP (Test Popup):
When I refresh the child it breaks the parent, meaning that the save and cancel buttons doesn't work.
NOT POPUP (Test)
When I change a field value on the parent form "Post Update Routine" isn't called.
Example updated.
I have added an example.
Maybe this isn't the right way to do it at all?
NT 12.35
Regards Niels
I have a form with a child form.
POPUP (Test Popup):
When I refresh the child it breaks the parent, meaning that the save and cancel buttons doesn't work.
NOT POPUP (Test)
When I change a field value on the parent form "Post Update Routine" isn't called.
Example updated.
I have added an example.
Maybe this isn't the right way to do it at all?
NT 12.35
Regards Niels
27
Web Server - Ask For Help / EIP HTML Editor not validated (NT12.35)
« on: January 26, 2022, 02:16:33 AM »
Hi Bruce
I have created an EIP HTML Editor field in my browse.
But it seems that the field isn't validated after change - works fine with plain text.
Can you see if I'm doing something wrong or ?
I have attached an example.
Regards Niels
I have created an EIP HTML Editor field in my browse.
But it seems that the field isn't validated after change - works fine with plain text.
Can you see if I'm doing something wrong or ?
I have attached an example.
Regards Niels
28
Web Server - Ask For Help / Error when Browse (with Text EIP) on Form, when save
« on: December 29, 2021, 02:29:20 AM »
Hi Bruce
I have an APP with a Browse on a form. In the Browse I have an EIP Text field. When I press Save I get an error:
all.js?c=12.30-1:1454 Uncaught TypeError: Cannot read properties of undefined (reading 'updateElement')
at HTMLTextAreaElement.<anonymous> (all.js?c=12.30-1:1454)
at Function.each (all.js?c=12.30-1:4)
at k.fn.init.each (all.js?c=12.30-1:4)
at t.<computed>.<computed>.saveButton (all.js?c=12.30-1:1452)
at t.<computed>.<computed>.saveButton (all.js?c=12.30-1:10)
at HTMLButtonElement.<anonymous> (all.js?c=12.30-1:942)
at HTMLButtonElement.dispatch (all.js?c=12.30-1:4)
at HTMLButtonElement.v.handle (all.js?c=12.30-1:4)
Test app attached.
Any idea what I'm doing wrong?
Regards Niels
I have an APP with a Browse on a form. In the Browse I have an EIP Text field. When I press Save I get an error:
all.js?c=12.30-1:1454 Uncaught TypeError: Cannot read properties of undefined (reading 'updateElement')
at HTMLTextAreaElement.<anonymous> (all.js?c=12.30-1:1454)
at Function.each (all.js?c=12.30-1:4)
at k.fn.init.each (all.js?c=12.30-1:4)
at t.<computed>.<computed>.saveButton (all.js?c=12.30-1:1452)
at t.<computed>.<computed>.saveButton (all.js?c=12.30-1:10)
at HTMLButtonElement.<anonymous> (all.js?c=12.30-1:942)
at HTMLButtonElement.dispatch (all.js?c=12.30-1:4)
at HTMLButtonElement.v.handle (all.js?c=12.30-1:4)
Test app attached.
Any idea what I'm doing wrong?
Regards Niels
29
Web Server - Ask For Help / Browse - EIP - HTML Text
« on: December 28, 2021, 11:17:21 PM »
Hi
Is there an option or work around to use one of the text HTML editors in an EIP text field in a Browse?
Regards Niels
Is there an option or work around to use one of the text HTML editors in an EIP text field in a Browse?
Regards Niels
30
E-Mail - Ask For Help / Embedded images
« on: November 18, 2021, 12:41:26 AM »
Hi Bruce
I need a little help to handle embedded images in emails.
My problem is that if I download multiple emails with images (via POP) the first images in the folder are overwritten. Do you have a tip on how to avoid it?
Regards Niels
I need a little help to handle embedded images in emails.
My problem is that if I download multiple emails with images (via POP) the first images in the folder are overwritten. Do you have a tip on how to avoid it?
Regards Niels