LinqPad Explore in Grid editing columns - linq

We have an HTML column that I cannot seem to edit. I can edit other columns, but the text in this column is greyed out and it will not let me edit it.
Anyone know how to get around this?
I'm not sure what all is needed from the schema, but here is the info for the specific column
Column_name Type Computed Length Prec Scale Nullable TrimTrailingBlanks FixedLenNullInSource Collation
html nvarchar no -1 yes (n/a) (n/a) SQL_Latin1_General_CP1_CI_AS
As you can see the text is grayed out in the html column. I can edit any other column just fine, but this one for some reason...
More info. Some of the HTML columns are editable, but not all of them. These columns are very large, so I am guessing it is some type of size constraint.

Related

How to change column position in my report using BIRT tool

I have been using birt tool(birt-rcp-report-designer-4.6.0) to design reports(.rptdesign file). i tried xml source to change columns order in my table but it doesn't work and . [drag option though] are there any other way to change column alignment in my table in easy manner because i have to do column alignment for bunch of reports.what i mean by column alignment is switching column position. tnx in advance.

BIRT Reports column not spanding the whole row as desired

I am fairly new to BIRT reports.
In the BIRT reports designer I have added a 2nd row to my table which is binded to a data set. In this 2nd row I want 1 column from my data set to take up the whole row.
So what I did was to add the second row and merge all the columns in that row to form one column. I then added a text field with Dynamic HTML Text.
<VALUE-OF>row["ITEMDESCRIPTION"]</VALUE-OF>
The problem I have is that the data is not taking the whole row. It is being wrapped into only a small section of the row. I must be missing something. Can someone help me with this pls.
I'm attaching both the way the end report looks like and also the screenshot of the set up in the designer.
End Result
Designer (you can see all the rows merged in the second row of the table and in the properties i can see a colspan of 10 for that single column)
thanks
I've found out that the asnwer to this question is to make the field element inline style rather than block and also to check the No Wrapping check box for this field int he designer.

Hiding empty rows from Crosstab in BIRT

my problem is maybe simple but i don't get it.
i have this Crosstab :
So my idea is to hide all rows where ALL data fields ("Wert_Bezeichnung") are empty. But this is not possible easy if i get it right, because the birt renderer thinks the rows are never be empty because the left two columns ("Position" and "Bezeichnung") are never be empty. that are the row names.
Is it possible to hide the rows without touching the java code behind?
thanks in advance
As you describe the issue, it seems these empty rows are generated by the dataset itself. Double-check if property "Show empty rows" of this crosstab is unchecked.
Anyway, you should just have to add a dataset filter with an expression excluding empty rows.
Edit the main dataset of your datacube
In "Filters" tab, add a new condition
select field "Wert_Bezeichnung" and operator "Is not null"
If it doesn't work, it means these rows are loaded with something different than a null value, for example an empty string. You need to adjust the dataset filter accordingly.

jqgrid column drag-drop ,dropping only the column header not the column data

Jqgrid column drag and drop is not working properly if more than one column is having the same name.
In such case it drag and drops only the column header not the acutal coulmn data.
Help me to fix this issue.
Thanks in advance.
Column names: the name property in the colModel must be unique and can't contain any special characters like spaces or points. The values from the colNames array do can have duplicate and can contain free text.
Only the texts from colNames see the user. name properties of the colModel are used for internal purposes.

Make only certain columns editable in SlickGrid

I have a grid with multiple columns and I use the first column for a row label. I looked at the example for making the grid editable, but that appears to make the whole grid editable. Is there away to specify a certain column(s) only?
Got it! By not setting the editor property on the column object the column is non-editable.

Resources