Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
84 views
Since i search for Reminder Window functionality i found popup Reminder Window only use in RadScheduler control. 

I want to use Reminder window independently without having Radscheduler Control. so do we have some way to access it?

In my web application, i want to pop up reminder window with respect to System time.

Thanks,
Applied Hcs
Shinu
Top achievements
Rank 2
 answered on 02 Nov 2012
4 answers
93 views




I have tried this function to implement the changes but the problem is
since it is a itemdatabound it will make lot of round trips to set this behaviour which is equal to number of the rows created i guess.
But this property has to be set at one time only. so is there a correct method or event that can make this thing happen with better performance rather than for each itemdatabound.

Also how to make the pager visible always when there are items more than 10.
now if i set it alwaysvisible = true then it displays the pager even there are no10 records.

I am looking a way to make the pager visible always only after 10. then even the page set is 100 and the rows present are 14 the pager should be still availiable so that user doesn't have to refresh the pager to see the default pager settings again.

Any help will be highly appreciated. Please....

protected
 void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)   
{   
    if (e.Item is GridPagerItem)   
    {   
        RadComboBox PageSizeCombo = (RadComboBox)e.Item.FindControl("PageSizeComboBox");   
  
        PageSizeCombo.Items.Clear();   
        PageSizeCombo.Items.Add(new RadComboBoxItem("15"));   
        PageSizeCombo.FindItemByText("15").Attributes.Add("ownerTableViewId", RadGrid1.MasterTableView.ClientID);   
        PageSizeCombo.Items.Add(new RadComboBoxItem("50"));   
        PageSizeCombo.FindItemByText("50").Attributes.Add("ownerTableViewId", RadGrid1.MasterTableView.ClientID);   
        PageSizeCombo.Items.Add(new RadComboBoxItem("150"));   
        PageSizeCombo.FindItemByText("150").Attributes.Add("ownerTableViewId", RadGrid1.MasterTableView.ClientID);   
        PageSizeCombo.Items.Add(new RadComboBoxItem("250"));   
        PageSizeCombo.FindItemByText("250").Attributes.Add("ownerTableViewId", RadGrid1.MasterTableView.ClientID);   
        PageSizeCombo.FindItemByText(e.Item.OwnerTableView.PageSize.ToString()).Selected = true
    } 
Jayesh Goyani
Top achievements
Rank 2
 answered on 02 Nov 2012
3 answers
237 views
I am looking for a way to use the ASP Update Progress component with a RadButton with an image. I'd like to have a static image and then a loading gif when clicked to give the user an indication that data processing is being done. Is there any relatively simple way to intergrate the RadButton and the Update Progress control?
Princy
Top achievements
Rank 2
 answered on 02 Nov 2012
0 answers
76 views
Remove this thread.
Arun
Top achievements
Rank 1
 asked on 02 Nov 2012
3 answers
249 views
Is there anything built into the GridHyperlinkColumn to allow the launching page to load in a RadWindow rather than a standard target? 
Princy
Top achievements
Rank 2
 answered on 02 Nov 2012
5 answers
247 views
Is there any way to ignore accent in a AutoComplete of a comboBox?

Ex: João

language: Portuguese/Brazil
Paulo Goncalves
Top achievements
Rank 2
 answered on 01 Nov 2012
4 answers
138 views
Hi All

Is there any way to clear the tooltip target controls client side?

I have a radgrid inside of a radajaxpanel, The grid has a tool tip that shows when the mouse is hovered over a particular column.
The grid items are edited and deleted via a popup radwindow,
When the user adds or delete's the window closes and calls back to rebind the grid using javascript client rebind method.

However i cannot update the tooltip!
I know i could place a radajaxmanager on the page and call back to the server side but i would rather not do this.

I have tried putting the targetcontrols.clear in the ItemDataBound event of the grid before the tooltip controls are added, but the tooltip just does not show if i do this.

Any help would be most appriciated.

Many Thanks

Cush
Sudhir
Top achievements
Rank 1
 answered on 01 Nov 2012
2 answers
113 views
How do you change the text color of a series item label.  I cannot see some of them sometimes because the color is similar tot he bar and the grid sometimes puts them over the bar.  I can see where to change the fill style like the following code but I want to change the text color itself.

        foreach (ChartSeriesItem c in chrtBar.Series[0].Items)
        {
            //I want to change the text color here.
            c.Label.Appearance.FillStyle.MainColor = System.Drawing.Color.Red;

            

        }
Jason Sheats
Top achievements
Rank 1
 answered on 01 Nov 2012
3 answers
78 views
So I have a rad tree list.  In there I am using a user control  that is getting it's data source from code behind.

protected override void OnInit(EventArgs e)
{
    //
    // CODEGEN: This call is required by the ASP.NET Web Form Designer.
    //
    InitializeComponent();
    base.OnInit(e);
    listOfMenuTypes = new SubCategory().SelectAllSubCategoriesBySiteNotDeleted(ThisSiteID).Where(i => i.CategoryID == new Category().SelectCategoryByDescriptionAndSiteIDNotDeleted("Menu Types", ThisSiteID).LookupCategoryID).ToList();
}

and then I set the combobox data source like this

protected void HomeDocumentForm_DataBound(object sender, EventArgs e)
{
    MenuSelectList.DataSource = listOfMenuTypes;
    MenuSelectList.DataTextField = "TypeDescription";
    MenuSelectList.DataValueField = "LookupTypeID";
    MenuSelectList.DataBind();
}

If I remove the ajaxification it works perfectly.  If I leave it the combo box won't drop down.

I could use some help on this.
Kevin
Top achievements
Rank 1
 answered on 01 Nov 2012
2 answers
146 views
Hi All,
             I have the following code:

<telerik:RadListBox runat="server" ID="RadListBox1" AllowReorder="true" Height="350px"
            AllowTransferOnDoubleClick="true" SelectionMode="Multiple" AllowTransfer="true" 
            TransferToID="RadListBox2" Width="300px" EnableDragAndDrop="true" Sort = "Ascending" PersistClientChanges = "true">
        </telerik:RadListBox>
        <telerik:RadListBox runat="server" ID="RadListBox2" Width="300px" Height="350px" AllowTransferOnDoubleClick = "true"
            SelectionMode = "Multiple" EnableDragAndDrop = "true" Sort = "Ascending" PersistClientChanges = "true">
        </telerik:RadListBox>

And in the code behind i have :

For i As Integer = 0 To RadListBox2.Items.Count - 1
-----------------
Next

But the problem is after the postback, the items of radlistbox2 is same as before. All the changes(adding/removing items) are lost. Please help me. Thanks.
Nencho
Telerik team
 answered on 01 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?