Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
121 views
Hi Team,
I am using both radwindow version's "1.9.0.0" and "2009.1.527.20". The problem is the radwindow is not opening in iPhone (tested with iOS 4.2) and iPad's.

Below is the code I am using in my page..
in Javascript
            var oManager = GetRadWindowManager();
            var oWnd = oManager.GetWindowByName("RadWindow1");
            oWnd.Show();
            oWnd.SetSize();
            oWnd.SetUrl("pagename.aspx?Total=" + totalBalance + "&Amount=" + amount);
            return false;

and the design is below
    <radW:RadWindowManager Skin="Office2007" ID="RadWindowManager1" runat="server">
        <Windows>
            <radW:RadWindow ID="RadWindow11" NavigateUrl="pagename.aspx" SkinsPath="~/RadControls/Window/Skins"
                Width="320px" Height="300px" Left="700px" Top="200px" Modal="false" Behavior="move,Resize" />
        </Windows>
    </radW:RadWindowManager>

Please let me know how can I fix this...
Thanks in advance.

Regards,
Babu R
Marin Bratanov
Telerik team
 answered on 13 Jun 2012
5 answers
417 views
Hi guys,
I am new to programming and maybe my enquiries seem funny.
Currently I am using the RadTagCloud Control based on data binding in my prototype system.
Everything works great. I just want to open the resource related to each tag (which is stored in NavigareURL field) in a new window when I click each item in the TagCloud.
Any ideas?

Also, I have a textbox in my web page which I want to clear its content when I click on any tag in the tag cloud, but the RadTagCloud1_ItemClick is not fired to do this.
Any help here?

Cheers,
Hamed
Slav
Telerik team
 answered on 13 Jun 2012
1 answer
119 views
Hi u have 2010 q3 asp.net Ajax rad menu that I data bind to a SQL data source. Which part of the CSS should I change to add more space to the left and right of the separators to try an space the menu options evenly to fill the entire width of the menu?
Princy
Top achievements
Rank 2
 answered on 13 Jun 2012
1 answer
156 views

Hi,

I am using the HeaderContextMenu in my radgrid to show and hide the columns.  I want to save the users preference as to what columns they have visible.  I thought that this would be easy and I could just save the GridColumn.Display value.   But when I hide a column using the HeaderContextMenu the display value for that column is still true.

Where is the information regarding what columns have been hidden by the user using the HeaderContextMenu?

Eyup
Telerik team
 answered on 13 Jun 2012
1 answer
140 views
Hi All,

 I  have RadListView  having some data .I want to do some operation in the code behind when the checkbox in the listview is checked
 I have the code as below

<telerik:RadListView ID="lstViewSelectedContact" runat="server" ItemPlaceholderID="pnlItemholder"
                                    OnSelectedIndexChanged="listView_SelectedIndexChanged"  Width="600px"  OnPreRender = "lstViewSelectedContact_OnPreRender"
                                    AllowMultiItemSelection="true" DataKeyNames="id"  Visible="true"   
                                    OnNeedDataSource="lstViewSelectedContact_NeedDataSource"
                                    onitemcommand="lstViewSelectedContact_ItemCommand"  >
                                    <LayoutTemplate>
                                        <asp:Panel ID="pnlItemholder" runat="server" Height="100px"></asp:Panel>
                                    </LayoutTemplate>
                                    <ItemTemplate>
                                        <span>
                                            <asp:CheckBox ID="chkSelect" runat="server" AutoPostBack="true"   OnCheckedChanged="chkSelect_OnCheckedChanged" BackColor="Transparent" BorderStyle="None" Text='<%#Eval("text") %>'>                                                   
                                            </asp:CheckBox>                                       
                                        </span>                                     
                                    </ItemTemplate>
                                    <SelectedItemTemplate>
                                        <asp:CheckBox ID="chkSelectedItem" runat="server" AutoPostBack="true" BackColor="LightSkyBlue" BorderStyle="None" CommandName="Deselect" Text='<%#Eval("text") %>'>
                                                   
                                        </asp:CheckBox>                                     
                                      
                                    </SelectedItemTemplate>                                   
                                    <ItemSeparatorTemplate>
                                        <span style="color: Black; font-weight: normal;"></span>
                                    </ItemSeparatorTemplate>
                                </telerik:RadListView>


The Problem is that I cant get the checked items(ID and value) in the code behind ie in chkSelect_OnCheckedChanged event.
Thanks
 Kumar
Shinu
Top achievements
Rank 2
 answered on 13 Jun 2012
1 answer
84 views
I have a RadChart and RadGrid populated with items. (The Datasources are different due to the returned data but they have the same DataKey values)

How can I quickly allow the user to select any of the items on the Radchart and make that the SelectedRow for the RadGrid? (the items will share the same DataKey value) 

I want them to be able to click the bar chart item and then have the corresponding record highlighted on the Radgrid below the chart.

I tried attaching an event handler for the Click events which seems to create event behavior I would expect, but I am having trouble linking these two controls together in the manner I would like.  I believe there would be a quick clientside solution for this so I can simply get a reference to the RadGrid, find the row with a DataKey value that matches the one that it was called from, and make that the SelectedRow so it will be highlighted to the user.  Sounds good in theory but I am having trouble with implementation of such a scenario.

Any help is appreciated
Petar Marchev
Telerik team
 answered on 13 Jun 2012
10 answers
804 views
I am working on an  page that dymically creates controls at runtime as determined by a database definition.  This is an indexing application and the number and types of controls varies by document type.  Everything is working fine except the RadCombo box.  Because some of the value lists will be very long I am using the load on demand feature.  When I was testing this functionality I used the load on demand example with a design-time placed combox box and it worked great.  Now I am trying to duplicate this configuratiion with run time code and I'm getting the following error when I attempt to load the items on demand: 

"The target '<my dynamic control id>' for the callback could not be found or did not implement ICallBackEventHandler."

Here is my server side code used to create the combo box:

object iControl =

new RadComboBox();
((
RadComboBox)iControl).Width = Unit.Pixel(200);
((
RadComboBox)iControl).AllowCustomText = true;
((
RadComboBox)iControl).ShowToggleImage = true;
((
RadComboBox)iControl).ShowMoreResultsBox = true;
((
RadComboBox)iControl).EnableLoadOnDemand = true;
((
RadComboBox)iControl).EnableVirtualScrolling = true;
((
RadComboBox)iControl).MarkFirstMatch = true;
((
RadComboBox)iControl).ItemsRequested += new RadComboBoxItemsRequestedEventHandler(index_create_ItemsRequested);
((RadComboBox)iControl).ID = "~~~" + docFieldDef.FieldTypeName + "~~~fld~" + docFieldDef.FieldDefID.ToString();
tbCell3.Controls.Add((RadComboBox)iControl);

And here is the shell for he event handler, although this code does not get executed at present.

protected void index_create_ItemsRequested(object o, RadComboBoxItemsRequestedEventArgs e)
{
<snip>
}

Please let me know if I have missed something.
Thanks,
Andy

Helen
Telerik team
 answered on 13 Jun 2012
1 answer
217 views
Hi ,
 How to display check boxes in RadListView with check/uncheck functionality.

Thanks
Princy
Top achievements
Rank 2
 answered on 13 Jun 2012
1 answer
205 views
Hello Telerik Team,

Not sure if my title explains the situation properly, but here goes.  I'm basically making a grid email summary report using RadGrid. Basically my data comes back with columns such as: DateEnding, Area, Sent, Bounced, Clicks, etc, which I have successfully pivoted using the example provided.  My question is, is there a way to customize(or group maybe a better word) the headers of the columns.  I want the grid to display with DateEnding has the main header, and our 3 different area's under DateEnding as the subheaders.  The client wants to be able to easily compare mentioned metrics for a 4week period, across all areas.

Ideally the grid would look like : | 5/25/12 | 6/2/12 | 
|  North   |  South  |  West |  North   |  South  |  West | 

Please let me know if my explanation is not sufficient.  Maybe there is a better way to pull the data on my end to avoid this?  Any help is appreciated!

Thanks


Shinu
Top achievements
Rank 2
 answered on 13 Jun 2012
2 answers
120 views
I've got a radtooltip that when the user "single-clicks" an appointment on the scheudler.  However, when I click the little red X to delete an appointment off the scheduler, the tooltip still popups.

How do I get the X to close fire the delete?

Thanks.

Vince.
Minculescu
Top achievements
Rank 1
 answered on 13 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?