![Avatar](https://secure.gravatar.com/avatar/0b9a1b38f6122c8deb0f2f0da554c86a.jpg?s=64&d=identicon&r=g)
Hi,
I could bind NavigationPane to NavigationBar at code behind file.Kindly let me know how to bind for ex DataGridControl under NavigationPane at runtime in code behind file.
ex:
for (int i=1;i <=5;i++)
{
_objNavPane = new NavigationPane();
_objNavPane.Title = "B1" + i;
_objNavPane.Name = "B1" + i;
navigationBar1.Items.Add(_objNavPane);
}
This binds 5 NavigationPane to navigationBar1.
Thanks,
Doraiswamy
I could bind NavigationPane to NavigationBar at code behind file.Kindly let me know how to bind for ex DataGridControl under NavigationPane at runtime in code behind file.
ex:
for (int i=1;i <=5;i++)
{
_objNavPane = new NavigationPane();
_objNavPane.Title = "B1" + i;
_objNavPane.Name = "B1" + i;
navigationBar1.Items.Add(_objNavPane);
}
This binds 5 NavigationPane to navigationBar1.
Thanks,
Doraiswamy