Search found 10 matches
- Thu Nov 14, 2019 11:21 am
- Forum: Questions & Answers
- Topic: Accessing iSeries submitted jobs in WAM
- Replies: 2
- Views: 5012
Re: Accessing iSeries submitted jobs in WAM
Looks promising. Thanks!
- Wed Nov 13, 2019 11:36 am
- Forum: Questions & Answers
- Topic: Accessing iSeries submitted jobs in WAM
- Replies: 2
- Views: 5012
Accessing iSeries submitted jobs in WAM
I need to display a list of submitted jobs from the iSeries to a WAM component. Anyone know how to access and retrieve the list using RDML/RDMLX commands?
- Fri Aug 02, 2019 4:57 pm
- Forum: Questions & Answers
- Topic: Highlighting material design label from browser
- Replies: 1
- Views: 4393
Highlighting material design label from browser
Hi,
Is there a way to allow highlighting of PRIM_MD.label and texts inside a material design list when rendered in the browser?
In the old controls, PRIM_LABL have a property called selectable and this enables the highlighting of texts from browser. I wonder if material design controls have this ...
Is there a way to allow highlighting of PRIM_MD.label and texts inside a material design list when rendered in the browser?
In the old controls, PRIM_LABL have a property called selectable and this enables the highlighting of texts from browser. I wonder if material design controls have this ...
- Wed Dec 19, 2018 4:14 pm
- Forum: Questions & Answers
- Topic: Dropdown prompt position issue
- Replies: 0
- Views: 22039
Dropdown prompt position issue
I have material design dropdown inside a panel with fixed position. The dropdown prompt position works fine if the scroll is at the top of the page. However, if I scroll down and open the dropdown, the prompt seems to stay in the same position when the scroll is at the top.
Prompt position is just ...
Prompt position is just ...
- Wed Sep 12, 2018 12:01 pm
- Forum: Questions & Answers
- Topic: Carousel Left Right Control
- Replies: 0
- Views: 13603
Carousel Left Right Control
Is there a way to handle the event of the left and right (navigation) controls of a carousel component?
- Wed Sep 12, 2018 10:39 am
- Forum: Questions & Answers
- Topic: Carousel Last Item
- Replies: 0
- Views: 13662
Carousel Last Item
Is there a way to check if the currently displayed set of items in a carousel are the last set of items?
- Wed Aug 29, 2018 11:49 am
- Forum: Questions & Answers
- Topic: How to add column in layout dynamically
- Replies: 1
- Views: 3141
Re: How to add column in layout dynamically
Solved.
I was creating the new instance of a column incorrectly.
Below is the correct code.
* create a new instance of the named column
Set_Ref Com(#uCols<#W_LCOLNAM>) To(*CREATE_AS #PRIM_TBLO.Column)
#uCols<#W_LCOLNAM> <= *New #PRIM_TBLO.Column
I was creating the new instance of a column incorrectly.
Below is the correct code.
* create a new instance of the named column
Set_Ref Com(#uCols<#W_LCOLNAM>) To(*CREATE_AS #PRIM_TBLO.Column)
#uCols<#W_LCOLNAM> <= *New #PRIM_TBLO.Column
- Wed Aug 29, 2018 10:01 am
- Forum: Questions & Answers
- Topic: How to add column in layout dynamically
- Replies: 1
- Views: 3141
How to add column in layout dynamically
Using a keyed collection of #PRIM_TBLO.Column, how do I add column in layout dynamically?
Currently, I am using the code below
* definition of collection of columns
Define_Com Class(#PRIM_KCOL<#PRIM_TBLO.Column #STD_DESCL>) Name(#uCols) Desc('Collection of columns') Style(Collection)
* create ...
Currently, I am using the code below
* definition of collection of columns
Define_Com Class(#PRIM_KCOL<#PRIM_TBLO.Column #STD_DESCL>) Name(#uCols) Desc('Collection of columns') Style(Collection)
* create ...
- Fri Aug 24, 2018 10:04 am
- Forum: Questions & Answers
- Topic: HTML Container Height
- Replies: 2
- Views: 6204
Re: HTML Container Height
Hi,
This works well. Thanks!
This works well. Thanks!
- Wed Aug 22, 2018 9:38 am
- Forum: Questions & Answers
- Topic: HTML Container Height
- Replies: 2
- Views: 6204
HTML Container Height
Is there a way to dynamically adjust Html Container's height based on its content?