or
Hi there,
I have managed to implement a custom progress area and now I need to remove some of the items that are displayed. I have already removed some of the ProgressIndicators, but need further assistance with the following. Please see http://www.roshanmehta.co.nz/images/progressbar.png
I would like to:
If someone could please give me some insight into how to accomplish this, it would be greatly appreciated.
Many thanks,
Rosco


For Each LocRec In LocRecs Dim LocationSlider As New RadSlider() Dim LocationLabel As New Literal LocationLabel.Text = "<br />" & LocRec.LocationName & "<br />" LocationSlider.ID = "LocationSlider" & CStr(LocRec.LocationID) LocationSlider.Width = 300 LocationSlider.AutoPostBack = True LocationSlider.MinimumValue = 0 LocationSlider.MaximumValue = 1000 LocationSlider.OnClientSlide = "OnClientSlide" LocationSlider.OnClientValueChanging = "OnClientValueChanging" LocationSlider.AnimationDuration = 400 AddHandler LocationSlider.ValueChanged, AddressOf LocationSlider_ValueChanged Panel1.Controls.Add(LocationLabel) Panel1.Controls.Add(LocationSlider) Next Public Sub LocationSlider_ValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) 'Write slider settings to the database 'This routine never gets executed End Sub e.Item.OwnerTableView.ParentItem.OwnerTableView.Rebind()