How to enable scroll bar in ABAP Table View? - abap

I am trying to fill a table using an internal table. Table is being filled perfectly but I can see the first something rows of the table, the rest is not seen because there is no scroll bar.
Anyone who knows to enable it ?

Yes there is a way where you can enable the scroll bar in a table by using the table controls.I would like to share a link from SAP help which demonstrates this.
Table Controls:Scrolling

Related

How to add description as part of schema metadata in BigQuery Views

I am looking a way how we can add description of fields to the views. In BQ UI there is no way to add description, its only for tables.
Is there way to do it programmatically using api's.
It is not possible for views to have field descriptions at present. There's an open feature request on our public issue tracker to implement this. You can star the issue to let us know it's something you're interested in and we'll prioritize accordingly.
indirect way to provide description for fields in view is to provide good comments in View's Query. So then, when you go to View's Details Panel (vs Schema) you will see those comments/description in Query Box (below) View Info section.
Another option so far is to reuse View's Description - this one is available in both UI and API.
Rather than that there is no support that I know of to individual filed's description for view

Scout Eclipse tree navigation without table page

I know that in Scout you can do tree hierarchy in Outline, but you get table page in right side with rows corresponding tree hierarchy.
Like : My Contacts in large example
But what I want is same tree structure on left (Outline) side, without corresponding table page on right (main) side.
Is this possible?
I found solution.
If you make AbstractExtensiblePageWithNodes you have check box Table Visible. All it's needed is set this to false.

Delete Table Header View in Interface Buidler

I have the following layout to my code
However when I hit Delete it does not delete the Table Header View. Is there a way to do this? I have been unable to find out how and there is very little on how to create a GUI from pure code without using IB.
Found out a work around in trying to make a Sidebar like in Finder I first used NSOutlineView however if you use NSSourceList it is without the table header.

How to create dynamic design dojo with data?

hi everyone i'm a newbie in dojo mobile,i want create some thing like this image but dynamic with data by code.How i can do this ? thanks for any help
Just follow the series of tutorials on Tweetview. The first one is here : http://dojotoolkit.org/documentation/tutorials/1.9/mobile/tweetview/getting_started/
The subsequent ones are linked at the bottom of that page.

Append HTML table to another table

In my Sencha Touch 2 application I have an HTML table in a view which has its ID. What I'm trying to do is do some actions, load store, create another table and append it to the existing table - without changing the view. I have no problems with making the request, creating the second table on the fly, etc, however I need to figure out how one table can be appended to another in terms of Sencha Touch? Is there an "appendTo()" function like, say, jQuery has and how can I use it? I basically need to get the table by its ID and append the new table to it. But don't know how to do that in Sencha Touch 2. Any help is greatly appreciated.
Thank you.
It depends what your view extends but if it's extending an xtype:panel then you can use getHtml() to get the existing content and then setHtml() to update it.