SAPUI5 add icon after column header text - sapui5

I have a custom table with several columns. Each column has a header text (e.g. name or age). By clicking the header text, the column gets sorted. I want to add a sap icon (sort-ascending / sort-descending) after the header text as soon as it is clicked.
This should symbolize how the column is sorted. I cant use the standard sort icons. How can I do that for my custom table? How to add a style class for this case maybe?

If you are using the Grid table by default will show the sorting icon.

Related

Jasper dynamic number of rows in table

I have a table in jasper which can have dynamic number of raws and I don't know how many would be. And after table I have a textField. Is it possible to make margin of textfield from the BOTTOM of the table?
Yes, it is possible. You have to set the position of the text field as Float.
Select the text field component in the Outline view
Now, in the Properties view, select Appearance tab
Under location, chose Position type value as Float from the dropdown

SSRS Report Query

Is it possible to insert a clickable + sign in an SSRS report column header? If "yes," then, on clicking that operator, I would like to display other columns which have been hidden by default. For example, as shown in the attached screen shot, to display columns 'AP' and 'CR' when sign + of column 'U' is clicked.
Yes, you can hide a column and toggle the Visibility based on another column header.
Right Click on the column you want to hide (where the Red Dot is) and go to the Visibility property.
Click on the Hide radio button so the column is Hidden when the report is run.
Check the Display can be Toggled box and choose the name of your U column.
Resulting table:

Filemaker: Build a text from text fields in child rows

My Filemaker app wants to display a text build up from filtered child rows. It should be displayed in a scrollable text field in the layout of the parent row.
Essentially, I have a tree structure where each node contains a paragraph or two of text.
In the layout of any node, I want to display its own text plus the text of all its descendents.
But since these are text fields which can be one or more paragraphs long, the usual list view doesn't satisfy me, as it doesn't expand to show the full text, only one line. Also, it only shows the direct descendents.
I want to show the full text of all descendents, and pick two text fields from them - a headline (optional field) and the main text.
I'm new to Filemaker. Tried to google for an answer to this but could not find anything that fits. Finding the related rows is easy enough, but I can't figure out how to display them in the way I want.
You would need to display your related texts in a portal, since you want to indicate which ones you want to use. Make your portal rows tall enough for your needs and use a scroll bar on the text field if needed. You would need to gather all descendants in one table occurrence to display them in one portal as separate rows.
Alternatively, build up your list in a text field and show this field on the layout. You won't be able to mark any of the original records this way.

SSRS cannot linked text box with field

I group my table by 3 attributes, and set page break on every group, and now i want to display that three attribute outside the table. I want to place them on the top of the report, and when i type the expression and i go in run view it's display only the first value, when i go to the next page nothing change
I tried to drag field from table, from data set, and nothing working.
In expression i type
=Fields!My_Field.Value.
Also if some of that three attributes i placed in table it normally displays values, but when i try to move it somewhere it stops displaying.
The issue is that a table is associated with a dataset but a text box is not.
You can reference a field from a text box using the Dataset field ( =Sum(Fields!AMOUNT.Value, "Dataset1") ) but you need to use an aggregate function like First, Last, or SUM.
It sounds like you don't want to use an aggregate since you are grouping by these fields, though.
display the three attribute outside the table
If your trying to display the current grouping in the table at the top of each page, add a new Row in your matrix above your header row and add your group fields there.

iReport palette sort button

I'm editing a JasperReports's report in iReport designer and I have a table that I want to make sortable by every column by clicking in the column head.
I have started adding sort buttons from the palette, and I have set the sort property, but every time I generate the report, the buttons never show up and there's nothing to click. There's only the table.
What's the best way to add sorting functionality to your table?
The table itself contains the functionality of sorting,filtering and hiding the column.
So just a simple table would do.
Thanks