Andreas Pfeiffer
Forum Replies Created
-
Andreas Pfeiffer
AdministratorOctober 17, 2023 at 7:01 am in reply to: Date Picker Control displaying wrong datesHello Minh,
I did a quick test in Omnis Studio 11 (35659) and it appears to be fixed.
Best,
Andreas
-
Hi Martin,
I get what you mean.
This is hard to determine as when the subtotal header is printed it cannot know how much space the records will need for this subtotal.
Therefore the only solution that I can see here is to estimate the number of space that is needed from the amount of records you are going to print in that section and then set the $pagespacing of the subtotal header to the appropriate space. This requires to have the $pagemode setting on kTestspace. So for example if you know that it will require 11 cms you can then set it to 11 etc.
I hope this helps.
Best,
Andreas
-
Martin,
There is a property on the section $pagemode. Try to set it to kFitonpage
Does that help?
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 5, 2023 at 7:52 am in reply to: Reference an object in a superclassHi Martin,
There is no difference in the instance if the code is in the inherited form or in its superclass. The instance is the same.
Maybe I understand this wrongly. What exactly do you get back when you debug the code and look at the item reference variable?
Best,
Andreas
-
Awesome! Glad to help.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 2, 2023 at 11:04 am in reply to: How do I set current field ?Hello Khanh,
You cannot use the Queue commands as those would simply try to do this on the server. But the users cursor is on the client. Instead try this command:
Do $cinst.$setcurfield(fieldRef)
You can pass in the name of the field, the reference or the id. You can also pass in a 2nd parameter if you want to make the content selected.
Hope this helps.
Best,
Andreas
-
If you want to use Omnis Studio 11 please do not replace the HTM file as described in the readme.txt file.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorSeptember 14, 2023 at 1:44 pm in reply to: ‘Millio/en’nium PANE^ ColorHallo Herr Köhler,
Ist das ein doppel Post?
Mit freundlichen Grüßen
Andreas
-
Andreas Pfeiffer
AdministratorSeptember 12, 2023 at 7:07 am in reply to: How can I write/read a file on my phone device?Awesome. Great.
Best,
Andreas
-
Hi Martin,
$cando() is an inbuilt method that proves if a certain method is available. In this specific case it checks if the $getID() of the container can be executed.
The container can be either the container form that contains the subform instance or it can be the form that opened the popup form.
So the $load will be called with an argument that is the id from the container.
I hope that makes sense.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorSeptember 11, 2023 at 7:22 pm in reply to: How can I write/read a file on my phone device?Hi Khanh,
Check out Client Preferences: https://www.omnis.net/developers/resources/onlinedocs/WebDev/02jsremoteforms.html#client-preferences
Best,
Andreas
-
This reply was modified 2 years, 3 months ago by
Andreas Pfeiffer.
-
This reply was modified 2 years, 3 months ago by
Andreas Pfeiffer.
-
This reply was modified 2 years, 3 months ago by
-
Andreas Pfeiffer
AdministratorAugust 31, 2023 at 8:43 am in reply to: How can I add new datagrid object to remote form?Hi Khanh,
Again not really recommendable. However under certain circumstances it might be necessary and it is possible.
For example you can have the following code behind a button. When the button is clicked it will generate a copy of the button:
On evClick
Do $cinst.$objs.$add('newButton',$cfield) Returns lNewButtonRef
If lNewButtonRef
Do lNewButtonRef.$top.$assign(30)
Do lNewButtonRef.$left.$assign(250)
Do lNewButtonRef.$text.$assign('I am new')
End IfNote that $cfield is the reference to the field where this code is actually located. In this case it is the button you have clicked on. You can also refer to another object by using this notation:
$cinst.$objs.myOtherField
“lNewButtonRef” is a local variable of type item reference. This is a pointer to the new field and can be checked with the IF statement. It can also be used to assign other properties such as $top, $left, $text etc.
So in theory you could dynamically create your UI but then you will lose the advantage of having a graphical design tool etc. This is one of the strength of Omnis development.
So why not simply drag the desired object from the component store onto the form?
Best,
Andreas
-
This reply was modified 2 years, 3 months ago by
Andreas Pfeiffer.
-
This reply was modified 2 years, 3 months ago by
-
Andreas Pfeiffer
AdministratorOctober 8, 2023 at 6:42 pm in reply to: Reference an object in a superclassThank you Martin,
Have fun.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 6, 2023 at 1:32 pm in reply to: Reference an object in a superclassReading properties might only be possible in client methods. You may be able to read $name or $id from a server side method but some code might have changed a color on the client, so how would the server read such a property.
Therefore this can only be done from a client executed method.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 6, 2023 at 12:04 pm in reply to: Reference an object in a superclassHi Martin,
I do not see anything wrong in the reference. It points to the grid component in the instance.
However $designcols is a property that is not accessible in the instance. That is why it is called $designcols.
Best,
Andreas
-
This reply was modified 2 years, 2 months ago by
Andreas Pfeiffer.
-
This reply was modified 2 years, 2 months ago by
Andreas Pfeiffer.
-
This reply was modified 2 years, 2 months ago by