Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
55 views

Hi,

 I'm using mossradeditor control in sharepoint list.Text in that column in edit mode is looking fine. But in  item display mode,space between paragraphs are differ with actual space.

Help me..
Stanimir
Telerik team
 answered on 20 Aug 2009
3 answers
575 views
Hello!

I am unsure of when to use each of these (and what their individual benefits are).

I have tried reading through documentation, but I still don't get it.

Any help?

Thanks in advance.
Mira
Telerik team
 answered on 20 Aug 2009
2 answers
113 views
Hello,
Is there a way to update an SqlDataSource automatically when editing another row?
I am looking in a very specific way of handling a grid update and giving users the opportunity to double-click on a row to edit a cell and when double-clicking on another row, updating the SqlDataSource with the actual value of the cell (without having to click on the "update" button anymore)...
Is there a setting on the grid control to enable this behavior?
regards,
David
David
Top achievements
Rank 1
 answered on 20 Aug 2009
1 answer
88 views
hello,

we use the RadGrid from RadControls for ASP.NET AJAX Q2 2009.
In our Application we have the following Scenario:

Several UserControls (ASCX) encapsulate one or more RadGrids, partially with hierachy and/or NestedViewTemplate.
We have several ASP.NET-Pages, which are dynamically generated:
the UserControls are added to the Page and the RadGrids are filled with Data.

The requirement is to export the "content" of the UserControls (the RadGrid(s)) to one PDF-File from a button (or something like that)
inside the ASP.NET-Page.
Our first idea:
Is it possible to add the UserControls with the RadGrids to an additional RadGrid (maybe in a NestedViewTemplate?), and then
exporting that RadGrid?

We have tried out the following solution:
http://www.telerik.com/community/forums/aspnet-ajax/grid/export-multiple-grids-to-same-excel-file.aspx
But that does not work for us, because we need to add UserControls with encapsulated RadGrids and there is no way for us to do that in a declarative way.

Kind regards
Iana Tsolova
Telerik team
 answered on 20 Aug 2009
2 answers
193 views
Hi All,

I am facing some issues:

1) I have a databound combobox which gets data from sql source from codebehind file. The combobox fills fine, but when Im trying to select an item, the items gets marked, but the box doesnt close. I have a masterpage with RadScriptManager and RadAjaxManager.

Thats how the combobox part of the aspx file looks like

<telerik:RadComboBox ID="rcbPLZ" Runat="server"
                AppendDataBoundItems="True" EnableLoadOnDemand="True"
                onclientselectedindexchanged="OnClientSelectedIndexChanged"
                onclientselectedindexchanging="LoadOrt"
                onitemsrequested="rcbPLZ_ItemsRequested" AllowCustomText="True"
                ShowDropDownOnTextboxClick="False">
  </telerik:RadComboBox>

the javascript function is

function  OnClientSelectedIndexChanged(combo, eventArgs)
{  
     // alert("OnClientSelectedIndexChanged");
      OrtCombo.set_text("");
      var PLZstring = combo.get_text();
      combo.set_text(PLZstring.substring(0,5));
      OrtCombo.set_text(PLZstring.substring(6,PLZstring.length-1)); //
      LoadStrasse(combo, eventArgs);
}


Also, and that the second issue, at onload I want to set certain strings for two comboboxes and it has worked, but it is not and Im not sure what I did wrong:

<script language="javascript" type="text/javascript" >
    
var PLZCombo;
var OrtCombo;
var StrassenCombo;

function onload()
{  
   PLZCombo =$find("<%= rcbPLZ.ClientID %>");
   OrtCombo =$find("<%= rcbOrt.ClientID %>");
   StrassenCombo =$find("<%= rcbStrasse.ClientID %>");
   StrassenCombo.set_text("a");
   PLZCombo.set_text("b");
}

Maybe Im putting the javascript into the wrong place, I just put it below a table...

Any hints are very much appreciated..

Best wishes

iandi
Andreas
Top achievements
Rank 1
 answered on 20 Aug 2009
1 answer
74 views
Hi all:

I am working with the grid drag-and-drop example:

http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx

and am wondering if anyone has an example of also enabling column sorting with the drag-and-drop? The sorting example loads the data via a datatable, but the drag-and-drop example uses ILists and sessions....not sure how to combine the 2...

Thanks.

John.
Iana Tsolova
Telerik team
 answered on 20 Aug 2009
5 answers
167 views
Hi,

I have RadPanelBar with multi check box's in it, i need to read the checkbox status when user click a button.,

Please help.

Omar
Paul
Telerik team
 answered on 20 Aug 2009
3 answers
254 views
Hi,

Is it possible to apply security trimming to the RadMenu in ASP.NET MVC?

Thanks,
Nick

Paul
Telerik team
 answered on 20 Aug 2009
3 answers
109 views
I am currently using serveral RadDock objects inside RadDockZones, and several RadDockZone objects inside a only one RadDockLayout.  I'm also using a gmail-like loading indicator that is positioned in the top right corner of the page.  The problem i am facing is that when the user scrolls down the page and causes some action that shows the loading indicator, the structure of the RadDock overlaps the indicator.  I have read several posts over the internet, but i have not found a solution.  I wish to know if there's some kind of property or trick on the Rad Controls that can help me on this.  Thanks in advance.
Wveimar
Top achievements
Rank 1
 answered on 20 Aug 2009
1 answer
102 views
Hi everybody

I'm trying export selected items from grid without group titles, but I have not success

This is my code:

if (this.rgFacturas.SelectedItems.Count > 0) 
            { 
                GridGroupByExpressionCollection Coll = this.rgFacturas.MasterTableView.GroupByExpressions; 
                this.rgFacturas.MasterTableView.GroupByExpressions.Clear(); 
                                
 
                foreach (GridDataItem item in this.rgFacturas.MasterTableView.Items) 
                { 
                    item.Visible = item.Selected; 
                } 
 
                 
                this.rgFacturas.Rebind(); 
                this.rgFacturas.ExportSettings.ExportOnlyData = true
                this.rgFacturas.ExportSettings.OpenInNewWindow = true
                this.rgFacturas.MasterTableView.ExportToExcel(); 
 
                this.rgFacturas.MasterTableView.GroupByExpressions.AddRange(Coll); 
                this.rgFacturas.Rebind(); 
 
            } 


The first Rebind() is "clearing"  the selected items and the selected items are unselected, when ExportToExcel() is calling, all items are exported.

I need help, please
Some idea?

Thanks.



Mira
Telerik team
 answered on 20 Aug 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?