How to keep a reference of other DataTable in a DataTable?

How to keep a reference of other DataTable in a DataTable? I can reference a texture type stored in the DataTable, but I could not reference a DataTable type, because no DataTable was found in the structure defination.


Struct

UserDefinedStruct’/Game/table/LevelStageStruct.LevelStageStruct’

LevelName…String

LevelScript…?(Should be DataTable)

Image…Texture


Cvs table:

Name,LevelName,Level,Image

Level1,text1,DataTable’/Game/Script/Level1.Level1’,Texture2D’/Game/Img01.Img01’

Level2,text2,DataTable’/Game/Script/Level2.Level2’,Texture2D’/Game/Img02.Img02’


Every thing is fine,except I can’t get reference to the DataTable type “Level”.
How can I do this?

Since I can’t reference a DataTable in a DataTable,I have to do it like this:

But when it comes to a large number of tables. It is very difficult.

[Request] Data Table variable type


This maybe help。

I don’t think you can rerence data tables to create variables.

nope doesn’t. The DT Variable can not be referenced by a Data Table Row’s input.

Heloo there!
I found how to

  1. Change your datatable field type from object reference
  2. When you use this field to get another datatable use “Resolve soft Reference”

    after that just do get datatablerow.
    Enjoy.