Hi
I am using some 3rd party datagrids from infrgistics and their forum is rubbish (unlike this) so wanted to ask a quickie regarding typedlists (I am using the latest version 2 of llblgen)
I need on their grid to setDataBinding to hide columns!! and I am using this piece of code:
ObjectTypedList list = ObjectManager.Search(new ObjectSearchParams());
ultraGridObjects.SetDataBinding(list.DataSet, list.TableName);
However the Dataset is null, however I know their are 2 rows in the list. Is the DataMember of the typedlist the TableName property? I resume that this call is the same as the default gridview that is shipped with .NET 2?
I hope this makes sense and apologies if it doesn;t, hope someone could steer me in the right direction, I have used the following call without success and it throws an exception.
ultraGridObjects.SetDataBinding(list, list.TableName);
Many thanks
Richard