Hello,
I am using the RadTooltip in a RadTreeNode template to display data associated with each node in the tooltip. The length of the text will be different for each node. I am hoping to get the following behavior:
Can you let me know if this is possible?
Thanks, Craig
protected void Page_Load(object sender, EventArgs e)
{
double[][] criterios = new double[][]
{
new double[] {1,5,0.33333333,1},
new double[] {0,1,0.2,0.5},
new double[] {0,0,1,3},
new double[] {0,0,0,1}
};
DataTable matrix = new DataTable();
matrix = GetDataTableFromArray(criterios);
RadGrid1.DataSource = matrix;
}
public static DataTable GetDataTableFromArray(object[] array)
{
DataTable dataTable = new DataTable();
dataTable.LoadDataRow(array, true);
return dataTable;
}
Are there any other ways that people out there could think of to get this to work... Biggest problem is that the ItemCreated event gets fired before PageLoad on Postback. I think I will proceed with the Cookie method as it allows for performance but there would be the problem that people with Cookies disabled would not be able to use the system... well they could use it... but the Viewstate not storing entered userdata on dynamically created usercontrols on first appearance would still rear it's ugly head...
Any smart people out there with any other ideas???