- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How can the following JSL be modified to adjust the width of the text edit box to 500 pixels?
Hello!
ex = New Window( "",
<<modal,
Panel Box( "", H List Box( teb = Text Edit Box() ) ),
Panel Box( "", H List Box( Button Box( "OK", ng = teb << get text ) ) )
);
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: How can the following JSL be modified to adjust the width of the text edit box to 500 pixels?
Created:
Apr 21, 2023 02:18 PM
| Last Modified: Apr 21, 2023 11:19 AM
(911 views)
| Posted in reply to message from lala 04-21-2023
Looks like a simple error: the Text Edit Box isn't assigned to the variable teb. Try this:
Names Default to Here( 1 );ex = New Window( "",<< modal, Border Box( "", teb = Text Edit Box("", << Set Width( 500 ) ) ),Panel Box( "", H List Box( Button Box( "OK", ng = teb << get text ) ) ));
Ross Metusalem
JMP Academic Ambassador
JMP Academic Ambassador
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: How can the following JSL be modified to adjust the width of the text edit box to 500 pixels?
I tried to do this, but the variable ng couldn't get the input edit text content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: How can the following JSL be modified to adjust the width of the text edit box to 500 pixels?
Created:
Apr 21, 2023 02:18 PM
| Last Modified: Apr 21, 2023 11:19 AM
(912 views)
| Posted in reply to message from lala 04-21-2023
Looks like a simple error: the Text Edit Box isn't assigned to the variable teb. Try this:
Names Default to Here( 1 );ex = New Window( "",<< modal, Border Box( "", teb = Text Edit Box("", << Set Width( 500 ) ) ),Panel Box( "", H List Box( Button Box( "OK", ng = teb << get text ) ) ));
Ross Metusalem
JMP Academic Ambassador
JMP Academic Ambassador