Hi,
//create relations for hierarchy ds.Relations.Add(ds.Tables["level1"].Columns ["LVL1"], ds.Tables["level2"].Columns ["LVL1"]);UltraWebGrid1.Rows.Clear();UltraWebGrid1.Columns.Clear ();UltraWebGrid1.DisplayLayout.ViewType = ViewType.Hierarchical;UltraWebGrid1.DataSource = ds;UltraWebGrid1.DataMember = "level1";UltraWebGrid1.DataBind();
I resolved problem #1. Issue is that the logic contained this statement:
UltraWebGrid1.DisplayLayout.IndentationDefault = 0;
I removed this and the plus/minus icons show up!