Page 1 of 1

Label view after label clear

Posted: Mon May 13, 2013 11:48 pm
by paues
I have noticed that objects, after their labels have been clear, show in label view, rather than spreadsheet view, when they are double-clicked.

Example: After the code below has been executed, the series tmp is shown in spreadsheet view when double-clicked.

Code: Select all

close @all pagecreate q 1990 2010 series tmp=0
However, once the code is expanded with a label clear, tmp is shown in label view when double-clicked.

Code: Select all

close @all pagecreate q 1990 2010 series tmp=0 tmp.label(c)
Is this behavior intentional or is it a bug? In case it is intentional, is there some way to "programmatically" reset the view to spreadsheet? (Preferably without having to open the object.)

Re: Label view after label clear

Posted: Tue May 14, 2013 7:59 am
by EViews Gareth
tmp.sheet

Re: Label view after label clear

Posted: Sun May 26, 2013 1:10 pm
by paues
Alright. That, however, opens the series in sheet view. There is no way to reset the view without also showing that view?

Re: Label view after label clear

Posted: Sun May 26, 2013 3:42 pm
by EViews Gareth
Try:

Code: Select all

Do tmp.sheet

Re: Label view after label clear

Posted: Mon May 27, 2013 12:23 am
by paues
While that does indeed not open the series, it also does not reset the view to sheet. A little bit of both solutions would be my preferred choice :-) Was this last behavior a bug? Should

Code: Select all

do tmp.sheet
reset the view to sheet without opening the series?

Re: Label view after label clear

Posted: Tue May 28, 2013 8:22 am
by EViews Gareth
Possibly, we'll investigate.