This is a migrated thread and some comments may be shown as answers.

Change RadFilter HTML Output

3 Answers 49 Views
Filter
This is a migrated thread and some comments may be shown as answers.
July
Top achievements
Rank 2
July asked on 15 Aug 2011, 02:36 PM
I need do something like Image attached (Search.jpg).

I changed ths css and obtained layout such as captura1. jpg
.RadFilter .rfField {
  display: block;
}

But then I add some express  , and I have a issue . Captura2.jpg

How I can resolve this problem?



3 Answers, 1 is accepted

Sort by
0
July
Top achievements
Rank 2
answered on 16 Aug 2011, 03:33 PM
Please!! I need help!

If I remove this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
works perfectly..
but if I add
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Doesnt work!!!

how I can do this??
0
Accepted
Veli
Telerik team
answered on 18 Aug 2011, 09:01 AM
Hello Julieta,

Removing the DOCTYPE definition from your page will have the browser render the page in quirks mode, instead of standard mode. Browsers rendering pages in quirks mode do not follow HTML standards and have unpredictable rendering. We highly recommend you do not remove the DOCTYPE. Try the following CSS instead:

.RadFilter .rfField
{
    display:block;
}
         
.RadFilter .rfDiv
{
    margin-bottom:26px;
}
         
.RadFilter > ul > li > .rfDiv
{
    margin-bottom:0;
}

With the above CSS, you can get the following layout for RadFilter:

RadFilter with fields on 2 rows


Veli
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
July
Top achievements
Rank 2
answered on 18 Aug 2011, 01:25 PM
Yes!!!!!!!!!
this css works correctly!!!!!
THANKS!

Tags
Filter
Asked by
July
Top achievements
Rank 2
Answers by
July
Top achievements
Rank 2
Veli
Telerik team
Share this question
or