cancel
Showing results for 
Search instead for 
Did you mean: 

Editable option not working for text area

Former Member
0 Kudos

Hi,

I want to disable edit option for text area .. i tried giving  editable="false" for text area but it not giving desired output.. how will i acheive this ?

Accepted Solutions (0)

Answers (1)

Answers (1)

saivellanki
Active Contributor
0 Kudos

Hi Krishna,

It should work: JS Bin - Collaborative JavaScript Debugging

Regards,

Sai.

Former Member
0 Kudos

hi sai,

do i need to add this class class="viewPadding"??

Former Member
0 Kudos

For textbox its displaying just text but for textarea its displaying with border.. i dont want tat border

Former Member
0 Kudos

hi sai,

chk the difference

      <TextArea value="Sample Text" editable="false" />

      <Input value="Sample Text" editable="false" />

for textarea its providing functionality like enabled property

      <TextArea value="Sample Text" enabled="false" />

      <Input value="Sample Text" enabled="false" />

Former Member
0 Kudos

i didnt use textarea from sap.m library tats y its was nt working now i hav changed tat..