Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
212 views
I want bind record in radmenuitem through server side take from data base ,
And also i want find in page load ,

  
<MasterTableView  AllowFilteringByColumn="true" IsFilterItemExpanded="false" HeaderStyle-Width="200px" ItemStyle-Width="200px" CommandItemDisplay="Top" DataKeyNames="lid"  ClientDataKeyNames="lid" Width="100%">
           <CommandItemTemplate>           
               <div style="padding: 5px 0px 5px 7px; text-align: left; font-weight:bold;">
               <span class="gridHeaderTitle">
                   <i><telerik:RadCodeBlock ID="RadCodeBlock2" runat="server"><%= Resources.People.People_List %></telerik:RadCodeBlock></i>
                   </span>
               <table>
               <tr>
               <td align="left">
               <!--#include file = ../Shared/gridHeaderTemplates_Layout.htm-->
               </td>
               <td>
               <telerik:radbutton enablesplitbutton="true" id="SplitButton" autopostback="false"
                   runat="server" text="Transfer Item" onclientclicked="OnClientClicked">
               </telerik:radbutton>           
               <telerik:radcontextmenu id="RadContextMenu1" runat="server" OnClientItemClicked="OnClientItemClicked">
               <Items>
                   <telerik:RadMenuItem id="Temp" >
                   </telerik:RadMenuItem>
               </Items>
           </telerik:radcontextmenu>
               </td>
               </tr>
               </table>                 
               </div>
                
           </CommandItemTemplate>
           <Columns>                                                         
               <telerik:GridClientSelectColumn HeaderStyle-Width="6%" HeaderStyle-HorizontalAlign="Center">
                   <ItemStyle HorizontalAlign="Center" BorderStyle ="None" />
               </telerik:GridClientSelectColumn>                          
           </Columns>               
       </MasterTableView>


Thanks Advance,
Mohamed.
mohamed
Top achievements
Rank 1
 answered on 05 Sep 2012
1 answer
97 views
hello ...
i am here to know is this possible to work with Rad controls( chart controls) in .net because earlier i used this controls in Windows phone.Is it possible to do same thing in .net.

Thank you
Princy
Top achievements
Rank 2
 answered on 05 Sep 2012
1 answer
118 views
I have a situation where I need to allow things to be dragged from one TreeList to another.  Additionally, in the 2nd TreeList I need to be able to reorder the items by dragging and dropping.  I haven't been able to find anything yet on drag and drop capability for the Treelist so I was wondering if anyone has done drag and drop of this sort or whether it's supported, etc.

Thanks in advance for any info.

Steve
Princy
Top achievements
Rank 2
 answered on 05 Sep 2012
10 answers
189 views
Hi All!

Instead of using the session to save/load the DockState for a page, I would like to use the Profiles.  I've not been able to figure out how though.  Has anyone got a working example - including the web.config profile definitions?

I'm more than a little desparate.  hehe

Cheers
Mark.
Joff
Top achievements
Rank 1
 answered on 05 Sep 2012
1 answer
972 views
Hi,
In our application we are trying to assign shortcut keys for options on the screen,
which requires us to trap keys on client side and accordingly call .click() event of targetted control.
We have some validations set for all these controls in OnClientClicking event.
According to validation conditions we have to stop postback by setting arguments.setCancel(true). Also, on some places we 
need to open rad window pop up after setting postback false.

Issue that we are facing is when we fire click event of these controls using mouse OnClientClicking is being called, but
when we are trying to achieve same by firing .click() from javascript for short cut keys functionality, OnClientClicking is not getting
called.

Please let me know if you have any solution for this. Or some other way to achieve our functionality.
Slav
Telerik team
 answered on 04 Sep 2012
4 answers
248 views
Win 7 64 bit, VS 2010 Pro.

I have installed the Q2 release.  I still see the Q1 items on the VS toolbox (Q1 2011 NET 40).  When I open the Toolbox Configurator, it allows me to choose the new release in the drop down v.2011.2..712.40.  It restarts VS, but nothing has changed, the Q1 items are there, the Q2 items are not.
Govinda
Top achievements
Rank 1
 answered on 04 Sep 2012
3 answers
82 views
We are facing some issues with validators when using the RadGrid (2011.3.1115.40) as follows:

1) The grid has two detail (child) tables
2) Since all rows in the grid are editable, each column uses ItemTemplates with input controls and various validators (server side validation only)
3) All tables are set with HierarchyLoadMode="Client"

When we press the Save button, we call Page.IsValid on the server. This works for the most part, however, we noticed that sometimes validators in detail tables are not firing. We can consistently reproduce the following behavior:

1) Load the page and grid normally
2) Expand any row. Don't enter any data
3) Press save
4) We see the validators have fired
5) Collapse that same row
6) Press save again
7) Now when we expand that same row again, we see that the validators have NOT fired

Please advise.
Ultravelocity
Top achievements
Rank 1
 answered on 04 Sep 2012
0 answers
67 views
Please delete I was having a bootstrap issue.
maurice
Top achievements
Rank 1
 asked on 04 Sep 2012
4 answers
98 views

I have reviewed several resources while trying to programmatically control whether a user should be allowed to rename an item in RadFileExplorer. Here are a couple of the resources that I have reviewed:

 

 

The FileExplorer on my web page has a root folder. Under the root folder, I populate the explorer with “home folders”; this is done during the Page_Load event. You can think of the home folders like Windows Profiles. When a user logs into Windows, they have access to the folders that are associated with their profile. I am doing a similar thing with file explorer. When a user logs into my website, they have access to their home folder, its files, and its subdirectories. They do not have access to home folders that belong to other users and file explorer is configured so that it will not let a user see the home folders of other users.

 

As you know, FileExplorer allows you to right-click on a file or folder, and click Rename. That is cool and it saves a lot of development time. In my web page, I allow users to rename anything they want. But I do not want them to be able to rename their home folder.

 

My RadFileExplorer contains the following setting (among others): OnClientMove="fncMoveOrRename". My intent is to use this function that you see referenced here as a way to check whether the currently selected item in FileExplorer is a home folder vs. any other file or folder. If it’s a home folder, then cancel is set to true. But even when cancel is set to true, the rename still occurs. Is the documentation that I referenced above correct? I should be able to prevent a rename by canceling the OnClientMove, right?

 

To determine if the problem had anything to do with my logic, I stripped everything out of fncMoveOrRename, and I am left with the following:

 

function fncMoveOrRename(objExplorer, eventArgs) {

    alert("Click OK to cancel.");

    eventArgs.set_cancel(true);

}

When I rename a folder, the alert message appears, and I click OK. But cancel is never triggered. I still have the undesirable effect of having the folder renamed even though cancel is set to true. What am I missing here?

 

Thank you,

Steven

Brian
Top achievements
Rank 1
 answered on 04 Sep 2012
2 answers
62 views
Hi All - I have an <asp:Menu> with 6 or so items.  below the <asp:Menu> there is a <telerik:RadTabStrip>.  when I drop the menu down, a part of it is occluded by the tabstrip.  I tried this with a RadMenu and there does not seem to be an issue however I cant seem to style radmenu the way i want.  any way to tell TabStrip not to be such a be-firster? pic attached. 

Thanks.
Helen
Telerik team
 answered on 04 Sep 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?