Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
87 views
Hello,
           Telerik controls are very new for me and now in starting i have to add a scheduler and add following fields in that:

                a) Event title

                b) Start Time, End Time, All day (just as it appears in demo)

                d) Event Type (Birthday, Training, Meeting)

                e) Notes
           How can i achieve this while working in vb.net and i don't want to do any database connectivity on client side.

Thanks,
Suneta

Peter
Telerik team
 answered on 15 Aug 2011
6 answers
118 views
Hello!!

I need some help while creating 3 independents RadListBox side by side...After explore some of your documentation i can't customize them to be put a slide button like the demo : http://demos.telerik.com/aspnet-ajax/listbox/examples/default/defaultcs.aspx

Can you show how to include that slide control on the listbox??

If you please show me how to add title lable for each gridlistBox please
Peter Filipov
Telerik team
 answered on 15 Aug 2011
1 answer
97 views
I'm trying to create a wizard that will have 3..N steps (created dynamically based on selections on Step #1). It is important that I not use the TabStrip to navigate between steps. Is it possible to create a wizard that:

  • Uses a RadMultiPage to manage display of only one page view @ a time
  • Dynamically adds PageViews to the RadMultiPage control after the initial page load
  • Does not use a tab strip

If so, is there any sample code out there? I've only been able to locate Wizards that use the TabView.
Peter
Telerik team
 answered on 15 Aug 2011
5 answers
123 views
I have issues setting a custom ITemplate implementation on RadMenuItems.

I populate the RadMenu using the DataSource property.

In which event during the databinding am I supposed to set the ItemTemplate property on the RadMenuItem (which gets created during the databinding process ... I populate the DataSource using custom data objects) so that it gets applied?

The second issue ... I only want to apply the custom ITemplate implementation for one level in the MenuItem hierarchy. The first level should use the default rendering, the second level should use a custom template.
Peter
Telerik team
 answered on 15 Aug 2011
3 answers
190 views
I am using RadCombobox in a grid. I have assigned attribute to the rad combobox from Javascript method. The code is below

 var masterTable = $find("<%=radgrdChargeType.ClientID%>").get_masterTableView();
         
         var dataRow = masterTable.get_dataItems()[popupTextControlId];
          var radCmbBxChargeType = dataRow.findControl("radCmbBxChargeType");
 radCmbBxChargeType.trackChanges();
          radCmbBxChargeType.get_attributes().setAttribute("Ani", "Vai");
          radCmbBxChargeType.get_attributes().setAttribute("1", "2");
          radCmbBxChargeType.commitChanges();



Now I am trying to get the attribute value from Code behind page.

 RadComboBox radCmbBxChargeType = gridItem.FindControl("radCmbBxChargeType") as RadComboBox;
            if (radCmbBxChargeType.Attributes["Ani"] != null)
            {
                string att = radCmbBxChargeType.Attributes["Ani"];
            }


But here the data is not persisting, i.e. 
radCmbBxChargeType.Attributes["Ani"]  is showing null.


How I can get the value !!
Note. - getting the exact combobox is not a problem.

It's urgent 
Peter
Telerik team
 answered on 15 Aug 2011
3 answers
599 views
Hi,
I want to have a combo box for country flags, and have the ~240 countries listed with the ~240 flags.

When I use the ImageURL attribute, the loading of 240 flags takes forever as only a couple of requests are sent concurrently.

I have a sprite for flags, but cannot seem to separate the image from the text, i.e. if I use CSS and Background property, the text is placed on top of the flag.

Is there a way for me to show the flags in a combo box from a sprite, and have the text to the right of the flag?

Chen
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 14 Aug 2011
6 answers
170 views
Hi,

While deleting, I used the 'adding a delete prompt' example.

 

 

protected void OnItemDataBoundHandler(object sender, GridItemEventArgs e)

 

{

 

 

if (e.Item is GridDataItem)

 

{

 

 

GridDataItem dataItem = e.Item as GridDataItem;

 

 

 

string CreateDate = dataItem["CreationDate"].Text;

 

 

 

LinkButton button = dataItem["DeleteColumn"].Controls[0] as LinkButton;

 

button.Attributes[

 

"onclick"] = "return confirm('Are you sure you want to delete Item created on " +

 

CreateDate +

 

"?')";

 

 

}


...this works well...although I'm unsure of the way to receive the response from the "onclick" event..

thanks,
minh Bui
Minh
Top achievements
Rank 1
 answered on 14 Aug 2011
2 answers
138 views
Hello all :)
I am new to the telerik controls and I wanted to ask if I could dynamically add a RadComboBox dynamically using javascript.
thank you so much
Nada
Top achievements
Rank 1
 answered on 13 Aug 2011
0 answers
81 views
Hi All,

I have a scheduler which i fill with an telerik orm datasource and this works perfectly.

This is where i goes wrong, i filter the data for scheduler on customer_id so it gives back all appointments on this customer all good here now i want to add a new appointment for this customer so with this customer_id, the appointment gets created but customer_id = 0.

I think i have to set a custom field or something but i dont know how.

Please help,

Thanks
Sander
Top achievements
Rank 1
 asked on 13 Aug 2011
8 answers
217 views
We upgraded to the newest release version of the RadControls today.  When we did that, we noticed that our pages started to hit the Page_Load function multiple times for each request.  We created a small Telerik Web Application and found that the RibbonBarGroup in the RibbonBar control is causing the issue.

We used Visual Studio 2010 and created a Telerik Web Application project in VB.  We have a master page, an aspx page and a vb code behind for each.

RibbonBar.Master
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<telerik:RadRibbonBar ID="RadRibbonBar1" runat="server">
    <telerik:RibbonBarTab Text="Tab 1">
        <telerik:RibbonBarGroup Text="Group 1">
            <Items>
                <telerik:RibbonBarButton ID="rbb1" runat="server" Text="Button 1" />
            </Items>
        </telerik:RibbonBarGroup>
    </telerik:RibbonBarTab>
</telerik:RadRibbonBar>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
  
</asp:ContentPlaceHolder>

RibbonBar.Master.vb
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Me.Page.IsPostBack Then
        Response.Write(DateTime.Now & "-RibbonBar.Master Not IsPostBack<br />")
    Else
        Response.Write(DateTime.Now & "-RibbonBar.Master IsPostBack<br />")
    End If
End Sub

RibbonBar.aspx (Using the RibbonBar.Master)
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
  
    <telerik:RadButton ID="btnRibbonBar" runat="server" Text="RadButton">
    </telerik:RadButton>
      
</asp:Content>

RibbonBar.aspx.vb
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Me.Page.IsPostBack Then
        Response.Write(DateTime.Now & "-RibbonBar.aspx Not IsPostBack<br />")
    Else
        Response.Write(DateTime.Now & "-RibbonBar.aspx IsPostBack<br />")
    End If
End Sub
Private Sub btnRibbonBar_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnRibbonBar.Click
    Response.Write(DateTime.Now & "-btnRibbonBar_Click<br />")
End Sub

If you put a break point on each of the subs, you will see that when you click the button, the Page_Load events in the aspx and master page are hit, then the click event for the button, then the Page_Load events in the aspx and master page are hit again.

Thanks for your time,
Gordon


Ian
Top achievements
Rank 1
 answered on 13 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?