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

RadFormDecorator skin- onmouseHover issue in wss3.0

1 Answer 76 Views
Sharepoint Integration
This is a migrated thread and some comments may be shown as answers.
shikha bansal
Top achievements
Rank 1
shikha bansal asked on 30 Sep 2009, 09:56 AM
Hi Telerik team,

We are developing an asp.net webpart that will be integrated in sharepoint site.
The webpart consists of a RadAjaxPanel that contains RadFormDecorator control, a checkboxlist control inside div, buttons, textboxes etc.
Below is the code markup.

RadAjaxPanel panel =

new RadAjaxPanel();

 

panel.ID =

"panel1";

 

 

RadFormDecorator formDeco = new RadFormDecorator();

 

formDeco.ID =

"radFormDeco";

 

formDeco.DecoratedControls =

FormDecoratorDecoratedControls.All;

 

 

formDeco.Skin = "Vista";

 

panel.Controls.Add(formDeco);


HtmlGenericControl

 

divChkBoxList = new HtmlGenericControl("div");

 

divChkBoxList.ID =

"divChkBoxList";

 

divChkBoxList.Attributes[

"style"] = "height: 140px; width: 255px; padding-left:10px; overflow:auto; border-style:none; background-color:Window";

 

chkBoxList =

new CheckBoxList();

 

chkBoxList.ID =

"chkBoxList";

 

chkBoxList.RepeatLayout =

RepeatLayout.Flow;

 

chkBoxList.Attributes[

"style"] = "height:100px;width:200px";

 

chkBoxList.DataSource = list_endUser;

chkBoxList.DataBind();

divChkBoxList.Controls.Add(chkBoxList);

panel.Controls.Add(divChkBoxList);

Button

 

btnCancel = new Button();

 

btnCancel.Text =

"Cancel";

 

panel.Controls.Add(btnCancel);

The issues I am facing are:
1) As, I have chosen the "Vista" skin in RadFormDecorator, when I mousehover on a checkbox in the checkboxlist, the color of the checkbox should change to blue, which is not happening.
2) When I mousehover on the button control, the background color of button changes to blue but, the text on the button control displaces from its position.

Please reply asap, why are these issues happening at my end.

With Regards,
Shikha





1 Answer, 1 is accepted

Sort by
0
Martin
Telerik team
answered on 02 Oct 2009, 05:19 AM
Hi shikha bansal,

Prepare and send us a sample runnable project where the issue you are experiencing can be observed on our side. Once we have it, we will do our best to provide you with a solution. I am asking for a project because the problem may be complex - for example caused by inherited global CSS settings, quirks mode, etc.
Kind regards,
Martin Ivanov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Sharepoint Integration
Asked by
shikha bansal
Top achievements
Rank 1
Answers by
Martin
Telerik team
Share this question
or