Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
854 views
Hello,

I have one small issue with ExportToExcelButton position. By default it's positioned at the right end of CommandItem panel.

What I've tried to achieve is to change export button position to the left border of CommandItem panel.
I tried to do steps described here http://www.telerik.com/community/forums/aspnet-ajax/grid/set-right-allignment-to-export-to-excelbutton-in-radgrid.aspx , but the result effect wasn't good.

For further info please check image in the attachment.

Please help me to solve this issue.

Best regards

Vasssek
Vasssek
Top achievements
Rank 1
 answered on 05 Dec 2011
3 answers
42 views
Is there a 'before navigate' type event for the RadPane control?

I am using a RadPane control, and initially setting the ContentURL.

When a user clicks a link in the content of the RadPane I would like to capture the 'navigating to URL' of the link in the code behind.

Please can you suggest how this could be done.


 
Dobromir
Telerik team
 answered on 05 Dec 2011
6 answers
78 views
Hello
I am using two Resource Types in RadScheduler's (Collection).
Patient  (ResourceType 1)
Doctor  (ResourceType 2)

and all these Names lists are populationg from my database.
Now I want to view Second Recource type where Doctor Name's List is populating...Should be changed as I select any Patient from Patient Drop Down List
as:
Patient: ABC
             DEF
             GHI
And i Select ABC
then automatically Doctor should be Selected in List.
 is this Possible???

Thanks
Shirani
Top achievements
Rank 1
 answered on 05 Dec 2011
3 answers
62 views
Hello ALL,

I have applied following properties to radgrid.

<telerik:RadGrid ID="radgrdSearch" runat="server" Width="100%"
ClientSettings-Scrolling-AllowScroll="true"
ClientSettings-Scrolling-UseStaticHeaders="true" ClientSettings-Scrolling-FrozenColumnsCount="1"
ClientSettings-Selecting-AllowRowSelect="true" OnNeedDataSource="radgrdSearch_NeedDataSource"
OnItemDataBound="radgrdSearch_ItemDataBound"
OnItemCreated="radgrdSearch_ItemCreated"
AutoNavigateToSingleRecord="true"
ClientSettings-AllowKeyboardNavigation="true"
AutoGenerateColumns="false"
HeaderStyle-Wrap="true"
ItemStyle-Wrap="true"
AlternatingItemStyle-Wrap="true"                 OnExcelMLExportRowCreated="radgrdSearch_ExcelMLExportRowCreated" OnExcelMLExportStylesCreated="radgrdSearch_ExcelMLExportStylesCreated">
<MasterTableView Width="100%" NoMasterRecordsText="No records to display">
 
<telerik:GridHyperLinkColumn HeaderText="Action" UniqueName="ViewColumn" Visible="false" DataNavigateUrlFields="FIELD" ItemStyle-HorizontalAlign="Center" HeaderStyle-Wrap="true" HeaderStyle-Width="50px" ItemStyle-Width="50px" DataNavigateUrlFormatString="URL" Text="View"></telerik:GridHyperLinkColumn>
 
<telerik:GridHyperLinkColumn HeaderText="Action" UniqueName="ActionColumn" ItemStyle-HorizontalAlign="Center" HeaderStyle-Wrap="true" DataNavigateUrlFields="FIELD" HeaderStyle-Width="50px" ItemStyle-Width="50px" DataNavigateUrlFormatString="URL"
Text="Edit"></telerik:GridHyperLinkColumn>
 
<telerik:GridBoundColumn DataField="FIELD" HeaderText="HEADER"
HeaderStyle-Width="70px" ItemStyle-Width="70px" HeaderStyle-Wrap="true" />
 
<telerik:GridBoundColumn DataField="FIELD" HeaderText="HEADER"
HeaderStyle-Width="160px" ItemStyle-Width="160px" />
 
<telerik:GridBoundColumn DataField="FIELD" HeaderText="HEADER"
HeaderStyle-Width="150px" ItemStyle-Width="150px" />
 
<telerik:GridBoundColumn DataField="FIELD" HeaderText="HEADER"
HeaderStyle-Width="180px" ItemStyle-Width="180px" HeaderStyle-Wrap="true" />
 
<telerik:GridBoundColumn DataField="FIELD" UniqueName="UNIQUENAME" HeaderText="HEADER" DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy}"
HeaderStyle-Wrap="true" HeaderStyle-Width="80px" ItemStyle-Width="80px" />
 
<telerik:GridBoundColumn DataField="FIELD" UniqueName="UNIQUENAME" HeaderText="HEADER" DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy}"
HeaderStyle-Wrap="true" HeaderStyle-Width="70px" ItemStyle-Width="70px" />
 
<telerik:GridBoundColumn DataField="FIELD" HeaderText="HEADER"
HeaderStyle-Wrap="true" HeaderStyle-Width="60px" ItemStyle-Width="60px" />
 
<telerik:GridBoundColumn DataField="FIELD" HeaderText="HEADER"
HeaderStyle-Width="80px" ItemStyle-Width="80px" />
 
<telerik:GridBoundColumn DataField="FIELD" HeaderText="HEADER"
HeaderStyle-Width="80px" ItemStyle-Width="80px" />
 
</Columns>
</MasterTableView>
</telerik:RadGrid>

I had use paging control so i had used static header true.
Now when i am going to re size any of the column from grid the design get disturb, column get mapped on each of.
can you please give me your suggestion to resolve this.

Thanks
Kaushal Pathak.
Tsvetina
Telerik team
 answered on 05 Dec 2011
1 answer
97 views

I'm using nested RadSplitBar controls.  On the left I have a treview used for navigation and on the right is my content pane.  Whenever  a particular node on the navigation pane is click is loads a URL on my content pane via set_contentURL.  The content pane is loaded from my data source which set session vars tied to each entry object.  The problem I'm having is capturing the content from each object before the user clicks the navigation to change the url.  I would like to traverse the object from the content page and capture the entered data within and event that fired just before it sets or changes to the next content url.


Javascript that changes the content whenever the DB driven node is selected.

 

<

 

 

script type="text/javascript">

 

 

 

 

 

 

 

 

function onNodeClicked(sender, args) {

 

showDetails(args.get_node());

}

 

 

function showDetails(node) {

 

 

 

if (node.get_value()) {

 

 

 

var page = node.get_value();

 

LoadExternalContent(page,

 

'contentPane');

 

 

 

}

 

 

else {

 

$get(

 

"details").style.display = "none";

 

}

}

 

 

function LoadExternalContent(url, targetPaneID) {

 

 

 

var splitter = $find("topSplitter");

 

 

 

var pane = splitter.getPaneById(targetPaneID);

 

 

 

if (!pane) return;

 

 

 

if (url == "0") {

 

 

 

return;

 

}

 

 

else {

 

pane.set_contentUrl(url);

}

}

 

 

</script>

 

 

Here is the Content pane.

 

 

<telerik:RadPane ID="contentPane" Width="50%" Height="675" Scrolling="Y" EnableAjaxSkinRendering="true" runat="server">

 

 

 

 

 

 

</telerik:RadPane>

 

 

 

 

 

 

 

 

 Any help would be greatly appreciated.

Thank you.

Dobromir
Telerik team
 answered on 05 Dec 2011
1 answer
38 views
I just wanted to know if the slider control should work in the Safari browser on the iPad. 

Thanks
Slav
Telerik team
 answered on 05 Dec 2011
1 answer
102 views
Hi,
There are  two chart control on the page.
I want to make the two chart align.
But i didn't find the property to set the label width or others to make the two chart align.

Do you have any suggestions about this ?

Best regards.


Petar Marchev
Telerik team
 answered on 05 Dec 2011
5 answers
262 views

Requirements

RadControls version 2011
.NET version 4.0
Visual Studio version 2010
programming language C#
browser support

all browsers supported by RadControls


PROJECT DESCRIPTION
in this demo, You can able to set the attribute or properties of the other controls in Insert or Edit mode using Jquery.
in addition, I already implemented code for based one combobox's value, enable/Disable the other radcomboboxs in Insert/Edit Mode.
It was worked for Inline and editform mode.

Let me know if any concern.

Thanks,
Jayesh Goyani
Tsvetina
Telerik team
 answered on 05 Dec 2011
1 answer
132 views
I have the problem Filtering By ListTextField for GridDropDownColumn
(http://www.telerik.com/help/aspnet/grid/grdfilteringbylisttextfieldforgriddropdowncolumn.html)
but i use the HeaderContextMenu.


i tryed  without  success


Can you help me?


 
switch (e.CommandName.ToLower())
           {
               case  "headercontextmenufilter":
                   Triplet headercommand = (Triplet)e.CommandArgument;
                   Pair command = (Pair)headercommand.Second;
 
                   if (headercommand.First.ToString().ToLower() == "fg")
               {
                   e.Canceled = true;
                  /// GridFilteringItem filter = (GridFilteringItem)e.Item;
                   GridHeaderItem filter= (GridHeaderItem)e.Item;

Lasly
Top achievements
Rank 1
 answered on 05 Dec 2011
1 answer
38 views
I'm trying to find an simple way of having about 20 combobox filters for a grid that only displays about 5 columns.  Our original grid just had a seperate filter section outside of the grid, but that is difficult to manage.  Is there a way to do this within radgrid?
Andrey
Telerik team
 answered on 05 Dec 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?