cancel
Showing results for 
Search instead for 
Did you mean: 

Table within the pop up disables row selection

Former Member
0 Kudos

Hi All,

I am facing a very peculiar problem. I have a main view, with a button which displays a pop up window. The view within the pop up window has a table and few buttons. All works fine when the main view is displayed.

I have embedded this main view in another view which is called through the UWL in portal. When the pop up is invoked by clicking the same button in main view, the table in pop up window is disabled, the row selection doesn't work. Rest of the UI elements in the pop up window work as they should. They get disbaled, enabled, visible, invisible based on logic and their context binding.

There is no binding of the table for enabling or disbaling the table, but still it remains disbaled, with the first row selected by default. The lead selection just doesn't change.

I wrote code in the onselect event, which gets triggered when a row is clicked,and tried  setting the lead selection, but still no success.

Any help in this regard will be great.

Runal

Accepted Solutions (0)

Answers (1)

Answers (1)

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

In Table Binding part,i.e.,Create Binding, did you selected value and not text?

Former Member
0 Kudos

Hi jayanthi,

The cell editors are Textview and i have binded with text property.

But will this disable the row selction?

Regards,

Runal

Former Member
0 Kudos

Hi Runal,

Check out the selection modes. Selection is not just depends on enabling or disabling. Selection mode should be auto or something set except none.

Regards,

Fareez

Former Member
0 Kudos

Hi Runal,

Check out the selection modes. Selection is not just depends on enabling or disabling. Selection mode should be auto or something set except none.

Regards,

Fareez

Former Member
0 Kudos

Hi Fareez,

The selection mode is set as single. But this works fine when the view is not embedded in view container. The table row selection is disabled only when the main view is embedded in view container.

I just created a new view and new window, and called that as pop up, there too it behaved in simillar fashion. I suspect it has something to do with the view embedding..!!

Regards,

Runal

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

Yes, it is just only for making fields as enabled/disabled.For selection, Is the Rowselectable property checked? Are you setting anything specifically in selectionChangeBehaviour?

Former Member
0 Kudos

Hi,

These are the settings for the table.

design-standard

enabled -  checked

rowSelectable- checked

selectionChangeBehaviour - auto

selectionMode - single

visible - visible

still clueless why this is happening!!