I need to get all fields from my list template? How can i do this?
var web = site.OpenWeb();
var template = web.ListTemplates["SomeTemplate"];
template ... ???? -There is no method to get fields.
|
I need to get all fields from my list template? How can i do this?
| |||
|
feedback
|
|
There is no built-in method to get all fields from a list template. The only way you can get the fields is by parsing the Schema XML of the list and getting all Easier is to create a list instance, which you can query later on with the following examples. To get all fields from a list you can use the
You can also get all fields from a list item "in reverse" | |||||||||||||
feedback
|