Search found 18 matches
- Fri Nov 13, 2015 9:42 pm
- Forum: Questions & Answers - RPG and RDMLX
- Topic: Clicked Column Name of an offline form
- Replies: 4
- Views: 3726
Re: Clicked Column Name of an offline form
That worked, thanks for your assistance.
- Thu Nov 12, 2015 10:37 pm
- Forum: Questions & Answers - RPG and RDMLX
- Topic: Clicked Column Name of an offline form
- Replies: 4
- Views: 3726
Re: Clicked Column Name of an offline form
I need to be able to access the information in a .js file that executes as part of the function, the information given only shows how to access the information in RPG or RDML.
- Wed Nov 11, 2015 2:34 am
- Forum: Questions & Answers - RPG and RDMLX
- Topic: Clicked Column Name of an offline form
- Replies: 4
- Views: 3726
Clicked Column Name of an offline form
Is there a way to determine the column name that was clicked in the js file the executes as part of an offline form ?
- Sat Oct 31, 2015 5:19 am
- Forum: Questions & Answers - RPG and RDMLX
- Topic: Shared States Replacement
- Replies: 1
- Views: 2127
Shared States Replacement
If I replace all of the Get_SharedState and Set_SharedState commands in my application with selections and assignments to a server based table will the existing shared states still be sent back and forth between the client and server and if so is there a way to stop this from happening ?
- Wed Jun 24, 2015 7:57 pm
- Forum: Questions & Answers - RPG and RDMLX
- Topic: New line in text property
- Replies: 2
- Views: 2847
Re: New line in text property
If you place the code below between the text it will add the new line
+ #COM_OWNER.LineFeed +
+ #COM_OWNER.LineFeed +
- Mon Jun 16, 2014 7:53 pm
- Forum: Questions & Answers - RPG and RDMLX
- Topic: Programatically executing an event
- Replies: 5
- Views: 4184
Re: Programatically executing an event
In RDMLX the Set_Op_ExecuteAction command (shown below) is associated with an event. What event should be used if I want to execute the UPLOAD.ONCLICK event ?
#COM_OWNER.Set_OP_ExecuteAction Event(UPLOAD.ONCLICK) Program(LREX0303) Action(UPLOADDATA) Senddbdata(TRUE) Submitprops_Normal(ALL ...
#COM_OWNER.Set_OP_ExecuteAction Event(UPLOAD.ONCLICK) Program(LREX0303) Action(UPLOADDATA) Senddbdata(TRUE) Submitprops_Normal(ALL ...
- Fri Jun 13, 2014 7:23 pm
- Forum: Questions & Answers - RPG and RDMLX
- Topic: Programatically executing an event
- Replies: 5
- Views: 4184
Re: Programatically executing an event
Doesn't that require the UPLOAD.ONCLICK event to execute for the action to be performed ? What I want to do is execute the UPLOAD.CLICK event with a user having to tap the UPLOAD button.
- Fri Jun 13, 2014 1:38 am
- Forum: Questions & Answers - RPG and RDMLX
- Topic: Programatically executing an event
- Replies: 5
- Views: 4184
Programatically executing an event
Is it possible programatically execute an event or request ? For example run a command that would execute event BUTTON.OnClick without the user having to click the button ?
- Thu Jun 05, 2014 8:25 pm
- Forum: Tips & Techniques - RPG and RDMLX
- Topic: (RDMLX) Inspection of SQLLite bound text boxes
- Replies: 5
- Views: 141531
Re: (RDMLX) Inspection of SQLLite bound text boxes
It could be an online or local form but when local and a textbox is bound to the local database I want to know how to inspect the value entered into the textbox.
- Wed Jun 04, 2014 8:29 pm
- Forum: Tips & Techniques - RPG and RDMLX
- Topic: (RDMLX) Inspection of SQLLite bound text boxes
- Replies: 5
- Views: 141531
Re: (RDMLX) Inspection of SQLLite bound text boxes
Not at submission time. I would like to inspect the value of the text box when it's changed and make sure it is valid. Something else I would like to do is use the value from this text box to perform a calculation and fill in other parts of the form.