The class that controls the modal background of Telerik RadWindow when Modal is set to true or radalert(), radprompt() or radconfirm() are used. Currently this class uses a semi-transparent image, but this could be easily overridden by a slight modification of the above class and give the Telerik RadWindow a totally new cross-browser Web2.0 looks.
Locate the .RadWModalImage class in Window.css and replace all of its css properties with the ones below:
| CSS | |
|---|---|
| .RadWModalImage { background: black; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50); opacity: .5; -moz-opacity: .5; } | |
The background property specifies the background color, and the three that follow - the opacity rate. The filter property is a Microsoft proprietary one and is part of the DirectX Multimedia Filters and Transitions. You need to modify the opacity value in the brackets - it should be an integer from 0 to 100, 100 being totally opaque.
Hello Telerik Team,
I have a Radrotator containing Images. Images are stored in database. So radrotator is bounded to database. on clicking the images i want to access the ID of the image clicked, from database.
We tried a way that binding tooltip text for that image as the name of the image stored in datasource.
But when we go in Click event of rotator, it shows tooltip text as empty string. This is because we bind tooltip at run time. We also tried e.item.index but it returns the index of Image in the rotator but we want the ID that it has in database.
It would be great if you can provide us with some sample application that has binding rotator with database on page load & later "Onitemclick" we can access the ID or name of that image that it has in database.
Please Help us with this.
Shoqeen Ahmed.




var query = (from prod in dldc.Products
select prod);
and I set
AllowPaging
="true"
AllowCustomPaging
="true"
AllowSorting
="True"
AllowMultiColumnSorting
="True"
and assign the result to RagGird.DataSource. Actually here is a quick sample, the result is not only from Products, it needs to join other tables, a lot of tables.
Then I got the the performance issue, it took me over 20 mins to show the results. So I am going to use CustomPaing to make the it easy and I put the below segment in NeedDataSource event:
var
query = (from prod in dldc.Products
select prod);
query.Skip(page * size).Take(size);
Anyway, the grid looks fine by using such paging instead of query all records from database. However, the filtering only filter the result over current page that is not what I exactly need.
What I need is to boost the performance up with both paging and filtering. Also, how do I make RagGrid filter the products over all the products, and also with paging?
Thanks in advance.