Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
69 views
The titles of heading in Radgrid is not visible in chrome.
Refer image attached.
Pavlina
Telerik team
 answered on 18 Jan 2011
1 answer
76 views
Hello,
I'm trying to customize LinkManager.ascx and I have been able to change it jsut fine but I can't get c# code inside Page_Load to fireup inside LinkManager.ascx. I Already added  AutoEventWireup="true" but sitll nothing.
<script runat="server">
     protected void Page_Load(object sender, EventArgs e)
    {
 
       //CODE
         
    }
</script>

Any suggestions?
Thank you
Rumen
Telerik team
 answered on 18 Jan 2011
7 answers
439 views
We are having an issue with the rad editor showing $0 in google chrome.

I looked through the forums regarding this issue and i came accross this:

http://www.telerik.com/community/forums/aspnet/editor/radeditor-classic-custom-build-v7-3-5-with-fix-for-the-chrome-browser.aspx

It has a hotfix to download and such.

Is this what i need? i looked in my admin account and couldnt find anything about upgrading or updating the editor so i just need some direction on what i should do in this instance.

Thanks
Rumen
Telerik team
 answered on 18 Jan 2011
1 answer
121 views
Hi

I have a ComboBox with items. when I select a specific item, I want some controls to become disable, and when I select other items I want those controls to become enable.

what I did is this :

<

 

telerik:RadComboBox ID="cmbFormStatus" CssClass="RadComboBox_rtl" Skin="Office2007"

 

 

DropDownCssClass="RadComboBox_rtl" runat="server"

 

 

onselectedindexchanged="cmbFormStatus_SelectedIndexChanged" AutoPostBack ="true" />

 


and in the code behind, i wrote :

...
 i_Enabled = true/false

 

this.cmbDecisionType.Enabled = i_Enabled;

 

 

this.rdpDecisionStart.Enabled = i_Enabled;

 

 

this.rdpDecisionEnd.Enabled = i_Enabled;

....
it works. but, it looks weird.(attached file).



i checked, and found that what does it is the 'AutoPostBack'.
so, i tried doing it at the Client Side, with JavaSript, with no success.

what do you suggest me to do?

(Somebody told me something about Attribute in PageLoat, but I'm not familiar with it...)

p.s.
it happens only in Explorer 8

Thanks in advance
yoni 

 

Yoni
Top achievements
Rank 1
 answered on 18 Jan 2011
1 answer
104 views

Hi,
I am working on Scheduler / Resource Availability. Facing problem while editing appointment.
Description :
My scheduler contains 3 rooms "Room1,Room2,Room3", In that "Room2" contains two appointments "Schedule Lesson1" and "Schedule Lesson2", Now when I edit "Schedule Lesson1" appointment,it show me correct information such Subject,StartTime,EndTime etc. But when I try to edit "Schedule Lesson2" appointment it show Incorrect Information (same information as first "Schedule Lesson1" Appointment).

Please check attached screen shots...

Here is my code :

protected void Page_Load(object sender, EventArgs e)
    {
        DataTable tblTest = new DataTable();
        tblTest.Columns.Add("ID");
        tblTest.Columns.Add("RoomID");
        tblTest.Columns.Add("startdate");
        tblTest.Columns.Add("enddate");
        tblTest.Columns.Add("Subject");      
        DataRow drTest;
        drTest = tblTest.NewRow();
        drTest["ID"] = 2;
        drTest["RoomID"] = 2;
        drTest["startdate"] = "2011-01-11 10:00:00.000";
        drTest["enddate"] = "2011-01-11 12:00:00.000";
        drTest["Subject"] = "Scheduled Lesson1";     
        tblTest.Rows.Add(drTest);
  
        drTest = tblTest.NewRow();
        drTest["ID"] = 2;
        drTest["RoomID"] = 2;
        drTest["startdate"] = "2011-01-11 14:00:00.000";
        drTest["enddate"] = "2011-01-11 16:00:00.000";
        drTest["Subject"] = "Scheduled Lesson2";       
        tblTest.Rows.Add(drTest);
  
        drTest = tblTest.NewRow();
        drTest["ID"] = 3;
        drTest["RoomID"] = 3;
        drTest["startdate"] = "2011-01-11 12:00:00.000";
        drTest["enddate"] = "2011-01-11 14:00:00.000";
        drTest["Subject"] = "Scheduled Lesson3";      
        tblTest.Rows.Add(drTest);
  
        drTest = tblTest.NewRow();
        drTest["ID"] = 4;
        drTest["RoomID"] = 4;
        drTest["startdate"] = "2011-01-11 12:00:00.000";
        drTest["enddate"] = "2011-01-11 14:00:00.000";
        drTest["Subject"] = "Scheduled Lesson4";      
        tblTest.Rows.Add(drTest);
  
  
        DataTable RoomDataSource = new DataTable();
        RoomDataSource.Columns.Add("ID");
        RoomDataSource.Columns.Add("RoomName");   
      
        DataRow drRoom1;
        drRoom1 = RoomDataSource.NewRow();
        drRoom1["ID"] = 1;
        drRoom1["RoomName"] = "Room 1";       
        RoomDataSource.Rows.Add(drRoom1);
  
        DataRow drRoom2;
        drRoom2 = RoomDataSource.NewRow();
        drRoom2["ID"] = 2;
        drRoom2["RoomName"] = "Room 2";
        RoomDataSource.Rows.Add(drRoom2);
  
        DataRow drRoom3;
        drRoom3 = RoomDataSource.NewRow();
        drRoom3["ID"] = 3;
        drRoom3["RoomName"] = "Room 3";
        RoomDataSource.Rows.Add(drRoom3);
  
        RadScheduler2.ResourceTypes[0].DataSource = RoomDataSource;
        RadScheduler2.DataSource = tblTest;
        RadScheduler2.DataBind();
    }

Please reply as soon as possible.It's very urgent.


Thanks,
Rahul



Veronica
Telerik team
 answered on 18 Jan 2011
2 answers
89 views
please help me
charuka
Top achievements
Rank 1
 answered on 18 Jan 2011
2 answers
87 views
Hi  

I have 20 columns to display in grid , i want to make a link more so that only 5 columns will be displayed in the grid other 15 columns will be shown as popup when clicked on "more"

Can anyone help pls, its urgent?

Thanks in advance
Veli
Telerik team
 answered on 18 Jan 2011
1 answer
79 views
Hi Guys,

I am using a radgrid with two GridButton Columns and Filtering by column enabled. I tried to add an attribute "onclick" to one of the button columns in the following way in the RadGrid DataBound event
Button button = radGridItem["Create"].Controls[0] as Button;
button.Attributes["onclick"] = "form1.target = '_blank';";

I did this so that once the user clicks on the button (of the column with UniqueName= "Create"), he can be redirected to another page in another window.

Now the PROBLEM is , both the button column buttons AND the Filter buttons in the header when clicked open the page in a new window.

How do I  add the above attribute to only one Button Column?(and not to other buttons and Filter buttons)

Please help!!!!

Iana Tsolova
Telerik team
 answered on 18 Jan 2011
1 answer
43 views
Hi,

Is there any new edition of RAD Editor for silverlight in Sharepoint?
If yes, please provide the link to download it.

Thanks in advance.
Stanimir
Telerik team
 answered on 18 Jan 2011
1 answer
611 views
Hi,
I am having RadDecorator, radgrid, radtoolbar, radtabstrip on my form.

I have applied WebBlue skin everywhere.
I have some ASP:Buttons on my page, some are inside grid template as well.

But I want to achieve two things.
1. How do I change cursor to pointer when cursor is on any of the button on the form? I want to display cursor to pointer for all the buttons on my form.
2. How do I change all the fonts on my page to look similar? I mean how do I define all the fonts of my page to be same?
I tried adding
body ,form *
        {
            font-family: Wingdings 3!important;
            font-size: 10px!important;
        }

but somehow if I add form* as above, radcombobox are not getting filled up and there are some weird javascript errors are displayed on screen.

thanks in advance
Bozhidar
Telerik team
 answered on 18 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?