Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
101 views
Hi, I'm using library 2011.1.315 and I'm having two issues related to the drag and drop feature.

1) Everything works fine when an item 'A' from the Grid is droped in folder 'B' in the Tree. But when I drop the same item 'A' in the same folder 'B' in the Grid, nothing happens. Everything seems to work but no action is taken. Why I can't move an item to another item inside the Grid?

2) The second issue is permission related. If I set folder 'B' permissions to: Permissions = PathPermissions.Read, and try to drag-and-drop anything to folder 'B', then the move action is correctly denied. But no message is shown to the user, the action is just cancelled and nothing happens. How can I show an error message to the user?

Any help would be much appreciated.

Regards,
Santiago.
Pero
Telerik team
 answered on 15 Mar 2012
6 answers
243 views
Hi all!

I'm adding the filter for my RadGrid by set AllowFilteringByColumn="True"
However, it uses the textbox which is not good so much in some cases.
I see the RadComboBox allows user to search data by using its own Filter. So I would like to apply RadComboBox into the FIlter
Is there any ways to replace the textbox by RadComboBox ?

Thanks!

Andy.
asilioni
Top achievements
Rank 1
 answered on 15 Mar 2012
1 answer
43 views
I have a rad chart here http://cnppid.intellicomweb.com/Graphs/Johnson_One-Month_Elevation.aspx . I'm outputting what my data points are that I'm adding to it above the chart itself. I'm adding the points in my code behind. What I can't figure out is why my lines aren't going all the way to the edge. You can see what my x range in the first line, and you can see from that data that I'm outputting points all the way from 0 to 29. Do you have any ideas why this isn't going all the way to the edge?
Evgenia
Telerik team
 answered on 15 Mar 2012
1 answer
68 views
Hello,
i have a RadGrid :(Html as below)
<setsRC:SRadGrid ID="gdvOrgUnitTypes" runat="server" AllowFilteringByColumn="false"
GridLines="None" AutoGenerateColumns="False" AllowSorting="True" OnNeedDataSource="gdvOrgUnitTypes_NeedDataSource"
OnItemDataBound="gdvOrgUnitTypes_ItemDataBound" Width="450">
<MasterTableView AllowMultiColumnSorting="True" DataKeyNames="OrganizationUnitTypeID" CommandItemDisplay="Bottom" Name="gdvOrgUnitTypes">
<CommandItemSettings ShowAddNewRecordButton="false" />
<Columns>
<setsRC:SGridBoundColumn DataField="OrganizationUnitTypeName" HeaderText="Org. Unit Types" meta:resourcekey="OuTypeName" HeaderStyle-HorizontalAlign="Left"/>
<setsRC:SGridTemplateColumn ItemStyle-Width="280" HeaderText="Organization Units" meta:resourcekey="AvailableOUs" HeaderStyle-HorizontalAlign="Left">
<ItemTemplate>
<setsRC:SRadComboBox runat="server" ID="rcbOUsByType" />
</ItemTemplate>
</setsRC:SGridTemplateColumn>
</MasterTableView>
</setsRC:SRadGrid>

There are no Insert, Update or delete operations on the grid.
In each row there is a text value in the GridBoundColumn and a combobox inthe template column
The user only action is to select from the comboboxes
The comboboxes are following a certain hierarchy that is done by code. ( Company-->Entity-->Branch-->Department--> .....)
First row in grid is for company and second for entity and third for branch (each row Text + combobox) ......................
Currently everything is displayed in the comboboxes, i want to have the option when choosing a value from entity combobox to filter the branch combobox and department combobox.
also note that the data is not fixed eg: Companies have different hierarchies for example company B has Company-->entity-->Branch-->Department-->Sub department ...

Any help ?

          
Antonio Stoilkov
Telerik team
 answered on 15 Mar 2012
0 answers
68 views
Hi,

           I have a RadPanelBar in my UserControl(Ascx) with four panel items. I have added  another usercontrols(ascx)  in the panel item. Each item has different  usercontrols. I have added usercontrols in the panel item dynamically that is when the user clicked in the panel item the UserControl for this panel will be loaded and the panel item will be expanded. I have placed the radpanelbar  in an asp Updatepanel. In the usercontrol, which is placed inside the panelitem has asp updatepanel with some controls such as button,combobox etc.

            My problem is that  if i do some action in the controls, which is present in the updatepanel of UserControl in the panelitem the  panelbar minimized the panelitem. I want to the panelitem  remain expanded. How can i do this?

Thanks,
Velkumar.
Velkumar
Top achievements
Rank 2
 asked on 15 Mar 2012
1 answer
74 views

 i am trying to set the radmaskedtextbox FocusedStyle-CssClass and DisabledStyle-CssClass by gisving Cssclass name but they are not  reflecting into UI means not setting.Example like

.change

 {

background-color:Green;

  }

.setback

{

background-color:Orange;

 }

for Focus style:

<telerik:radmaskedtextbox ID="radmaskedtextbox1" Text="123" FocusedStyle-CssClass="change"  Mask="Test" EnableEmbeddedSkins="false" runat="server">

</telerik:radmaskedtextbox>

For disable style:

<telerik:radmaskedtextbox ID="radmaskedtextbox1" Text="123" Enabled="false" FocusedStyle-CssClass="change" DisabledStyle-CssClass="disable" Mask="Test" EnableEmbeddedSkins="false" runat="server">

</telerik:radmaskedtextbox>

But thsose styles are not applying
Please share your comments reagrding this and provide some sample code for better understanding.
Any help will be great appreciated.

Thanks,
Dipta





 

 

Princy
Top achievements
Rank 2
 answered on 15 Mar 2012
3 answers
100 views
I am experiencing an issue with the RadGrid in compatibility mode set to IE 7 withing IE 9 after upgrading my project to version 2012.1.215.40. In a grid with NumericTextBoxes the textboxes seem to float outside the grid. In non-compatibility mode this does not occur. Taking one of the online demos I am able to reproduce when I set the client AllowScroll to true in the grid.

<ClientSettings Resizing-AllowColumnResize="false" EnableRowHoverStyle="false">
    <Scrolling AllowScroll="True" ScrollHeight="200px"
    UseStaticHeaders="True" />
</ClientSettings>

Again it happens in compatibility mode. I would move away from compatibility, but I have users that still have not upgraded yet. The demo code I used can be found at http://www.telerik.com/community/code-library/aspnet-ajax/general/refresh-footer-values-in-radgrid-client-side-using-radnumerictextbox.aspx. I had to upgrade it to the newest version. Thanks.
Shinu
Top achievements
Rank 2
 answered on 15 Mar 2012
1 answer
134 views
Hi,

i have a client select column and grid paging is on.when i click checkbox in the header it selects all the rows but when i move in the second page result couldnt be selected.and when i return page 1 all my selected row was removed.how can i fix this?

thanks. 
Shinu
Top achievements
Rank 2
 answered on 15 Mar 2012
2 answers
85 views
Hi guys

I saw the below two samples

http://demos.telerik.com/aspnet-ajax/grid/examples/programming/detailtabledatabind/defaultcs.aspx
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/declarativerelations/defaultcs.aspx

In the detailed table can i have alternating color for each row

Can you guys help me

karthik.K
Karthik Kantharaj
Top achievements
Rank 1
 answered on 15 Mar 2012
1 answer
110 views

Suppose you have a treeview with CheckBoxes and CheckChildNodes set, and you are using LoadOnDemand.

The user clicks on a checkbox for a parent node whose children have not yet been loaded.

What happens?  Are the child nodes loaded?  If not loaded, is the altered checked state of the child nodes nevertheless transmitted to the server upon postback?

msigman
Top achievements
Rank 2
 answered on 14 Mar 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?