Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
Multiple lines of columns within a single row
Hi,
On the product page of the SRP Edit Table (https://products.srpcs.com/srp-edittable-control/) you show a screenshot of an edit table whose columns span 3 lines. How do you specify that a column should appear on the second line, for example?
I looked through the documentation but couldn't find anything.
On the product page of the SRP Edit Table (https://products.srpcs.com/srp-edittable-control/) you show a screenshot of an edit table whose columns span 3 lines. How do you specify that a column should appear on the second line, for example?
I looked through the documentation but couldn't find anything.
Comments
Good subject for a tutorial!
Once I do this merging for the columns, will I also have to merge the data rows? Or will the table know how to handle the dimensions of the data rows based off the dimensions of the columns?
But anyway, I will tell you what I am trying to do, maybe there is an easier way:
I have a bunch of programs that behave in a generic way. Each validates a particular CSV file and if valid uploads the CSV file into our system. For each error in the CSV file, I display the error. I want to group all of the errors associated with a single row in the CSV file. I also want to have a checkbox associated with each group, to allow the user to remove (by checking the box) the row form their file, thus allowing them to proceed with the upload without the invalid rows.
I can actually fit everything in one row, i don't need multiple rows per record (though it would look better). I will try this way.
Thanks
ok, that's good. That changes my mind. I might try it then.
thanks
But my code isn't working. What is wrong with the code?
Set_Property(table, "OLE.Dimension", "2":@fm:1) Set_Property(table, "OLE.HeaderMerge[3; 2]", 2:@fm:1) Set_Property(table, "OLE.RowsToRecords", 2) Set_Property(table, "OLE.TitleList", "One":@vm:"Two":@vm:"three")
i also want the third field to be a multi line field. Is there anyway for me to only have to set that once and the table will know that every cell which is the third field should be multilined?
Anyway, I have thought of yet another way to do this using the report table, fingers crossed that I don't run into another problem.