or
| var db = new Products.ProductsDataContext(); |
| var floorthumbs = (from c in db.Floorings |
| select c); |
| RadListBox1.DataSource = skus; |
| RadListBox1.DataBind(); |
I'm having this problem for a long time and I just dont knowhow to solve it.
When I use footer aggregate SUM in radgrid, with more thanone group by expression, calculated totals are wrong.
I tried to use new controls (Q3 2009) but that didn't fixthe problem either. Actualy I had even more problems when replacing oldercontrols with new ones, because of broken styles in the entireapplication.
I'm curently using Q3 2008 controls. Is there any workingsolution for this problem?
Best regards

| function pricesSuccess_method(results, userContext, methodName) { |
| var slider = $find('<%= uxPriceRangeSlider.ClientID %>'); |
| slider.set_minimumValue(results[0]); |
| slider.set_maximumValue(results[results.length - 1]); |
| slider.set_selectionStart(results[0]); |
| slider.set_selectionEnd(results[results.length - 1]); |
| slider.set_smallChange((results[results.length - 1] - results[0]) / 25 > 1 ? (results[results.length - 1] - results[0]) / 25 : 1); |
| slider.set_largeChange((results[results.length - 1] - results[0]) / 5 > 1 ? (results[results.length - 1] - results[0]) / 5 : 1); |
| slider.Redraw(); |
| } |