A Unity ID allows you to buy and/or subscribe to Unity products and services, shop in the Asset Store and participate in the Unity community.
There is some magic in coroutines that takes care of the table update stuff. If you disable/reenable a table you need to at least call...
I'd love to give you a different answer, but I'd say it's probably going to be problematic. It's definitely not something that's supported in the...
Regarding #1, yeah we support multi-select on entire rows or cells/rows. Its selectable from within the widget editor when you drop a table in...
Is this anything you could PM me a test project that reproduces the issue? I've not seen this behaviour.
Initialize your columns with the optional minWidth argument: this.table.ResetTable(); this.table.AddTextColumn("Column1",...
If you initialize your table with: this.table.Initialize(this.OnTableSelected); Then the OnTableSelected handler could be something like...
Are you using TMPRO text or Unity? I'd recommend using TMPRO and make sure you aren't manipulating the font properties anywhere else in your...
Very sorry for the delayed response here... I tried to duplicate this behavior in the "Simple" sample screen included with the project. It seems...
Very sorry for the delayed response here... the sorting is based 100% on the order in which you populate the Datum 'list' object. The rows will...
Interesting question. If you look at the declaration of our TableDatumList (aka table.data) and our DatumElementList (aka the .elements attr on...
Check out the Samples/Simple scene and Simple.cs code. public void HandleClearSelectionClick() { this.table.lastSelectedDatum = null; }
Unfortunately, no.
Ah sorry about the public/private issue. I didn't even notice that when I sent you those directions. I've updated the code in our main repo so...
Use: table.DoVertScrollUntilVisible(datum) Where datum is a reference to the row you want to scroll to.
Oh man... for some reason I didn't receive a notification email from the forum engine about your last message there. I apologize for this very...
You populate data in TablePro somewhat similar to populating a C# List. Getting the data from SQL or any other data source into C# is on you, but...
"roll up and PM" means package a unity project (export via unity or just zip it up) and 'private message' me a link to dropbox/google drive/etc...
Man... I can't reproduce this. I pulled the same version of Unity as well. Can you give me steps to reproduce the issue in any of the included...
I have no idea where you are getting a red box from. ;-) Hundreds of people using TablePro and this is the first I've heard of that one but......
The error is the UID collision. You are populating the UID with Time.realtimeSinceStartup.ToString(); which is only resolving to four decimal...