cancel
Showing results for 
Search instead for 
Did you mean: 

How to display long text of info in webdynpro view

Former Member
0 Kudos

Hi all

I want to retrive a text of 500 characters in TextEdit UI element from R3,but the attribute through which we have bind this UI element is mapped to model attribute which is coming in the form of table i.e. first row of that table contains first 132 characters and the second row contains next 132 characters. Now the problem is how to retrieve the whole text and display in that UI element.

Same is the problem for submitting this 500 text.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can use String concatenation for this:

String textToShow = <get first 132 characters from the model node>;

textToShow += <get next 132 characters from the model node>

//set textToShow to the context attribute bound to the TextEdit UI element.

Regards,

Satyajit.

Answers (0)