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

help me

12 Answers 122 Views
Let's talk about telerik (the good and the bad)
This is a migrated thread and some comments may be shown as answers.
usha
Top achievements
Rank 1
usha asked on 22 Mar 2011, 06:45 AM
i have a project in which when select rad panel item the color changes to some dark grey
when mouse hover comes i have to change the color of remaining items to some light  in color
than the selected item color

12 Answers, 1 is accepted

Sort by
0
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
answered on 25 Mar 2011, 05:53 PM
Is this a custom skin you've made or one of the default skins?

Is it one of these skins?
0
Kate
Telerik team
answered on 28 Mar 2011, 05:42 PM
Hello Usha,

No matter which skin of the RadPanelBar you are using you can still apply different css effects. Please, take a look at the followinh help article, that explains which css class selectors you need to apply to achieve different appearance: CSS Skin File Selectors.

Best wishes,
Kate
the Telerik team
0
usha
Top achievements
Rank 1
answered on 27 Apr 2011, 12:40 PM

0
usha
Top achievements
Rank 1
answered on 28 Apr 2011, 05:42 AM
hi Kate,
can u help me...
i'm using telerik rad calendar control in my application
my requirement is like have to capture the multiple dates selected by the user and save into data base
i'm new for the coding and i want complete coding for this requirement (selectionchanged and other events)
thank u

0
Maria Ilieva
Telerik team
answered on 29 Apr 2011, 03:16 PM
Hi,

Please review the help topic below which elaborates on how to get the selected dates of RadCalendar on the server.  After that you could keep them in a data set you need:
http://www.telerik.com/help/aspnet-ajax/calendar-selection-changed.html

Regards,
Maria Ilieva
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
usha
Top achievements
Rank 1
answered on 26 Aug 2011, 09:53 AM

Hi Kate,
plz help me..
I'm using telerik tool tip control for drop down which is in one <td>

and in the other <td> i've some silverlight object images which r rotating continuously.
now my problem is i've to display the tool tip on the bottomright side of the drop down control
but the tool tip is not displaying where ever  image part is there.
tool tip is coming half part where the image is not present..
how to make the tool tip visible on the image also.
i'm attaching the screen shot so that u can understand my problem better..

Thanks in advance..
0
Accepted
Marin Bratanov
Telerik team
answered on 26 Aug 2011, 01:06 PM
Hello Usha,

Please try setting the ToolTip's Overlay property to true.


Best wishes,
Marin
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

0
usha
Top achievements
Rank 1
answered on 29 Aug 2011, 06:50 AM
Hi Marin,
 Thanks for the quick reply..
Your answer is correct and it worked
My problem is solved..Thank you very much..


Once again Thank you ..
usha
0
usha
Top achievements
Rank 1
answered on 07 Sep 2011, 08:16 AM
Hi,
Help me plz.. It's urgent..
I have a requirement to implement images in datalist
and in corner of the image i want a delete image 
i want to know which control will be better to use to implement this.
i'm also sending the screen shot plz watch it once..

Thanks in advance..
Usha
0
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
answered on 07 Sep 2011, 01:53 PM
@Usha,
  This should be easily doable via this sample

...except way easier as the item template would just be the image and a button

Cheers,
Steve
0
usha
Top achievements
Rank 1
answered on 25 Oct 2011, 01:24 PM
Hi,
plz help me..
I'm using java script function for text box character count and showing that count in a label below that text box. This script is working fine with IE but not working in Firefox. I tried in many ways..but i didn't get any solution. Please help me!!  My code follows as...

script type="text/javascript">

 

 

 

function textCounter(field, cntfield, maxlimit) {

 

 

 

if (field.value.length > maxlimit)

 

field.value = field.value.substring(0, maxlimit);

 

 

else {

 

 

 

var strChars = maxlimit - field.value.length;

 

 

 

if (document.all)

 

cntfield.innerText = strChars;

 

 

else

 

cntfield.contentText = strChars;

}

}

 

 

</

 

 

script>

and in Code behind adding like this..

 

txtStoreDescription.Attributes.Add(

 

"onkeypress", "return tbLimit();");

 

txtStoreDescription.Attributes.Add(

 

"onkeyup", "return tbCount(" + lblDescription.ClientID + ");");

 

txtStoreDescription.Attributes.Add(

 

"maxLength", "50");

 

This code is not working with Mozilla fire fox..plz solve my problem..

Thanks in Advance
Usha

0
usha
Top achievements
Rank 1
answered on 23 Dec 2011, 09:55 AM
Hi,
I am using freetextbox(FTB) html editor control in my project. Now for that I have to show character counter below the editor when the user types something in it and also I need to restrict the text in the editor upto 1000 characters.
But this thing I implemented for text boxes using SKM Character Counter control. But this control is not supporting the Free text box id as  target id.
And I tried using java script functions also. But with javascript I'm able to show the character count below when the user types in the editor but not able to restrict the text in the editor.
How to achieve this?
Plz help me!!
Thanks in advance

Usha.
Tags
Let's talk about telerik (the good and the bad)
Asked by
usha
Top achievements
Rank 1
Answers by
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
Kate
Telerik team
usha
Top achievements
Rank 1
Maria Ilieva
Telerik team
Marin Bratanov
Telerik team
Share this question
or