hi i am using an sql table for my event data with additional data tags and populating an event Bubble on hover with
Protected Sub EventBubble1_RenderEventBubble(ByVal sender As Object, ByVal e As DayPilot.Web.Ui.Events.Bubble.RenderEventBubbleEventArgs) Handles EventBubble1.RenderEventBubble
in this method i can get the e.tag("data") data and use this to populate a datatable from an ODBC datasource
the bug i have come across is i can call and populate data from a sql datasource from within the EventBubble1_RenderEventBubble method but not from a ODBC data source the results are that the bubble does not appear
IE Dim da As New Data.Odbc.OdbcDataAdapter ' this does not work database is an ODBC Datasource
But This does Dim da As New Data.SqlClient.SqlDataAdapter datasource is sql datasource